JBD2: Use the incompat macro for testing the incompat feature.
JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT needs to be checked with JBD2_HAS_INCOMPAT_FEATURE Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Mingming Cao <cmm@us.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
c4b8e635f5
commit
4d60517972
2 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ static int journal_submit_commit_record(journal_t *journal,
|
||||||
bh->b_end_io = journal_end_buffer_io_sync;
|
bh->b_end_io = journal_end_buffer_io_sync;
|
||||||
|
|
||||||
if (journal->j_flags & JBD2_BARRIER &&
|
if (journal->j_flags & JBD2_BARRIER &&
|
||||||
!JBD2_HAS_COMPAT_FEATURE(journal,
|
!JBD2_HAS_INCOMPAT_FEATURE(journal,
|
||||||
JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
|
JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
|
||||||
set_buffer_ordered(bh);
|
set_buffer_ordered(bh);
|
||||||
barrier_done = 1;
|
barrier_done = 1;
|
||||||
|
|
|
@ -641,7 +641,7 @@ static int do_one_pass(journal_t *journal,
|
||||||
if (chksum_err) {
|
if (chksum_err) {
|
||||||
info->end_transaction = next_commit_ID;
|
info->end_transaction = next_commit_ID;
|
||||||
|
|
||||||
if (!JBD2_HAS_COMPAT_FEATURE(journal,
|
if (!JBD2_HAS_INCOMPAT_FEATURE(journal,
|
||||||
JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)){
|
JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)){
|
||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"JBD: Transaction %u "
|
"JBD: Transaction %u "
|
||||||
|
|
Loading…
Add table
Reference in a new issue