Home
last modified time | relevance | path

Searched refs:ksys_ftruncate (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/arch/powerpc/kernel/
H A Dsys_ppc32.c104 return ksys_ftruncate(fd, merge_64(len1, len2)); in PPC32_SYSCALL_DEFINE4()
/openbmc/linux/arch/parisc/kernel/
H A Dsys_parisc.c218 return ksys_ftruncate(fd, (long)high << 32 | low); in parisc_ftruncate64()
229 return ksys_ftruncate(fd, length); in sys_ftruncate64()
/openbmc/linux/arch/mips/kernel/
H A Dlinux32.c62 return ksys_ftruncate(fd, merge_64(a2, a3));
/openbmc/linux/arch/arm64/kernel/
H A Dsys32.c97 return ksys_ftruncate(fd, arg_u64(length)); in COMPAT_SYSCALL_DEFINE4()
/openbmc/linux/arch/x86/kernel/
H A Dsys_ia32.c64 return ksys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); in SYSCALL_DEFINE3()
/openbmc/linux/arch/s390/kernel/
H A Dcompat_linux.c77 return ksys_ftruncate(fd, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE3()
/openbmc/linux/arch/sparc/kernel/
H A Dsys_sparc32.c61 return ksys_ftruncate(fd, ((u64)high << 32) | low); in COMPAT_SYSCALL_DEFINE3()
/openbmc/linux/fs/
H A Dopen.c240 return ksys_ftruncate(fd, compat_arg_u64_glue(length)); in COMPAT_SYSCALL_DEFINE3()
/openbmc/linux/include/linux/
H A Dsyscalls.h1226 static inline long ksys_ftruncate(unsigned int fd, loff_t length) in ksys_ftruncate() function