| /OK3568_Linux_fs/u-boot/test/fs/ |
| H A D | fat-noncontig-test.sh | 65 for prereq in fallocate mkfs.fat dd crc32; do 76 fallocate -l 40M ${img} 78 echo fallocate failed - using dd instead
|
| H A D | fs-test.sh | 117 fallocate -l 3G "$1" &> /dev/null 119 echo fallocate failed - using dd instead
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | fcntl-linux.h | 414 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len); 417 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset, 421 # define fallocate fallocate64 macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | fcntl-linux.h | 414 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len); 417 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset, 421 # define fallocate fallocate64 macro
|
| /OK3568_Linux_fs/kernel/fs/cifs/ |
| H A D | cifsfs.c | 298 if (server->ops->fallocate) in cifs_fallocate() 299 return server->ops->fallocate(file, tcon, mode, off, len); in cifs_fallocate() 1257 .fallocate = cifs_fallocate, 1277 .fallocate = cifs_fallocate, 1297 .fallocate = cifs_fallocate, 1315 .fallocate = cifs_fallocate, 1333 .fallocate = cifs_fallocate, 1351 .fallocate = cifs_fallocate,
|
| /OK3568_Linux_fs/buildroot/support/testing/tests/package/ |
| H A D | sample_bmap_tools.sh | 10 fallocate -d disk.img
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/memfd/ |
| H A D | memfd_test.c | 397 r = fallocate(fd, in mfd_assert_write() 462 r = fallocate(fd, in mfd_fail_write() 519 r = fallocate(fd, in mfd_assert_grow() 541 r = fallocate(fd, in mfd_fail_grow()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/mincore/ |
| H A D | mincore_selftest.c | 219 retval = fallocate(fd, 0, 0, FILE_SIZE); in TEST() 321 retval = fallocate(fd, 0, 0, FILE_SIZE); in TEST()
|
| /OK3568_Linux_fs/buildroot/package/fio/ |
| H A D | Config.in | 8 # fio uses fallocate() which becomes fallocate64() while compiling with
|
| /OK3568_Linux_fs/buildroot/package/util-linux/ |
| H A D | util-linux.mk | 131 $(if $(BR2_PACKAGE_UTIL_LINUX_FALLOCATE),--enable-fallocate,--disable-fallocate) \
|
| /OK3568_Linux_fs/buildroot/package/e2fsprogs/ |
| H A D | Config.in | 49 depends on !BR2_nios2 # fallocate not implemented
|
| /OK3568_Linux_fs/kernel/arch/sparc/kernel/ |
| H A D | sys_sparc32.c | 232 COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode, u32, offhi, u32, offlo, in COMPAT_SYSCALL_DEFINE6() argument
|
| /OK3568_Linux_fs/kernel/ipc/ |
| H A D | shm.c | 631 if (!sfd->file->f_op->fallocate) in shm_fallocate() 633 return sfd->file->f_op->fallocate(file, mode, offset, len); in shm_fallocate() 652 .fallocate = shm_fallocate, 665 .fallocate = shm_fallocate,
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | open.c | 306 if (!file->f_op->fallocate) in vfs_fallocate() 310 ret = file->f_op->fallocate(file, mode, offset, len); in vfs_fallocate() 339 SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len) in SYSCALL_DEFINE4() argument
|
| /OK3568_Linux_fs/kernel/arch/parisc/kernel/syscalls/ |
| H A D | syscall.tbl | 345 305 32 fallocate parisc_fallocate 346 305 64 fallocate sys_fallocate
|
| /OK3568_Linux_fs/kernel/drivers/target/ |
| H A D | target_core_file.c | 581 if (!file->f_op->fallocate) in fd_execute_unmap() 584 ret = file->f_op->fallocate(file, mode, pos, len); in fd_execute_unmap()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/util-linux/ |
| H A D | util-linux_2.37.4.bb | 222 ALTERNATIVE_LINK_NAME[fallocate] = "${bindir}/fallocate"
|
| /OK3568_Linux_fs/kernel/fs/nfs/ |
| H A D | nfs4file.c | 465 .fallocate = nfs42_fallocate,
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/vm/ |
| H A D | userfaultfd.c | 224 if (fallocate(huge_fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, in hugetlb_release_pages() 1532 if (fallocate(shm_fd, in main()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | vfat.rst | 228 when using fallocate with FALLOC_FL_KEEP_SIZE. 232 the fallocated region, user should make sure to recheck fallocate
|
| /OK3568_Linux_fs/kernel/fs/gfs2/ |
| H A D | file.c | 1383 .fallocate = gfs2_fallocate, 1414 .fallocate = gfs2_fallocate,
|
| /OK3568_Linux_fs/kernel/arch/um/os-Linux/ |
| H A D | file.c | 621 int n = fallocate(fd, FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE, offset, len); in os_falloc_punch()
|
| /OK3568_Linux_fs/kernel/fs/fat/ |
| H A D | file.c | 213 .fallocate = fat_fallocate,
|
| /OK3568_Linux_fs/kernel/arch/mips/kernel/syscalls/ |
| H A D | syscall_n32.tbl | 294 283 n32 fallocate sys_fallocate
|
| /OK3568_Linux_fs/kernel/arch/ia64/kernel/syscalls/ |
| H A D | syscall.tbl | 291 279 common fallocate sys_fallocate
|