diff options
author | Joe Perches | 2012-02-16 00:56:43 +0100 |
---|---|---|
committer | David Woodhouse | 2012-03-27 01:39:24 +0200 |
commit | 9c261b33a9c417ccaf07f41796be278d09d02d49 (patch) | |
tree | 6cf47f47364647dfbba845c0fd3f05539072175a /fs/jffs2/symlink.c | |
parent | mtd: mips: lantiq: reintroduce support for cmdline partitions (diff) | |
download | kernel-qcow2-linux-9c261b33a9c417ccaf07f41796be278d09d02d49.tar.gz kernel-qcow2-linux-9c261b33a9c417ccaf07f41796be278d09d02d49.tar.xz kernel-qcow2-linux-9c261b33a9c417ccaf07f41796be278d09d02d49.zip |
jffs2: Convert most D1/D2 macros to jffs2_dbg
D1 and D2 macros are mostly uses to emit debugging messages.
Convert the logging uses of D1 & D2 to jffs2_dbg(level, fmt, ...)
to be a bit more consistent style with the rest of the kernel.
All jffs2_dbg output is now at KERN_DEBUG where some of
the previous uses were emitted at various KERN_<LEVEL>s.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'fs/jffs2/symlink.c')
-rw-r--r-- | fs/jffs2/symlink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/jffs2/symlink.c b/fs/jffs2/symlink.c index e3035afb1814..5188f4d39a5c 100644 --- a/fs/jffs2/symlink.c +++ b/fs/jffs2/symlink.c @@ -50,7 +50,8 @@ static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd) printk(KERN_ERR "jffs2_follow_link(): can't find symlink target\n"); p = ERR_PTR(-EIO); } - D1(printk(KERN_DEBUG "jffs2_follow_link(): target path is '%s'\n", (char *) f->target)); + jffs2_dbg(1, "%s(): target path is '%s'\n", + __func__, (char *)f->target); nd_set_link(nd, p); |