Searched refs:scops (Results 1 – 2 of 2) sorted by relevance
31 struct kernfs_syscall_ops *scops = root->syscall_ops; in kernfs_sop_show_options() local33 if (scops && scops->show_options) in kernfs_sop_show_options()34 return scops->show_options(sf, root); in kernfs_sop_show_options()42 struct kernfs_syscall_ops *scops = root->syscall_ops; in kernfs_sop_show_path() local44 if (scops && scops->show_path) in kernfs_sop_show_path()45 return scops->show_path(sf, node, root); in kernfs_sop_show_path()
981 struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops, in kernfs_create_root() argument1022 root->syscall_ops = scops; in kernfs_create_root()1259 struct kernfs_syscall_ops *scops = kernfs_root(parent)->syscall_ops; in kernfs_iop_mkdir() local1262 if (!scops || !scops->mkdir) in kernfs_iop_mkdir()1268 ret = scops->mkdir(parent, dentry->d_name.name, mode); in kernfs_iop_mkdir()1277 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops; in kernfs_iop_rmdir() local1280 if (!scops || !scops->rmdir) in kernfs_iop_rmdir()1286 ret = scops->rmdir(kn); in kernfs_iop_rmdir()1299 struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops; in kernfs_iop_rename() local1305 if (!scops || !scops->rename) in kernfs_iop_rename()[all …]
Completed in 6 milliseconds