From b8e95de2cf06f3aff67a46d4675d4b818ef8741c Mon Sep 17 00:00:00 2001 From: Don Slutz Date: Mon, 18 Nov 2013 17:31:20 -0500 Subject: [PATCH v3 0/2] Add xen-crashd. Changes from v2 to v3: Fixup NIL handling. FAILMSG has errno not just an error code. convert_to_phys should return 0 on error, not 0-4095 Add support for TYPE and /dev/xenmem. Add support "PAGESIZE NIL" (new crash feature, may change). Update doc. Subject was: Add xentrace/xen_crash Changes from v1 to v2: Rework to be closer to Xen "codeing standard". Add a change to MAINTAINERS to list me as maintainer of xen-crashd. Andrew Cooper: Move out of xentrace, rename to xen-crashd. Konrad Rzeszutek Wilk & David Vrabel: Rework Copyright Ian Campbell: Add 1st pass on some documention on crash's remote protocol. Don Slutz (2): xen-crashd: Connect crash with domain MAINTAINERS: Add xen-crashd maintainer .gitignore | 1 + MAINTAINERS | 5 + docs/misc/crash-remote.txt | 190 +++++++++ tools/Makefile | 1 + tools/xen-crashd/Makefile | 32 ++ tools/xen-crashd/xen-crashd.8 | 48 +++ tools/xen-crashd/xen-crashd.c | 891 ++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 1168 insertions(+) create mode 100644 docs/misc/crash-remote.txt create mode 100644 tools/xen-crashd/Makefile create mode 100644 tools/xen-crashd/xen-crashd.8 create mode 100644 tools/xen-crashd/xen-crashd.c -- 1.7.11.7