diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:16:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:45 -0400 |
commit | 08fc99bfc39d5b394aa27498ac5f14df0ef8e52a (patch) | |
tree | 3749ce01f8cb60e3cf08c95f3f4076e21ad62ee7 /fs/jbd/revoke.c | |
parent | e05b6b524bd5c5c2bae1b64a7cbe08d46d57a6fe (diff) |
jbd: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/jbd/revoke.c')
-rw-r--r-- | fs/jbd/revoke.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd/revoke.c b/fs/jbd/revoke.c index d5f8eee7c88c..1bb43e987f4b 100644 --- a/fs/jbd/revoke.c +++ b/fs/jbd/revoke.c | |||
@@ -138,7 +138,7 @@ repeat: | |||
138 | oom: | 138 | oom: |
139 | if (!journal_oom_retry) | 139 | if (!journal_oom_retry) |
140 | return -ENOMEM; | 140 | return -ENOMEM; |
141 | jbd_debug(1, "ENOMEM in %s, retrying\n", __FUNCTION__); | 141 | jbd_debug(1, "ENOMEM in %s, retrying\n", __func__); |
142 | yield(); | 142 | yield(); |
143 | goto repeat; | 143 | goto repeat; |
144 | } | 144 | } |