The patch titled kernel.h: fix wrong usage of __ratelimit() has been added to the -mm tree. Its filename is kernelh-fix-wrong-usage-of-__ratelimit.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: kernel.h: fix wrong usage of __ratelimit() From: Yong Zhang <yong.zhang@xxxxxxxxxxxxx> When __ratelimit() returns 1 this means that we can go ahead. Signed-off-by: Yong Zhang <yong.zhang@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/kernel.h~kernelh-fix-wrong-usage-of-__ratelimit include/linux/kernel.h --- a/include/linux/kernel.h~kernelh-fix-wrong-usage-of-__ratelimit +++ a/include/linux/kernel.h @@ -426,7 +426,7 @@ static inline char *pack_hex_byte(char * .burst = DEFAULT_RATELIMIT_BURST, \ }; \ \ - if (!__ratelimit(&_rs)) \ + if (__ratelimit(&_rs)) \ printk(fmt, ##__VA_ARGS__); \ }) #else _ Patches currently in -mm which might be from yong.zhang@xxxxxxxxxxxxx are ratelimit-annotate-___ratelimit.patch ratelimit-annotate-___ratelimit-fix.patch kernelh-fix-wrong-usage-of-__ratelimit.patch ratelimit-fix-the-return-value-when-__ratelimit-fails-to-acquire-the-lock.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