Searched refs:ksys_fallocate (Results 1 - 9 of 9) sorted by relevance

/linux-master/arch/arm64/kernel/
H A Dsys32.c122 return ksys_fallocate(fd, mode, arg_u64(offset), arg_u64(len));
/linux-master/arch/powerpc/kernel/
H A Dsys_ppc32.c131 return ksys_fallocate(fd, mode,
/linux-master/arch/mips/kernel/
H A Dlinux32.c132 return ksys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
/linux-master/arch/s390/kernel/
H A Dcompat_linux.c287 return ksys_fallocate(fd, mode, ((loff_t)offhigh << 32) + offlow,
/linux-master/arch/sparc/kernel/
H A Dsys_sparc32.c235 return ksys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
/linux-master/arch/x86/kernel/
H A Dsys_ia32.c123 return ksys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
/linux-master/arch/parisc/kernel/
H A Dsys_parisc.c287 return ksys_fallocate(fd, mode, ((u64)offhi << 32) | offlo,
/linux-master/fs/
H A Dopen.c347 int ksys_fallocate(int fd, int mode, loff_t offset, loff_t len) function
361 return ksys_fallocate(fd, mode, offset, len);
368 return ksys_fallocate(fd, mode, compat_arg_u64_glue(offset),
/linux-master/include/linux/
H A Dsyscalls.h1209 int ksys_fallocate(int fd, int mode, loff_t offset, loff_t len);

Completed in 217 milliseconds