projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f81e3d4
)
jbd: Remove unnecessary goto statement
author
Namhyung Kim
<namhyung@gmail.com>
Mon, 4 Oct 2010 15:13:59 +0000
(
00:13
+0900)
committer
Jan Kara
<jack@suse.cz>
Wed, 27 Oct 2010 23:30:01 +0000
(
01:30
+0200)
Remove goto statement which jumps to very next line. Also remove
target label because it is no longer used anywhere.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/jbd/transaction.c
patch
|
blob
|
history
diff --git
a/fs/jbd/transaction.c
b/fs/jbd/transaction.c
index
5ae71e7
..
981449c
100644
(file)
--- a/
fs/jbd/transaction.c
+++ b/
fs/jbd/transaction.c
@@
-293,9
+293,7
@@
handle_t *journal_start(journal_t *journal, int nblocks)
jbd_free_handle(handle);
current->journal_info = NULL;
handle = ERR_PTR(err);
- goto out;
}
-out:
return handle;
}