nilfs2: convert nilfs_make_empty() to use a folio
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Mon, 27 Nov 2023 14:30:34 +0000 (23:30 +0900)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:48 +0000 (17:21 -0800)
Remove two calls to compound_head() and switch from kmap_atomic to
kmap_local.

Link: https://lkml.kernel.org/r/20231127143036.2425-16-konishi.ryusuke@gmail.com
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/nilfs2/dir.c

index 919936d9ec272e3870297c40872878b3867421d9..ff0a009a292fbffe62a811da9e54d66cac467066 100644 (file)
@@ -559,21 +559,21 @@ out:
 int nilfs_make_empty(struct inode *inode, struct inode *parent)
 {
        struct address_space *mapping = inode->i_mapping;
-       struct page *page = grab_cache_page(mapping, 0);
+       struct folio *folio = filemap_grab_folio(mapping, 0);
        unsigned int chunk_size = nilfs_chunk_size(inode);
        struct nilfs_dir_entry *de;
        int err;
        void *kaddr;
 
-       if (!page)
-               return -ENOMEM;
+       if (IS_ERR(folio))
+               return PTR_ERR(folio);
 
-       err = nilfs_prepare_chunk(page, 0, chunk_size);
+       err = nilfs_prepare_chunk(&folio->page, 0, chunk_size);
        if (unlikely(err)) {
-               unlock_page(page);
+               folio_unlock(folio);
                goto fail;
        }
-       kaddr = kmap_atomic(page);
+       kaddr = kmap_local_folio(folio, 0);
        memset(kaddr, 0, chunk_size);
        de = (struct nilfs_dir_entry *)kaddr;
        de->name_len = 1;
@@ -588,10 +588,10 @@ int nilfs_make_empty(struct inode *inode, struct inode *parent)
        de->inode = cpu_to_le64(parent->i_ino);
        memcpy(de->name, "..\0", 4);
        nilfs_set_de_type(de, inode);
-       kunmap_atomic(kaddr);
-       nilfs_commit_chunk(page, mapping, 0, chunk_size);
+       kunmap_local(kaddr);
+       nilfs_commit_chunk(&folio->page, mapping, 0, chunk_size);
 fail:
-       put_page(page);
+       folio_put(folio);
        return err;
 }