diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2011-01-12 19:59:13 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 11:03:05 -0500 |
commit | 6db26ffc917b609402619e03df5af8d1cd371ce7 (patch) | |
tree | 95d58dec4f8a69c57fd632ca61e362654bc351d0 /fs/ext4 | |
parent | f878133bf022717b880d0e0995b8f91436fd605c (diff) |
fs/ext4/inode.c: use pr_warn_ratelimited()
pr_warning_ratelimited() doesn't exist.
Also include printk.h, which defines these things.
Cc: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index e80fc513eacc..549465fef7e9 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <linux/bio.h> | 39 | #include <linux/bio.h> |
40 | #include <linux/workqueue.h> | 40 | #include <linux/workqueue.h> |
41 | #include <linux/kernel.h> | 41 | #include <linux/kernel.h> |
42 | #include <linux/printk.h> | ||
42 | #include <linux/slab.h> | 43 | #include <linux/slab.h> |
43 | #include <linux/ratelimit.h> | 44 | #include <linux/ratelimit.h> |
44 | 45 | ||
@@ -3737,7 +3738,7 @@ static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode) | |||
3737 | retry: | 3738 | retry: |
3738 | io_end = ext4_init_io_end(inode, GFP_ATOMIC); | 3739 | io_end = ext4_init_io_end(inode, GFP_ATOMIC); |
3739 | if (!io_end) { | 3740 | if (!io_end) { |
3740 | pr_warning_ratelimited("%s: allocation fail\n", __func__); | 3741 | pr_warn_ratelimited("%s: allocation fail\n", __func__); |
3741 | schedule(); | 3742 | schedule(); |
3742 | goto retry; | 3743 | goto retry; |
3743 | } | 3744 | } |