aboutsummaryrefslogtreecommitdiffstats
path: root/fs/coda/cnode.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-06-06 17:36:20 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 19:08:09 -0400
commit6d6bd94f4d83d70cdff67d0bf2a64ef6878216e7 (patch)
tree305ab4f98bcdc25669129ded4f530dd12f5f6407 /fs/coda/cnode.c
parentf38cfb2564f5fead53eebd9617258ee0376b1906 (diff)
fs/coda: use __func__
Replace all function names by __func__ in pr_foo() Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Jan Harkes <jaharkes@cs.cmu.edu> Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/coda/cnode.c')
-rw-r--r--fs/coda/cnode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/coda/cnode.c b/fs/coda/cnode.c
index 4bb74b3d3901..7740b1c871c1 100644
--- a/fs/coda/cnode.c
+++ b/fs/coda/cnode.c
@@ -101,7 +101,7 @@ struct inode *coda_cnode_make(struct CodaFid *fid, struct super_block *sb)
101 101
102 inode = coda_iget(sb, fid, &attr); 102 inode = coda_iget(sb, fid, &attr);
103 if (IS_ERR(inode)) 103 if (IS_ERR(inode))
104 pr_warn("coda_cnode_make: coda_iget failed\n"); 104 pr_warn("%s: coda_iget failed\n", __func__);
105 return inode; 105 return inode;
106} 106}
107 107
@@ -137,7 +137,7 @@ struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb)
137 unsigned long hash = coda_f2i(fid); 137 unsigned long hash = coda_f2i(fid);
138 138
139 if ( !sb ) { 139 if ( !sb ) {
140 pr_warn("coda_fid_to_inode: no sb!\n"); 140 pr_warn("%s: no sb!\n", __func__);
141 return NULL; 141 return NULL;
142 } 142 }
143 143