mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-12 13:49:41 +07:00
[PATCH] write_inode_now(): write inode if not BDI_CAP_NO_WRITEBACK
If the backing_dev_info doesn't have BDI_CAP_NO_WRITEBACK we're not supposed to write back an inode's pages. But in this situation write_inode_now() refuses to write the inode itself as well. Fix. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
cd6b0762a0
commit
49364ce253
@ -562,7 +562,7 @@ int write_inode_now(struct inode *inode, int sync)
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (!mapping_cap_writeback_dirty(inode->i_mapping))
|
if (!mapping_cap_writeback_dirty(inode->i_mapping))
|
||||||
return 0;
|
wbc.nr_to_write = 0;
|
||||||
|
|
||||||
might_sleep();
|
might_sleep();
|
||||||
spin_lock(&inode_lock);
|
spin_lock(&inode_lock);
|
||||||
|
Loading…
Reference in New Issue
Block a user