diff options
author | Vyacheslav Dubeyko <slava@dubeyko.com> | 2013-04-30 15:27:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 17:04:05 -0700 |
commit | 865f38a3a3262d4a8a3d381a6899d2a6b7242244 (patch) | |
tree | 24cf1b1ad0e986ac95455c107605a7c9afb67d23 /fs/hfsplus | |
parent | d7a475d0c4a22ce12ae1d099b76327aa1637ce07 (diff) | |
download | blackbird-obmc-linux-865f38a3a3262d4a8a3d381a6899d2a6b7242244.tar.gz blackbird-obmc-linux-865f38a3a3262d4a8a3d381a6899d2a6b7242244.zip |
hfsplus: remove duplicated message prefix in hfsplus_block_free()
Signed-off-by: Vyacheslav Dubeyko <slava@dubeyko.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Hin-Tak Leung <htl10@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hfsplus')
-rw-r--r-- | fs/hfsplus/bitmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/hfsplus/bitmap.c b/fs/hfsplus/bitmap.c index 826e864acb54..d2954451519e 100644 --- a/fs/hfsplus/bitmap.c +++ b/fs/hfsplus/bitmap.c @@ -238,8 +238,7 @@ out: return 0; kaboom: - pr_crit("hfsplus: unable to mark blocks free: error %ld\n", - PTR_ERR(page)); + pr_crit("unable to mark blocks free: error %ld\n", PTR_ERR(page)); mutex_unlock(&sbi->alloc_mutex); return -EIO; |