Symbol: O_LARGEFILE
block/bdev.c
1055
blockdev_mnt, "", flags | O_LARGEFILE, &def_blk_fops);
block/bdev.c
986
bdev_file->f_flags |= O_LARGEFILE;
drivers/block/zram/zram_drv.c
755
backing_dev = filp_open(file_name, O_RDWR | O_LARGEFILE | O_EXCL, 0);
drivers/gpu/drm/i915/gem/i915_gem_shmem.c
542
filp->f_flags |= O_LARGEFILE;
drivers/mtd/nand/raw/nandsim.c
542
cfile = filp_open(cache_file, O_CREAT | O_RDWR | O_LARGEFILE, 0600);
drivers/nvme/target/io-cmd-file.c
35
int flags = O_RDWR | O_LARGEFILE;
drivers/target/target_core_file.c
124
flags = O_RDWR | O_CREAT | O_LARGEFILE | O_DSYNC;
drivers/target/target_core_file.c
829
int ret, flags = O_RDWR | O_CREAT | O_LARGEFILE | O_DSYNC;
drivers/usb/gadget/function/storage_common.c
194
filp = filp_open(filename, O_RDWR | O_LARGEFILE, 0);
drivers/usb/gadget/function/storage_common.c
199
filp = filp_open(filename, O_RDONLY | O_LARGEFILE, 0);
fs/9p/vfs_inode_dotl.c
177
{ O_LARGEFILE, P9_DOTL_LARGEFILE },
fs/cachefiles/namei.c
427
O_RDWR | O_LARGEFILE | O_DIRECT,
fs/cachefiles/namei.c
534
file = kernel_file_open(&path, O_RDWR | O_LARGEFILE | O_DIRECT, cache->cache_cred);
fs/coredump.c
884
int open_flags = O_CREAT | O_WRONLY | O_NOFOLLOW | O_LARGEFILE | O_EXCL;
fs/ecryptfs/kthread.c
123
int flags = O_LARGEFILE;
fs/ecryptfs/kthread.c
63
(O_RDWR | O_LARGEFILE), current_cred());
fs/erofs/super.c
149
filp_open(dif->path, O_RDONLY | O_LARGEFILE, 0) :
fs/erofs/super.c
757
file = filp_open(fc->source, O_RDONLY | O_LARGEFILE, 0);
fs/exec.c
773
.open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
fs/fhandle.c
458
flags |= O_LARGEFILE;
fs/hfsplus/inode.c
275
if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
fs/nfsd/nfs4proc.c
212
oflags = O_CREAT | O_LARGEFILE;
fs/nfsd/vfs.c
904
int flags = O_RDONLY|O_LARGEFILE;
fs/nfsd/vfs.c
923
flags = O_RDWR|O_LARGEFILE;
fs/nfsd/vfs.c
925
flags = O_WRONLY|O_LARGEFILE;
fs/notify/fanotify/fanotify_user.c
1690
event_f_flags |= O_LARGEFILE;
fs/notify/fanotify/fanotify_user.c
203
O_LARGEFILE | O_NOATIME )
fs/open.c
1381
flags |= O_LARGEFILE;
fs/open.c
1389
flags |= O_LARGEFILE;
fs/open.c
1415
tmp.flags |= O_LARGEFILE;
fs/open.c
1451
flags |= O_LARGEFILE;
fs/open.c
1547
if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
fs/open.c
178
!(file->f_flags & O_LARGEFILE) && !(flags & FTRUNCATE_LFS))
fs/overlayfs/copy_up.c
250
new_file = ovl_path_open(path, O_LARGEFILE | O_RDONLY);
fs/overlayfs/copy_up.c
279
old_file = ovl_path_open(&datapath, O_LARGEFILE | O_RDONLY);
fs/overlayfs/copy_up.c
648
new_file = ovl_path_open(temp, O_LARGEFILE | O_WRONLY);
fs/overlayfs/inode.c
609
flags |= O_LARGEFILE;
fs/overlayfs/overlayfs.h
407
mode, O_LARGEFILE | O_WRONLY,
fs/overlayfs/readdir.c
379
realfile = ovl_path_open(realpath, O_RDONLY | O_LARGEFILE);
fs/overlayfs/readdir.c
959
return ovl_path_open(realpath, O_RDONLY | (file->f_flags & O_LARGEFILE));
fs/overlayfs/util.c
663
if (flags & ~(O_ACCMODE | O_LARGEFILE))
fs/pidfs.c
957
if (oflags & ~(VALID_FILE_HANDLE_OPEN_FLAGS | O_LARGEFILE))
fs/pidfs.c
977
return pidfs_dentry_open(path, oflags & ~O_LARGEFILE, current_cred());
fs/read_write.c
1724
if (!(file->f_flags & O_LARGEFILE))
fs/smb/server/smb2pdu.c
2390
int oflags = O_NONBLOCK | O_LARGEFILE;
fs/smb/server/vfs.c
1136
int flags = O_RDONLY | O_LARGEFILE;
fs/xfs/xfs_handle.c
256
hreq->oflags |= O_LARGEFILE;
fs/zonefs/file.c
416
if (!(file->f_flags & O_LARGEFILE))
include/linux/fcntl.h
13
FASYNC | O_DIRECT | O_LARGEFILE | O_DIRECTORY | O_NOFOLLOW | \
include/trace/misc/fs.h
36
{ O_LARGEFILE, "O_LARGEFILE" }, \
include/uapi/asm-generic/fcntl.h
53
#ifndef O_LARGEFILE
init/initramfs.c
390
int openflags = O_WRONLY|O_CREAT|O_LARGEFILE;
init/initramfs.c
706
file = filp_open("/initrd.image", O_WRONLY|O_CREAT|O_LARGEFILE, 0700);
io_uring/openclose.c
66
open->how.flags |= O_LARGEFILE;
kernel/acct.c
219
const int open_flags = O_WRONLY|O_APPEND|O_LARGEFILE;
kernel/trace/trace_syscalls.c
172
{ O_LARGEFILE, "O_LARGEFILE" },
kernel/trace/trace_syscalls.c
424
"{ 0x%x, \"O_LARGEFILE\" }, ", O_LARGEFILE);
mm/memfd.c
486
file->f_flags |= O_LARGEFILE;
mm/secretmem.c
201
O_RDWR | O_LARGEFILE, &secretmem_fops);
mm/swapfile.c
3079
victim = file_open_name(pathname, O_RDWR|O_LARGEFILE, 0);
mm/swapfile.c
3629
swap_file = file_open_name(name, O_RDWR | O_LARGEFILE | O_EXCL, 0);
tools/include/nolibc/fcntl.h
17
#define __nolibc_open_flags(_flags) ((_flags) | O_LARGEFILE)
tools/testing/selftests/filesystems/openat2/openat2_test.c
189
.how.flags = O_PATH | O_LARGEFILE, .err = -EINVAL },
tools/testing/selftests/filesystems/openat2/openat2_test.c
281
if (!(test->how.flags & O_LARGEFILE))
tools/testing/selftests/filesystems/openat2/openat2_test.c
282
fdflags &= ~O_LARGEFILE;
usr/gen_init_cpio.c
677
O_WRONLY | O_CREAT | O_LARGEFILE | O_TRUNC,
virt/kvm/guest_memfd.c
607
file->f_flags |= O_LARGEFILE;