mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
UBIFS: remove unnecessary brackets
Remove unnecessary brackets in "inode->i_flags |= (S_NOCMTIME)" statement to make the code not look silly. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
a29fa9dfa4
commit
12e776a088
@ -102,7 +102,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
|
||||
* UBIFS has to fully control "clean <-> dirty" transitions of inodes
|
||||
* to make budgeting work.
|
||||
*/
|
||||
inode->i_flags |= (S_NOCMTIME);
|
||||
inode->i_flags |= S_NOCMTIME;
|
||||
|
||||
inode_init_owner(inode, dir, mode);
|
||||
inode->i_mtime = inode->i_atime = inode->i_ctime =
|
||||
|
Loading…
Reference in New Issue
Block a user