The patch titled memory: memory notifier error injection has been added to the -mm tree. Its filename is memory-memory-notifier-error-injection.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: memory: memory notifier error injection From: Akinobu Mita <akinobu.mita@xxxxxxxxx> This provides the ability to inject artifical errors to memory hotplug notifier chain callbacks. It is controlled through debugfs interface under /sys/kernel/debug/memory-notifier-error-inject/ Each of the files in the directory represents an event which can be failed and contains the error code. If the notifier call chain should be failed with some events notified, write the error code to the files. Example: Inject memory hotplug offline error (-12 == -ENOMEM) # cd /sys/kernel/debug/memory-notifier-error-inject # echo -12 > MEM_GOING_OFFLINE # echo offline > /sys/devices/system/memory/memoryXXX/state bash: echo: write error: Cannot allocate memory Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Cc: Pavel Machek <pavel@xxxxxx> Cc: "Rafael J. Wysocki" <rjw@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/memory.c | 29 +++++++++++++++++++++++++++++ lib/Kconfig.debug | 15 +++++++++++++++ 2 files changed, 44 insertions(+) diff -puN drivers/base/memory.c~memory-memory-notifier-error-injection drivers/base/memory.c --- a/drivers/base/memory.c~memory-memory-notifier-error-injection +++ a/drivers/base/memory.c @@ -88,6 +88,35 @@ void unregister_memory_isolate_notifier( } EXPORT_SYMBOL(unregister_memory_isolate_notifier); +#ifdef CONFIG_MEMORY_NOTIFIER_ERROR_INJECTION + +static struct err_inject_notifier_block err_inject_memory_notifier = { + .actions = { + { ERR_INJECT_NOTIFIER_ACTION(MEM_GOING_ONLINE) }, + { ERR_INJECT_NOTIFIER_ACTION(MEM_GOING_OFFLINE) }, + {} + } +}; + +static int __init err_inject_memory_notifier_init(void) +{ + int err; + + err = err_inject_notifier_block_init(&err_inject_memory_notifier, + "memory-notifier-error-inject", -1); + if (err) + return err; + + err = register_memory_notifier(&err_inject_memory_notifier.nb); + if (err) + err_inject_notifier_block_cleanup(&err_inject_memory_notifier); + + return err; +} +late_initcall(err_inject_memory_notifier_init); + +#endif /* CONFIG_MEMORY_NOTIFIER_ERROR_INJECTION */ + /* * register_memory - Setup a sysfs device for a memory block */ diff -puN lib/Kconfig.debug~memory-memory-notifier-error-injection lib/Kconfig.debug --- a/lib/Kconfig.debug~memory-memory-notifier-error-injection +++ a/lib/Kconfig.debug @@ -1069,6 +1069,21 @@ config PM_NOTIFIER_ERROR_INJECTION # echo mem > /sys/power/state bash: echo: write error: Cannot allocate memory +config MEMORY_NOTIFIER_ERROR_INJECTION + bool "Memory hotplug notifier error injection" + depends on MEMORY_HOTPLUG_SPARSE && NOTIFIER_ERROR_INJECTION + help + This option provides the ability to inject artifical errors to + memory hotplug notifier chain callbacks. It is controlled through + debugfs interface. + + Example: Inject memory hotplug offline error (-12 == -ENOMEM) + + # cd /sys/kernel/debug/memory-notifier-error-inject + # echo -12 > MEM_GOING_OFFLINE + # echo offline > /sys/devices/system/memory/memoryXXX/state + bash: echo: write error: Cannot allocate memory + config CPU_NOTIFIER_ERROR_INJECT tristate "CPU notifier error injection module" depends on HOTPLUG_CPU && DEBUG_KERNEL _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch linux-next.patch ext4-use-proper-little-endian-bitops.patch ocfs2-avoid-unaligned-access-to-dqc_bitmap.patch reiserfs-use-proper-little-endian-bitops.patch reiserfs-use-hweight_long.patch fault-injection-do-not-include-unneeded-header.patch fault-injection-remove-nonexistent-function-extern.patch fault-injection-cleanup-simple-attribute-of-stacktrace_depth.patch fault-injection-use-debugfs_remove_recursive.patch failslab-simplify-debugfs-initialization.patch fail_page_alloc-simplify-debugfs-initialization.patch fail_make_request-cleanup-should_fail_request.patch fault-injection-notifier-error-injection.patch cpu-cpu-notifier-error-injection.patch pm-pm-notifier-error-injection.patch memory-memory-notifier-error-injection.patch powerpc-pseries-reconfig-notifier-error-injection.patch asm-generic-add-another-generic-ext2-atomic-bitops.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html