Commit 3d1bec29 authored by Matthew Wilcox (Oracle)'s avatar Matthew Wilcox (Oracle) Committed by Christian Brauner

minixfs: Fix minixfs_rename with HIGHMEM

minixfs now uses kmap_local_page(), so we can't call kunmap() to
undo it.  This one call was missed as part of the commit this fixes.

Fixes: 6628f69e (minixfs: Use dir_put_page() in minix_unlink() and minix_rename())
Signed-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
Link: https://lore.kernel.org/r/20240709195841.1986374-1-willy@infradead.orgSigned-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent 0570730c
...@@ -213,8 +213,7 @@ static int minix_rename(struct mnt_idmap *idmap, ...@@ -213,8 +213,7 @@ static int minix_rename(struct mnt_idmap *idmap,
if (!new_de) if (!new_de)
goto out_dir; goto out_dir;
err = minix_set_link(new_de, new_page, old_inode); err = minix_set_link(new_de, new_page, old_inode);
kunmap(new_page); unmap_and_put_page(new_page, new_de);
put_page(new_page);
if (err) if (err)
goto out_dir; goto out_dir;
inode_set_ctime_current(new_inode); inode_set_ctime_current(new_inode);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment