The patch titled
Change constant zero to NOTIFY_DONE in ratelimit_handler()
has been added to the -mm tree. Its filename is
change-constant-zero-to-notify_done-in-ratelimit_handler.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: Change constant zero to NOTIFY_DONE in ratelimit_handler()
From: "Paul E. McKenney" <[EMAIL PROTECTED]>
Change a hard-coded constant 0 to the symbolic equivalent NOTIFY_DONE in
the ratelimit_handler() CPU notifier handler function.
Signed-off-by: Paul E. McKenney <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
mm/page-writeback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN
mm/page-writeback.c~change-constant-zero-to-notify_done-in-ratelimit_handler
mm/page-writeback.c
---
a/mm/page-writeback.c~change-constant-zero-to-notify_done-in-ratelimit_handler
+++ a/mm/page-writeback.c
@@ -536,7 +536,7 @@ static int __cpuinit
ratelimit_handler(struct notifier_block *self, unsigned long u, void *v)
{
writeback_set_ratelimit();
- return 0;
+ return NOTIFY_DONE;
}
static struct notifier_block __cpuinitdata ratelimit_nb = {
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-block.patch
add-an-rcu-version-of-list-splicing.patch
add-an-rcu-version-of-list-splicing-fix.patch
ipmi-fix-some-rcu-problems.patch
change-constant-zero-to-notify_done-in-ratelimit_handler.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html