summaryrefslogtreecommitdiffstats
path: root/fs/hpfs/name.c
diff options
context:
space:
mode:
authorFabian Frederick2014-06-06 23:36:34 +0200
committerLinus Torvalds2014-06-07 01:08:10 +0200
commit14da17f9c4a880e3418f7f04071df3cb2e8636e8 (patch)
tree304cf850a7337b83a5eef2720e23a9dff48469b4 /fs/hpfs/name.c
parentfs/hpfs: convert printk to pr_foo() (diff)
downloadkernel-qcow2-linux-14da17f9c4a880e3418f7f04071df3cb2e8636e8.tar.gz
kernel-qcow2-linux-14da17f9c4a880e3418f7f04071df3cb2e8636e8.tar.xz
kernel-qcow2-linux-14da17f9c4a880e3418f7f04071df3cb2e8636e8.zip
fs/hpfs: use pr_fmt for logging
Also remove redundant level names (warning:...) Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hpfs/name.c')
-rw-r--r--fs/hpfs/name.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/hpfs/name.c b/fs/hpfs/name.c
index 61ffd04bbf8e..91f4cc172e38 100644
--- a/fs/hpfs/name.c
+++ b/fs/hpfs/name.c
@@ -56,15 +56,15 @@ unsigned char *hpfs_translate_name(struct super_block *s, unsigned char *from,
unsigned char *to;
int i;
if (hpfs_sb(s)->sb_chk >= 2) if (hpfs_is_name_long(from, len) != lng) {
- pr_warn("HPFS: Long name flag mismatch - name ");
+ pr_warn("Long name flag mismatch - name ");
for (i = 0; i < len; i++)
pr_cont("%c", from[i]);
pr_cont(" misidentified as %s.\n", lng ? "short" : "long");
- pr_warn("HPFS: It's nothing serious. It could happen because of bug in OS/2.\nHPFS: Set checks=normal to disable this message.\n");
+ pr_warn("It's nothing serious. It could happen because of bug in OS/2.\nSet checks=normal to disable this message.\n");
}
if (!lc) return from;
if (!(to = kmalloc(len, GFP_KERNEL))) {
- pr_warn("HPFS: can't allocate memory for name conversion buffer\n");
+ pr_warn("can't allocate memory for name conversion buffer\n");
return from;
}
for (i = 0; i < len; i++) to[i] = locase(hpfs_sb(s)->sb_cp_table,from[i]);