Home
last modified time | relevance | path

Searched refs:scops (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/fs/kernfs/
Dmount.c28 struct kernfs_syscall_ops *scops = root->syscall_ops; in kernfs_sop_remount_fs() local
30 if (scops && scops->remount_fs) in kernfs_sop_remount_fs()
31 return scops->remount_fs(root, flags, data); in kernfs_sop_remount_fs()
38 struct kernfs_syscall_ops *scops = root->syscall_ops; in kernfs_sop_show_options() local
40 if (scops && scops->show_options) in kernfs_sop_show_options()
41 return scops->show_options(sf, root); in kernfs_sop_show_options()
49 struct kernfs_syscall_ops *scops = root->syscall_ops; in kernfs_sop_show_path() local
51 if (scops && scops->show_path) in kernfs_sop_show_path()
52 return scops->show_path(sf, node, root); in kernfs_sop_show_path()
Ddir.c951 struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops, in kernfs_create_root() argument
977 root->syscall_ops = scops; in kernfs_create_root()
1113 struct kernfs_syscall_ops *scops = kernfs_root(parent)->syscall_ops; in kernfs_iop_mkdir() local
1116 if (!scops || !scops->mkdir) in kernfs_iop_mkdir()
1122 ret = scops->mkdir(parent, dentry->d_name.name, mode); in kernfs_iop_mkdir()
1131 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops; in kernfs_iop_rmdir() local
1134 if (!scops || !scops->rmdir) in kernfs_iop_rmdir()
1140 ret = scops->rmdir(kn); in kernfs_iop_rmdir()
1152 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops; in kernfs_iop_rename() local
1158 if (!scops || !scops->rename) in kernfs_iop_rename()
[all …]
/Linux-v4.19/include/linux/
Dkernfs.h323 struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
413 kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags, in kernfs_create_root() argument