The patch titled
Change constant zero to NOTIFY_DONE in ratelimit_handler()
has been removed from the -mm tree. Its filename was
change-constant-zero-to-notify_done-in-ratelimit_handler.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
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
@@ -515,7 +515,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
origin.patch
add-an-rcu-version-of-list-splicing.patch
git-block.patch
posix-timers-rcu-optimization-for-clock_gettime.patch
posix-timers-rcu-optimization-for-clock_gettime-fix.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