aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/ABI
diff options
context:
space:
mode:
authorArend van Spriel <aspriel@gmail.com>2018-01-11 09:36:37 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-23 09:47:05 +0100
commit36d1d09af1b97113cd014fd50694000ac3ca2824 (patch)
treedb0e910b7deb7688bda0b00cd5fa5902f6bc537f /Documentation/ABI
parenttest_firmware: fix missing unlock on error in config_num_requests_store() (diff)
downloadlinux-dev-36d1d09af1b97113cd014fd50694000ac3ca2824.tar.xz
linux-dev-36d1d09af1b97113cd014fd50694000ac3ca2824.zip
sysfs: add attribute specification for /sysfs/devices/.../coredump
This patch adds the specification for /sysfs/devices/.../coredump which allows user-space to trigger a device coredump obtaining binary data from the device for (fault) analysis. It relies on CONFIG_DEV_COREDUMP being enabled. Signed-off-by: Arend van Spriel <aspriel@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/ABI')
-rw-r--r--Documentation/ABI/testing/sysfs-devices-coredump10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/ABI/testing/sysfs-devices-coredump b/Documentation/ABI/testing/sysfs-devices-coredump
new file mode 100644
index 000000000000..e459368533a4
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-devices-coredump
@@ -0,0 +1,10 @@
+What: /sys/devices/.../coredump
+Date: December 2017
+Contact: Arend van Spriel <aspriel@gmail.com>
+Description:
+ The /sys/devices/.../coredump attribute is only present when the
+ device is bound to a driver, which provides the .coredump()
+ callback. The attribute is write only. Anything written to this
+ file will trigger the .coredump() callback.
+
+ Available when CONFIG_DEV_COREDUMP is enabled.