diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-06 10:40:12 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 19:41:20 +0100 |
commit | 533083836fd55ca67ce35ab3d914b74ec1a5b9a8 (patch) | |
tree | 5dffe25ff6d049be33ffe6b3d0135cae45eb2a72 /fs/jbd | |
parent | BKL-removal: remove incorrect comment refering to lock_kernel() from jbd/jbd2 (diff) | |
download | linux-533083836fd55ca67ce35ab3d914b74ec1a5b9a8.tar.xz linux-533083836fd55ca67ce35ab3d914b74ec1a5b9a8.zip |
make jbd/journal.c:__journal_abort_hard() static
__journal_abort_hard() can now become static.
Signed-off-by: Adrian Bunk <bunk@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')
-rw-r--r-- | fs/jbd/journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index 5d14243499d4..3943a8905eb2 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c @@ -1457,7 +1457,7 @@ static const char *journal_dev_name(journal_t *journal, char *buffer) * Aborts hard --- we mark the abort as occurred, but do _nothing_ else, * and don't attempt to make any other journal updates. */ -void __journal_abort_hard(journal_t *journal) +static void __journal_abort_hard(journal_t *journal) { transaction_t *transaction; char b[BDEVNAME_SIZE]; |