mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 12:44:11 +08:00
xfs: directly call xfs_generic_create() for ->create() and ->mkdir()
The current create and mkdir handlers both call the xfs_vn_mknod() which is a wrapper routine around xfs_generic_create() function. Actually the create and mkdir handlers can directly call xfs_generic_create() function and reduce the call chain. Signed-off-by: Kaixu Xia <kaixuxia@tencent.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
parent
d7884e6e90
commit
c9c626b354
@ -237,7 +237,7 @@ xfs_vn_create(
|
||||
umode_t mode,
|
||||
bool flags)
|
||||
{
|
||||
return xfs_vn_mknod(dir, dentry, mode, 0);
|
||||
return xfs_generic_create(dir, dentry, mode, 0, false);
|
||||
}
|
||||
|
||||
STATIC int
|
||||
@ -246,7 +246,7 @@ xfs_vn_mkdir(
|
||||
struct dentry *dentry,
|
||||
umode_t mode)
|
||||
{
|
||||
return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
|
||||
return xfs_generic_create(dir, dentry, mode | S_IFDIR, 0, false);
|
||||
}
|
||||
|
||||
STATIC struct dentry *
|
||||
|
Loading…
Reference in New Issue
Block a user