GIT: unionfs2-2.6.27.y: Unionfs: add missing newlines to printks
Erez Zadok
ezk at fsl.cs.sunysb.edu
Thu Aug 12 23:16:59 EDT 2010
commit 5a5fa0695c15ee45ce2ed29ae4026fd6e10514c6
Author: Erez_Zadok <ezk at cs.sunysb.edu>
Date: Mon Sep 10 20:09:41 2007 -0400
Unionfs: add missing newlines to printks
Signed-off-by: Erez Zadok <ezk at cs.sunysb.edu>
diff --git a/fs/unionfs/dentry.c b/fs/unionfs/dentry.c
index f32922e..91f9780 100644
--- a/fs/unionfs/dentry.c
+++ b/fs/unionfs/dentry.c
@@ -438,13 +438,13 @@ static void unionfs_d_release(struct dentry *dentry)
unionfs_check_dentry(dentry);
/* this could be a negative dentry, so check first */
if (!UNIONFS_D(dentry)) {
- printk(KERN_DEBUG "unionfs: dentry without private data: %.*s",
+ printk(KERN_DEBUG "unionfs: dentry without private data: %.*s\n",
dentry->d_name.len, dentry->d_name.name);
goto out;
} else if (dbstart(dentry) < 0) {
/* this is due to a failed lookup */
printk(KERN_DEBUG "unionfs: dentry without lower "
- "dentries: %.*s",
+ "dentries: %.*s\n",
dentry->d_name.len, dentry->d_name.name);
goto out_free;
}
More information about the unionfs-cvs
mailing list