aboutsummaryrefslogtreecommitdiffstats
path: root/fs/romfs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-08-08 17:22:59 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-08 18:57:25 -0400
commitca9e5368a7d993558a39c327fa3991ec242ea4c3 (patch)
tree1de695ebf391cbe89abe3933272ae3bbd1c27680 /fs/romfs
parent3d79d3145f9c0a955300c03f5386d2c86318e4b0 (diff)
fs/romfs/super.c: use pr_fmt in logging
- Remove "Error" in format logging (already in pr_ level) - Use modulename in pr_fmt instead of ROMFS: in each pr_ callsites. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/romfs')
-rw-r--r--fs/romfs/super.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/fs/romfs/super.c b/fs/romfs/super.c
index c32006ea3d88..6e73879e0da1 100644
--- a/fs/romfs/super.c
+++ b/fs/romfs/super.c
@@ -56,6 +56,8 @@
56 * 2 of the Licence, or (at your option) any later version. 56 * 2 of the Licence, or (at your option) any later version.
57 */ 57 */
58 58
59#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
60
59#include <linux/module.h> 61#include <linux/module.h>
60#include <linux/string.h> 62#include <linux/string.h>
61#include <linux/fs.h> 63#include <linux/fs.h>
@@ -380,7 +382,7 @@ static struct inode *romfs_iget(struct super_block *sb, unsigned long pos)
380eio: 382eio:
381 ret = -EIO; 383 ret = -EIO;
382error: 384error:
383 pr_err("ROMFS: read error for inode 0x%lx\n", pos); 385 pr_err("read error for inode 0x%lx\n", pos);
384 return ERR_PTR(ret); 386 return ERR_PTR(ret);
385} 387}
386 388
@@ -513,8 +515,7 @@ static int romfs_fill_super(struct super_block *sb, void *data, int silent)
513 } 515 }
514 516
515 if (romfs_checksum(rsb, min_t(size_t, img_size, 512))) { 517 if (romfs_checksum(rsb, min_t(size_t, img_size, 512))) {
516 pr_err("ROMFS: bad initial checksum on dev %s.\n", 518 pr_err("bad initial checksum on dev %s.\n", sb->s_id);
517 sb->s_id);
518 goto error_rsb_inval; 519 goto error_rsb_inval;
519 } 520 }
520 521
@@ -522,8 +523,8 @@ static int romfs_fill_super(struct super_block *sb, void *data, int silent)
522 523
523 len = strnlen(rsb->name, ROMFS_MAXFN); 524 len = strnlen(rsb->name, ROMFS_MAXFN);
524 if (!silent) 525 if (!silent)
525 pr_notice("ROMFS: Mounting image '%*.*s' through %s\n", 526 pr_notice("Mounting image '%*.*s' through %s\n",
526 (unsigned) len, (unsigned) len, rsb->name, storage); 527 (unsigned) len, (unsigned) len, rsb->name, storage);
527 528
528 kfree(rsb); 529 kfree(rsb);
529 rsb = NULL; 530 rsb = NULL;
@@ -622,12 +623,12 @@ static int __init init_romfs_fs(void)
622 romfs_i_init_once); 623 romfs_i_init_once);
623 624
624 if (!romfs_inode_cachep) { 625 if (!romfs_inode_cachep) {
625 pr_err("ROMFS error: Failed to initialise inode cache\n"); 626 pr_err("Failed to initialise inode cache\n");
626 return -ENOMEM; 627 return -ENOMEM;
627 } 628 }
628 ret = register_filesystem(&romfs_fs_type); 629 ret = register_filesystem(&romfs_fs_type);
629 if (ret) { 630 if (ret) {
630 pr_err("ROMFS error: Failed to register filesystem\n"); 631 pr_err("Failed to register filesystem\n");
631 goto error_register; 632 goto error_register;
632 } 633 }
633 return 0; 634 return 0;