Symbol: dentry_open
arch/powerpc/platforms/cell/spufs/inode.c
268
FD_PREPARE(fdf, 0, dentry_open(path, O_RDONLY, current_cred()));
arch/powerpc/platforms/cell/spufs/inode.c
501
FD_PREPARE(fdf, 0, dentry_open(path, O_RDONLY, current_cred()));
drivers/tty/pty.c
600
file = dentry_open(&path, flags, current_cred());
fs/autofs/dev-ioctl.c
241
return FD_ADD(O_CLOEXEC, dentry_open(&path, O_RDONLY, current_cred()));
fs/ecryptfs/file.c
295
lower_file = dentry_open(&path, file->f_flags, current_cred());
fs/ecryptfs/kthread.c
135
(*lower_file) = dentry_open(&req.path, flags, cred);
fs/ecryptfs/kthread.c
62
*req->lower_file = dentry_open(&req->path,
fs/exportfs/expfs.c
312
file = dentry_open(path, O_RDONLY, cred);
fs/namespace.c
3082
file = dentry_open(path, O_PATH, current_cred());
fs/namespace.c
3225
return dentry_open(&path, O_PATH, current_cred());
fs/namespace.c
4498
dentry_open(&new_path, O_PATH, fc->cred));
fs/nfsd/vfs.c
927
file = dentry_open(&path, flags, current_cred());
fs/nsfs.c
112
return dentry_open(&path, O_RDONLY, current_cred());
fs/nsfs.c
133
return FD_ADD(O_CLOEXEC, dentry_open(&path, O_RDONLY, current_cred()));
fs/nsfs.c
350
FD_PREPARE(fdf, O_CLOEXEC, dentry_open(&path, O_RDONLY, current_cred()));
fs/open.c
1112
EXPORT_SYMBOL(dentry_open);
fs/overlayfs/inode.c
611
file = dentry_open(realpath, flags, current_cred());
fs/overlayfs/util.c
685
return dentry_open(path, flags, current_cred());
fs/pidfs.c
1108
pidfd_file = dentry_open(&path, flags, current_cred());
fs/pidfs.c
907
return dentry_open(path, oflags | O_RDWR, current_cred());
fs/smb/server/smb2pdu.c
3334
filp = dentry_open(&path, open_flags, current_cred());
fs/smb/server/vfs.c
1129
dfilp = dentry_open(dir, flags, current_cred());
fs/xfs/xfs_handle.c
274
FD_PREPARE(fdf, 0, dentry_open(&path, hreq->oflags, cred));
include/linux/fs.h
2470
struct file *dentry_open(const struct path *path, int flags,
include/linux/fs.h
2504
return dentry_open(&file->f_path, file->f_flags, file->f_cred);
ipc/mqueue.c
904
file = dentry_open(&path, oflag, current_cred());
kernel/acct.c
240
file = dentry_open(&internal, open_flags, current_cred());
kernel/trace/bpf_trace.c
942
BTF_ID(func, dentry_open)
net/unix/af_unix.c
3272
return FD_ADD(O_CLOEXEC, dentry_open(&unix_sk(sk)->path, O_PATH, current_cred()));
security/apparmor/file.c
736
devnull = dentry_open(&aa_null, O_RDWR, cred);
security/integrity/ima/ima_crypto.c
553
f = dentry_open(&file->f_path, flags, file->f_cred);
security/keys/big_key.c
246
file = dentry_open(&payload->path, O_RDONLY, current_cred());
security/selinux/hooks.c
2480
devnull = dentry_open(&selinux_null, O_RDWR, cred);