From: OGAWA Hirofumi Date: Mon, 24 May 2010 21:33:11 +0000 (-0700) Subject: printk_ratelimited(): fix uninitialized spinlock X-Git-Tag: v2.6.32.58~28 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3a86cda406c00df3a1c207ba26406847d8e53bba;p=karo-tx-linux.git printk_ratelimited(): fix uninitialized spinlock commit d8521fcc5e0ad3e79bbc4231bb20a6cdc2b50164 upstream. ratelimit_state initialization of printk_ratelimited() seems broken. This fixes it by using DEFINE_RATELIMIT_STATE() to initialize spinlock properly. Signed-off-by: OGAWA Hirofumi Cc: Joe Perches Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Cc: Sven-Haegar Koch Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/kernel.h b/include/linux/kernel.h index f963c1bdcbee..9acb92d8fb06 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -411,14 +411,13 @@ static inline char *pack_hex_byte(char *buf, u8 byte) * no local ratelimit_state used in the !PRINTK case */ #ifdef CONFIG_PRINTK -#define printk_ratelimited(fmt, ...) ({ \ - static struct ratelimit_state _rs = { \ - .interval = DEFAULT_RATELIMIT_INTERVAL, \ - .burst = DEFAULT_RATELIMIT_BURST, \ - }; \ - \ - if (__ratelimit(&_rs)) \ - printk(fmt, ##__VA_ARGS__); \ +#define printk_ratelimited(fmt, ...) ({ \ + static DEFINE_RATELIMIT_STATE(_rs, \ + DEFAULT_RATELIMIT_INTERVAL, \ + DEFAULT_RATELIMIT_BURST); \ + \ + if (__ratelimit(&_rs)) \ + printk(fmt, ##__VA_ARGS__); \ }) #else /* No effect, but we still get type checking even in the !PRINTK case: */