diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-05-02 16:42:44 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-05-16 12:43:29 -0400 |
commit | 3110ff8048fb757b36112b044b384aea9c44d6e4 (patch) | |
tree | 5260f4973bd0848ddef3fb3c111386e59616abbc /fs/nfs/inode.c | |
parent | 46c8ac74250a396aca855e494f49a960797a6b5e (diff) |
nfs: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r-- | fs/nfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 2501b864f7c3..421d338c698c 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
@@ -1002,7 +1002,7 @@ static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr) | |||
1002 | unsigned long now = jiffies; | 1002 | unsigned long now = jiffies; |
1003 | 1003 | ||
1004 | dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n", | 1004 | dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n", |
1005 | __FUNCTION__, inode->i_sb->s_id, inode->i_ino, | 1005 | __func__, inode->i_sb->s_id, inode->i_ino, |
1006 | atomic_read(&inode->i_count), fattr->valid); | 1006 | atomic_read(&inode->i_count), fattr->valid); |
1007 | 1007 | ||
1008 | if (nfsi->fileid != fattr->fileid) | 1008 | if (nfsi->fileid != fattr->fileid) |
@@ -1126,7 +1126,7 @@ static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr) | |||
1126 | * Big trouble! The inode has become a different object. | 1126 | * Big trouble! The inode has become a different object. |
1127 | */ | 1127 | */ |
1128 | printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n", | 1128 | printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n", |
1129 | __FUNCTION__, inode->i_ino, inode->i_mode, fattr->mode); | 1129 | __func__, inode->i_ino, inode->i_mode, fattr->mode); |
1130 | out_err: | 1130 | out_err: |
1131 | /* | 1131 | /* |
1132 | * No need to worry about unhashing the dentry, as the | 1132 | * No need to worry about unhashing the dentry, as the |