[PATCH 07/42] exfat: Drop pointless invalidate_inode_buffers() call
Jan Kara <[email protected]> Thu, 26 Mar 2026 10:54:01 +0100
| Newsgroups | gmane.linux.kernel.aio.general,gmane.linux.file-systems,gmane.linux.block,gmane.comp.file-systems.ext4,gmane.linux.kernel.mm |
|---|---|
| Message-ID | <[email protected]> |
EXFAT never calls mark_buffer_dirty_inode() and thus invalidate_inode_buffers() never has anything to evict. Drop the pointless call. Signed-off-by: Jan Kara <[email protected]> --- fs/exfat/inode.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/exfat/inode.c b/fs/exfat/inode.c index 2fb2d2d5d503..04559b88482d 100644 --- a/fs/exfat/inode.c +++ b/fs/exfat/inode.c @@ -695,7 +695,6 @@ void exfat_evict_inode(struct inode *inode) mutex_unlock(&EXFAT_SB(inode->i_sb)->s_lock); } - invalidate_inode_buffers(inode); clear_inode(inode); exfat_cache_inval_inode(inode); exfat_unhash_inode(inode); -- 2.51.0 -- To unsubscribe, send a message with 'unsubscribe linux-aio' in the body to [email protected]. For more info on Linux AIO, see: http://www.kvack.org/aio/ Don't email: <a href=mailto:"[email protected]">[email protected]</a>