diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:16:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:45 -0400 |
commit | 9746077a71d01b8d86f5e471a3a2c8f1fa91ef94 (patch) | |
tree | b6a4b12949b29144ab2092bb5ccac15971a071e4 /fs/ufs/balloc.c | |
parent | 3c5afae2bac974fe2c15cd9439f921526b3ea2d7 (diff) |
ufs: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ufs/balloc.c')
-rw-r--r-- | fs/ufs/balloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ufs/balloc.c b/fs/ufs/balloc.c index 1e7598fb9787..0d9ada173739 100644 --- a/fs/ufs/balloc.c +++ b/fs/ufs/balloc.c | |||
@@ -277,7 +277,7 @@ static void ufs_change_blocknr(struct inode *inode, sector_t beg, | |||
277 | if (!page)/* it was truncated */ | 277 | if (!page)/* it was truncated */ |
278 | continue; | 278 | continue; |
279 | if (IS_ERR(page)) {/* or EIO */ | 279 | if (IS_ERR(page)) {/* or EIO */ |
280 | ufs_error(inode->i_sb, __FUNCTION__, | 280 | ufs_error(inode->i_sb, __func__, |
281 | "read of page %llu failed\n", | 281 | "read of page %llu failed\n", |
282 | (unsigned long long)index); | 282 | (unsigned long long)index); |
283 | continue; | 283 | continue; |
@@ -308,7 +308,7 @@ static void ufs_change_blocknr(struct inode *inode, sector_t beg, | |||
308 | ll_rw_block(READ, 1, &bh); | 308 | ll_rw_block(READ, 1, &bh); |
309 | wait_on_buffer(bh); | 309 | wait_on_buffer(bh); |
310 | if (!buffer_uptodate(bh)) { | 310 | if (!buffer_uptodate(bh)) { |
311 | ufs_error(inode->i_sb, __FUNCTION__, | 311 | ufs_error(inode->i_sb, __func__, |
312 | "read of block failed\n"); | 312 | "read of block failed\n"); |
313 | break; | 313 | break; |
314 | } | 314 | } |