Commit 6f133c97 authored by Matthew Wilcox (Oracle)'s avatar Matthew Wilcox (Oracle) Committed by Andrew Morton

nilfs2: convert nilfs_rename() to use folios

This involves converting nilfs_find_entry(), nilfs_dotdot(),
nilfs_set_link(), nilfs_delete_entry() and nilfs_do_unlink() to use folios
as well.

[konishi.ryusuke: followed the change of page release helper call sites]
Link: https://lkml.kernel.org/r/20231127143036.2425-13-konishi.ryusuke@gmail.comSigned-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: default avatarRyusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent a4bf041e
...@@ -323,38 +323,35 @@ static int nilfs_readdir(struct file *file, struct dir_context *ctx) ...@@ -323,38 +323,35 @@ static int nilfs_readdir(struct file *file, struct dir_context *ctx)
} }
/* /*
* nilfs_find_entry() * nilfs_find_entry()
* *
* finds an entry in the specified directory with the wanted name. It * Finds an entry in the specified directory with the wanted name. It
* returns the page in which the entry was found, and the entry itself * returns the folio in which the entry was found, and the entry itself.
* (as a parameter - res_dir). Page is returned mapped and unlocked. * The folio is mapped and unlocked. When the caller is finished with
* Entry is guaranteed to be valid. * the entry, it should call folio_release_kmap().
*
* On failure, returns NULL and the caller should ignore foliop.
*/ */
struct nilfs_dir_entry * struct nilfs_dir_entry *nilfs_find_entry(struct inode *dir,
nilfs_find_entry(struct inode *dir, const struct qstr *qstr, const struct qstr *qstr, struct folio **foliop)
struct page **res_page)
{ {
const unsigned char *name = qstr->name; const unsigned char *name = qstr->name;
int namelen = qstr->len; int namelen = qstr->len;
unsigned int reclen = NILFS_DIR_REC_LEN(namelen); unsigned int reclen = NILFS_DIR_REC_LEN(namelen);
unsigned long start, n; unsigned long start, n;
unsigned long npages = dir_pages(dir); unsigned long npages = dir_pages(dir);
struct folio *folio = NULL;
struct nilfs_inode_info *ei = NILFS_I(dir); struct nilfs_inode_info *ei = NILFS_I(dir);
struct nilfs_dir_entry *de; struct nilfs_dir_entry *de;
if (npages == 0) if (npages == 0)
goto out; goto out;
/* OFFSET_CACHE */
*res_page = NULL;
start = ei->i_dir_start_lookup; start = ei->i_dir_start_lookup;
if (start >= npages) if (start >= npages)
start = 0; start = 0;
n = start; n = start;
do { do {
char *kaddr = nilfs_get_folio(dir, n, &folio); char *kaddr = nilfs_get_folio(dir, n, foliop);
if (!IS_ERR(kaddr)) { if (!IS_ERR(kaddr)) {
de = (struct nilfs_dir_entry *)kaddr; de = (struct nilfs_dir_entry *)kaddr;
...@@ -363,14 +360,14 @@ nilfs_find_entry(struct inode *dir, const struct qstr *qstr, ...@@ -363,14 +360,14 @@ nilfs_find_entry(struct inode *dir, const struct qstr *qstr,
if (de->rec_len == 0) { if (de->rec_len == 0) {
nilfs_error(dir->i_sb, nilfs_error(dir->i_sb,
"zero-length directory entry"); "zero-length directory entry");
folio_release_kmap(folio, kaddr); folio_release_kmap(*foliop, kaddr);
goto out; goto out;
} }
if (nilfs_match(namelen, name, de)) if (nilfs_match(namelen, name, de))
goto found; goto found;
de = nilfs_next_entry(de); de = nilfs_next_entry(de);
} }
folio_release_kmap(folio, kaddr); folio_release_kmap(*foliop, kaddr);
} }
if (++n >= npages) if (++n >= npages)
n = 0; n = 0;
...@@ -387,14 +384,13 @@ nilfs_find_entry(struct inode *dir, const struct qstr *qstr, ...@@ -387,14 +384,13 @@ nilfs_find_entry(struct inode *dir, const struct qstr *qstr,
return NULL; return NULL;
found: found:
*res_page = &folio->page;
ei->i_dir_start_lookup = n; ei->i_dir_start_lookup = n;
return de; return de;
} }
struct nilfs_dir_entry *nilfs_dotdot(struct inode *dir, struct page **p) struct nilfs_dir_entry *nilfs_dotdot(struct inode *dir, struct folio **foliop)
{ {
struct nilfs_dir_entry *de = nilfs_get_page(dir, 0, p); struct nilfs_dir_entry *de = nilfs_get_folio(dir, 0, foliop);
if (IS_ERR(de)) if (IS_ERR(de))
return NULL; return NULL;
...@@ -405,30 +401,30 @@ ino_t nilfs_inode_by_name(struct inode *dir, const struct qstr *qstr) ...@@ -405,30 +401,30 @@ ino_t nilfs_inode_by_name(struct inode *dir, const struct qstr *qstr)
{ {
ino_t res = 0; ino_t res = 0;
struct nilfs_dir_entry *de; struct nilfs_dir_entry *de;
struct page *page; struct folio *folio;
de = nilfs_find_entry(dir, qstr, &page); de = nilfs_find_entry(dir, qstr, &folio);
if (de) { if (de) {
res = le64_to_cpu(de->inode); res = le64_to_cpu(de->inode);
unmap_and_put_page(page, de); folio_release_kmap(folio, de);
} }
return res; return res;
} }
void nilfs_set_link(struct inode *dir, struct nilfs_dir_entry *de, void nilfs_set_link(struct inode *dir, struct nilfs_dir_entry *de,
struct page *page, struct inode *inode) struct folio *folio, struct inode *inode)
{ {
unsigned int from = offset_in_page(de); size_t from = offset_in_folio(folio, de);
unsigned int to = from + nilfs_rec_len_from_disk(de->rec_len); size_t to = from + nilfs_rec_len_from_disk(de->rec_len);
struct address_space *mapping = page->mapping; struct address_space *mapping = folio->mapping;
int err; int err;
lock_page(page); folio_lock(folio);
err = nilfs_prepare_chunk(page, from, to); err = nilfs_prepare_chunk(&folio->page, from, to);
BUG_ON(err); BUG_ON(err);
de->inode = cpu_to_le64(inode->i_ino); de->inode = cpu_to_le64(inode->i_ino);
nilfs_set_de_type(de, inode); nilfs_set_de_type(de, inode);
nilfs_commit_chunk(page, mapping, from, to); nilfs_commit_chunk(&folio->page, mapping, from, to);
inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir)); inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
} }
...@@ -532,14 +528,14 @@ int nilfs_add_link(struct dentry *dentry, struct inode *inode) ...@@ -532,14 +528,14 @@ int nilfs_add_link(struct dentry *dentry, struct inode *inode)
/* /*
* nilfs_delete_entry deletes a directory entry by merging it with the * nilfs_delete_entry deletes a directory entry by merging it with the
* previous entry. Page is up-to-date. * previous entry. Folio is up-to-date.
*/ */
int nilfs_delete_entry(struct nilfs_dir_entry *dir, struct page *page) int nilfs_delete_entry(struct nilfs_dir_entry *dir, struct folio *folio)
{ {
struct address_space *mapping = page->mapping; struct address_space *mapping = folio->mapping;
struct inode *inode = mapping->host; struct inode *inode = mapping->host;
char *kaddr = (char *)((unsigned long)dir & PAGE_MASK); char *kaddr = (char *)((unsigned long)dir & ~(folio_size(folio) - 1));
unsigned int from, to; size_t from, to;
struct nilfs_dir_entry *de, *pde = NULL; struct nilfs_dir_entry *de, *pde = NULL;
int err; int err;
...@@ -559,13 +555,13 @@ int nilfs_delete_entry(struct nilfs_dir_entry *dir, struct page *page) ...@@ -559,13 +555,13 @@ int nilfs_delete_entry(struct nilfs_dir_entry *dir, struct page *page)
} }
if (pde) if (pde)
from = (char *)pde - kaddr; from = (char *)pde - kaddr;
lock_page(page); folio_lock(folio);
err = nilfs_prepare_chunk(page, from, to); err = nilfs_prepare_chunk(&folio->page, from, to);
BUG_ON(err); BUG_ON(err);
if (pde) if (pde)
pde->rec_len = nilfs_rec_len_to_disk(to - from); pde->rec_len = nilfs_rec_len_to_disk(to - from);
dir->inode = 0; dir->inode = 0;
nilfs_commit_chunk(page, mapping, from, to); nilfs_commit_chunk(&folio->page, mapping, from, to);
inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode)); inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
out: out:
return err; return err;
......
...@@ -260,11 +260,11 @@ static int nilfs_do_unlink(struct inode *dir, struct dentry *dentry) ...@@ -260,11 +260,11 @@ static int nilfs_do_unlink(struct inode *dir, struct dentry *dentry)
{ {
struct inode *inode; struct inode *inode;
struct nilfs_dir_entry *de; struct nilfs_dir_entry *de;
struct page *page; struct folio *folio;
int err; int err;
err = -ENOENT; err = -ENOENT;
de = nilfs_find_entry(dir, &dentry->d_name, &page); de = nilfs_find_entry(dir, &dentry->d_name, &folio);
if (!de) if (!de)
goto out; goto out;
...@@ -279,8 +279,8 @@ static int nilfs_do_unlink(struct inode *dir, struct dentry *dentry) ...@@ -279,8 +279,8 @@ static int nilfs_do_unlink(struct inode *dir, struct dentry *dentry)
inode->i_ino, inode->i_nlink); inode->i_ino, inode->i_nlink);
set_nlink(inode, 1); set_nlink(inode, 1);
} }
err = nilfs_delete_entry(de, page); err = nilfs_delete_entry(de, folio);
unmap_and_put_page(page, de); folio_release_kmap(folio, de);
if (err) if (err)
goto out; goto out;
...@@ -348,9 +348,9 @@ static int nilfs_rename(struct mnt_idmap *idmap, ...@@ -348,9 +348,9 @@ static int nilfs_rename(struct mnt_idmap *idmap,
{ {
struct inode *old_inode = d_inode(old_dentry); struct inode *old_inode = d_inode(old_dentry);
struct inode *new_inode = d_inode(new_dentry); struct inode *new_inode = d_inode(new_dentry);
struct page *dir_page = NULL; struct folio *dir_folio = NULL;
struct nilfs_dir_entry *dir_de = NULL; struct nilfs_dir_entry *dir_de = NULL;
struct page *old_page; struct folio *old_folio;
struct nilfs_dir_entry *old_de; struct nilfs_dir_entry *old_de;
struct nilfs_transaction_info ti; struct nilfs_transaction_info ti;
int err; int err;
...@@ -363,19 +363,19 @@ static int nilfs_rename(struct mnt_idmap *idmap, ...@@ -363,19 +363,19 @@ static int nilfs_rename(struct mnt_idmap *idmap,
return err; return err;
err = -ENOENT; err = -ENOENT;
old_de = nilfs_find_entry(old_dir, &old_dentry->d_name, &old_page); old_de = nilfs_find_entry(old_dir, &old_dentry->d_name, &old_folio);
if (!old_de) if (!old_de)
goto out; goto out;
if (S_ISDIR(old_inode->i_mode)) { if (S_ISDIR(old_inode->i_mode)) {
err = -EIO; err = -EIO;
dir_de = nilfs_dotdot(old_inode, &dir_page); dir_de = nilfs_dotdot(old_inode, &dir_folio);
if (!dir_de) if (!dir_de)
goto out_old; goto out_old;
} }
if (new_inode) { if (new_inode) {
struct page *new_page; struct folio *new_folio;
struct nilfs_dir_entry *new_de; struct nilfs_dir_entry *new_de;
err = -ENOTEMPTY; err = -ENOTEMPTY;
...@@ -383,11 +383,11 @@ static int nilfs_rename(struct mnt_idmap *idmap, ...@@ -383,11 +383,11 @@ static int nilfs_rename(struct mnt_idmap *idmap,
goto out_dir; goto out_dir;
err = -ENOENT; err = -ENOENT;
new_de = nilfs_find_entry(new_dir, &new_dentry->d_name, &new_page); new_de = nilfs_find_entry(new_dir, &new_dentry->d_name, &new_folio);
if (!new_de) if (!new_de)
goto out_dir; goto out_dir;
nilfs_set_link(new_dir, new_de, new_page, old_inode); nilfs_set_link(new_dir, new_de, new_folio, old_inode);
unmap_and_put_page(new_page, new_de); folio_release_kmap(new_folio, new_de);
nilfs_mark_inode_dirty(new_dir); nilfs_mark_inode_dirty(new_dir);
inode_set_ctime_current(new_inode); inode_set_ctime_current(new_inode);
if (dir_de) if (dir_de)
...@@ -410,14 +410,14 @@ static int nilfs_rename(struct mnt_idmap *idmap, ...@@ -410,14 +410,14 @@ static int nilfs_rename(struct mnt_idmap *idmap,
*/ */
inode_set_ctime_current(old_inode); inode_set_ctime_current(old_inode);
nilfs_delete_entry(old_de, old_page); nilfs_delete_entry(old_de, old_folio);
if (dir_de) { if (dir_de) {
nilfs_set_link(old_inode, dir_de, dir_page, new_dir); nilfs_set_link(old_inode, dir_de, dir_folio, new_dir);
unmap_and_put_page(dir_page, dir_de); folio_release_kmap(dir_folio, dir_de);
drop_nlink(old_dir); drop_nlink(old_dir);
} }
unmap_and_put_page(old_page, old_de); folio_release_kmap(old_folio, old_de);
nilfs_mark_inode_dirty(old_dir); nilfs_mark_inode_dirty(old_dir);
nilfs_mark_inode_dirty(old_inode); nilfs_mark_inode_dirty(old_inode);
...@@ -427,9 +427,9 @@ static int nilfs_rename(struct mnt_idmap *idmap, ...@@ -427,9 +427,9 @@ static int nilfs_rename(struct mnt_idmap *idmap,
out_dir: out_dir:
if (dir_de) if (dir_de)
unmap_and_put_page(dir_page, dir_de); folio_release_kmap(dir_folio, dir_de);
out_old: out_old:
unmap_and_put_page(old_page, old_de); folio_release_kmap(old_folio, old_de);
out: out:
nilfs_transaction_abort(old_dir->i_sb); nilfs_transaction_abort(old_dir->i_sb);
return err; return err;
......
...@@ -226,16 +226,16 @@ static inline __u32 nilfs_mask_flags(umode_t mode, __u32 flags) ...@@ -226,16 +226,16 @@ static inline __u32 nilfs_mask_flags(umode_t mode, __u32 flags)
} }
/* dir.c */ /* dir.c */
extern int nilfs_add_link(struct dentry *, struct inode *); int nilfs_add_link(struct dentry *, struct inode *);
extern ino_t nilfs_inode_by_name(struct inode *, const struct qstr *); ino_t nilfs_inode_by_name(struct inode *, const struct qstr *);
extern int nilfs_make_empty(struct inode *, struct inode *); int nilfs_make_empty(struct inode *, struct inode *);
extern struct nilfs_dir_entry * struct nilfs_dir_entry *nilfs_find_entry(struct inode *, const struct qstr *,
nilfs_find_entry(struct inode *, const struct qstr *, struct page **); struct folio **);
extern int nilfs_delete_entry(struct nilfs_dir_entry *, struct page *); int nilfs_delete_entry(struct nilfs_dir_entry *, struct folio *);
extern int nilfs_empty_dir(struct inode *); int nilfs_empty_dir(struct inode *);
extern struct nilfs_dir_entry *nilfs_dotdot(struct inode *, struct page **); struct nilfs_dir_entry *nilfs_dotdot(struct inode *, struct folio **);
extern void nilfs_set_link(struct inode *, struct nilfs_dir_entry *, void nilfs_set_link(struct inode *, struct nilfs_dir_entry *,
struct page *, struct inode *); struct folio *, struct inode *);
/* file.c */ /* file.c */
extern int nilfs_sync_file(struct file *, loff_t, loff_t, int); extern int nilfs_sync_file(struct file *, loff_t, loff_t, int);
......
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