diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-07-25 19:45:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 12:00:07 -0700 |
commit | 5c752ad9f35910ff1912b3f3ae82878178ddc432 (patch) | |
tree | 4ac627f9cdd7f0e1b0557b9b5c4838587c1c0890 /fs/buffer.c | |
parent | 5cd2b459d326a424671dcd95f038649f7bf7cb96 (diff) | |
download | linux-3.10-5c752ad9f35910ff1912b3f3ae82878178ddc432.tar.gz linux-3.10-5c752ad9f35910ff1912b3f3ae82878178ddc432.tar.bz2 linux-3.10-5c752ad9f35910ff1912b3f3ae82878178ddc432.zip |
Use WARN() in fs/
Use WARN() instead of a printk+WARN_ON() pair; this way the message
becomes part of the warning section for better reporting/collection.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/buffer.c')
-rw-r--r-- | fs/buffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 5fd497cdd6f..f9580501963 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -1214,8 +1214,7 @@ void __brelse(struct buffer_head * buf) put_bh(buf); return; } - printk(KERN_ERR "VFS: brelse: Trying to free free buffer\n"); - WARN_ON(1); + WARN(1, KERN_ERR "VFS: brelse: Trying to free free buffer\n"); } /* |