ocfs2: remove parameter parent_fe_bh from __ocfs2_mknod_locked
authorSu Yue <glass.su@suse.com>
Mon, 6 Jan 2025 14:06:34 +0000 (22:06 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Sat, 25 Jan 2025 06:47:24 +0000 (22:47 -0800)
The parameter is not used in __ocfs2_mknod_locked().  So remove it.

No functional change.

Link: https://lkml.kernel.org/r/20250106140634.92241-1-glass.su@suse.com
Signed-off-by: Su Yue <glass.su@suse.com>
Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
Cc: Mark Fasheh <mark@fasheh.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Changwei Ge <gechangwei@live.cn>
Cc: Jun Piao <piaojun@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/ocfs2/namei.c

index 5550f8afa43802d47a41b5f8c0bf402d582af230..0ec63a1a94b873c52f222235d9ee83a22281a564 100644 (file)
@@ -508,7 +508,6 @@ static int __ocfs2_mknod_locked(struct inode *dir,
                                struct inode *inode,
                                dev_t dev,
                                struct buffer_head **new_fe_bh,
-                               struct buffer_head *parent_fe_bh,
                                handle_t *handle,
                                struct ocfs2_alloc_context *inode_ac,
                                u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit)
@@ -641,8 +640,8 @@ static int ocfs2_mknod_locked(struct ocfs2_super *osb,
        }
 
        return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh,
-                                   parent_fe_bh, handle, inode_ac,
-                                   fe_blkno, suballoc_loc, suballoc_bit);
+                                   handle, inode_ac, fe_blkno,
+                                   suballoc_loc, suballoc_bit);
 }
 
 static int ocfs2_mkdir(struct mnt_idmap *idmap,
@@ -2576,7 +2575,7 @@ int ocfs2_create_inode_in_orphan(struct inode *dir,
        clear_nlink(inode);
        /* do the real work now. */
        status = __ocfs2_mknod_locked(dir, inode,
-                                     0, &new_di_bh, parent_di_bh, handle,
+                                     0, &new_di_bh, handle,
                                      inode_ac, di_blkno, suballoc_loc,
                                      suballoc_bit);
        if (status < 0) {