Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c1ffed
)
log_do_checkpoint(): fix return value.
author
nikita
<nikita>
Wed, 29 Nov 2006 19:09:54 +0000
(19:09 +0000)
committer
nikita
<nikita>
Wed, 29 Nov 2006 19:09:54 +0000
(19:09 +0000)
lustre/kernel_patches/patches/jbd-checkpoint-on-commit.patch
patch
|
blob
|
history
diff --git
a/lustre/kernel_patches/patches/jbd-checkpoint-on-commit.patch
b/lustre/kernel_patches/patches/jbd-checkpoint-on-commit.patch
index
367ba3f
..
b459eb2
100644
(file)
--- a/
lustre/kernel_patches/patches/jbd-checkpoint-on-commit.patch
+++ b/
lustre/kernel_patches/patches/jbd-checkpoint-on-commit.patch
@@
-54,7
+54,7
@@
Index: linux/fs/jbd/checkpoint.c
- if (result < 0)
- return result;
+ result2 = cleanup_journal_tail(journal);
-+ if (result == 0)
++ if (result == 0
&& result2 < 0
)
+ result = result2;
- return 0;