diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-07-16 16:28:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-07-16 16:28:28 -0700 |
commit | f76d94def5605fbec1de61218e91fe1002fd322f (patch) | |
tree | 8181de42c62a8a30453bc6c70326a4ff278af726 /fs/jfs/inode.c | |
parent | 3aa20508a6fe386c2a893027ef4c4ef78ee4eac2 (diff) | |
parent | 26456955719b79cc4a011b18221aa68f599f6b6c (diff) | |
download | op-kernel-dev-f76d94def5605fbec1de61218e91fe1002fd322f.zip op-kernel-dev-f76d94def5605fbec1de61218e91fe1002fd322f.tar.gz |
Merge tag 'jfs-4.2' of git://github.com/kleikamp/linux-shaggy
Pull jfs fixes from David Kleikamp:
"A couple trivial fixes and an error path fix"
* tag 'jfs-4.2' of git://github.com/kleikamp/linux-shaggy:
jfs: clean up jfs_rename and fix out of order unlock
jfs: fix indentation on if statement
jfs: removed a prohibited space after opening parenthesis
Diffstat (limited to 'fs/jfs/inode.c')
-rw-r--r-- | fs/jfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/inode.c b/fs/jfs/inode.c index 6f1cb2b..41aa3ca 100644 --- a/fs/jfs/inode.c +++ b/fs/jfs/inode.c @@ -134,11 +134,11 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc) * It has been committed since the last change, but was still * on the dirty inode list. */ - if (!test_cflag(COMMIT_Dirty, inode)) { + if (!test_cflag(COMMIT_Dirty, inode)) { /* Make sure committed changes hit the disk */ jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait); return 0; - } + } if (jfs_commit_inode(inode, wait)) { jfs_err("jfs_write_inode: jfs_commit_inode failed!"); |