erofs-utils: lib: add erofs_insert_ihash() helper
authorJingbo Xu <jefflexu@linux.alibaba.com>
Wed, 13 Sep 2023 12:02:59 +0000 (20:02 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Thu, 14 Sep 2023 09:45:11 +0000 (17:45 +0800)
Add erofs_insert_ihash() helper inserting inode into inode hash table.

Also add prototypes of erofs_iget() and erofs_iget_by_nid() in the
header file.

Signed-off-by: Jingbo Xu <jefflexu@linux.alibaba.com>
Reviewed-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20230913120304.15741-5-jefflexu@linux.alibaba.com
include/erofs/inode.h
lib/inode.c

index e8a567011a5218c8cad669e7b4c4245446af1de5..1c602a8db33902cb9e6641efe9ffc364d33cbad1 100644 (file)
@@ -25,6 +25,9 @@ u32 erofs_new_encode_dev(dev_t dev);
 unsigned char erofs_mode_to_ftype(umode_t mode);
 unsigned char erofs_ftype_to_dtype(unsigned int filetype);
 void erofs_inode_manager_init(void);
+void erofs_insert_ihash(struct erofs_inode *inode, dev_t dev, ino_t ino);
+struct erofs_inode *erofs_iget(dev_t dev, ino_t ino);
+struct erofs_inode *erofs_iget_by_nid(erofs_nid_t nid);
 unsigned int erofs_iput(struct erofs_inode *inode);
 erofs_nid_t erofs_lookupnid(struct erofs_inode *inode);
 struct erofs_dentry *erofs_d_alloc(struct erofs_inode *parent,
index 92796c992b299f376382b804a401abdd3f5d3e54..79e17954e9aeab720100ebc8039b6e8bd03df332 100644 (file)
@@ -75,6 +75,12 @@ void erofs_inode_manager_init(void)
                init_list_head(&inode_hashtable[i]);
 }
 
+void erofs_insert_ihash(struct erofs_inode *inode, dev_t dev, ino_t ino)
+{
+       list_add(&inode->i_hash,
+                &inode_hashtable[(ino ^ dev) % NR_INODE_HASHTABLE]);
+}
+
 /* get the inode from the (source) inode # */
 struct erofs_inode *erofs_iget(dev_t dev, ino_t ino)
 {
@@ -976,9 +982,7 @@ static int erofs_fill_inode(struct erofs_inode *inode, struct stat *st,
                inode->inode_isize = sizeof(struct erofs_inode_compact);
        }
 
-       list_add(&inode->i_hash,
-                &inode_hashtable[(st->st_ino ^ st->st_dev) %
-                                 NR_INODE_HASHTABLE]);
+       erofs_insert_ihash(inode, st->st_dev, st->st_ino);
        return 0;
 }