GIT: unionfs2-2.6.27.y: Unionfs: use consistent printk prefixes
Erez Zadok
ezk at fsl.cs.sunysb.edu
Thu Aug 12 23:17:11 EDT 2010
commit ce3a6e595aee7612b9ba0302eebe0e70b5f7e355
Author: Erez Zadok <ezk at cs.sunysb.edu>
Date: Sat Sep 29 01:36:57 2007 -0400
Unionfs: use consistent printk prefixes
Signed-off-by: Erez Zadok <ezk at cs.sunysb.edu>
diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c
index 021e206..ba85a67 100644
--- a/fs/unionfs/inode.c
+++ b/fs/unionfs/inode.c
@@ -90,7 +90,7 @@ static int unionfs_create(struct inode *parent, struct dentry *dentry,
unlock_dir(lower_dir_dentry);
if (err) {
- printk("unionfs_create: could not unlink "
+ printk("unionfs: create: could not unlink "
"whiteout, err = %d\n", err);
goto out;
}
@@ -1088,7 +1088,7 @@ static int unionfs_setattr(struct dentry *dentry, struct iattr *ia)
if (ia->ia_size != i_size_read(inode)) {
err = vmtruncate(inode, ia->ia_size);
if (err)
- printk("unionfs_setattr: vmtruncate failed\n");
+ printk("unionfs: setattr: vmtruncate failed\n");
}
}
diff --git a/fs/unionfs/union.h b/fs/unionfs/union.h
index 219cd9b..4e153d2 100644
--- a/fs/unionfs/union.h
+++ b/fs/unionfs/union.h
@@ -478,7 +478,7 @@ static inline struct vfsmount *unionfs_mntget(struct dentry *dentry,
mnt = mntget(unionfs_lower_mnt_idx(dentry, bindex));
#ifdef CONFIG_UNION_FS_DEBUG
if (!mnt)
- printk(KERN_DEBUG "unionfs_mntget: mnt=%p bindex=%d\n",
+ printk(KERN_DEBUG "unionfs: mntget: mnt=%p bindex=%d\n",
mnt, bindex);
#endif /* CONFIG_UNION_FS_DEBUG */
@@ -504,7 +504,7 @@ static inline void unionfs_mntput(struct dentry *dentry, int bindex)
*/
if (!mnt && !(bindex > dbstart(dentry) && bindex < dbend(dentry)))
printk(KERN_WARNING
- "unionfs_mntput: mnt=%p bindex=%d\n",
+ "unionfs: mntput: mnt=%p bindex=%d\n",
mnt, bindex);
#endif /* CONFIG_UNION_FS_DEBUG */
mntput(mnt);
More information about the unionfs-cvs
mailing list