Searched refs:fl32 (Results 1 – 1 of 1) sorted by relevance
/linux-2.4.37.9/arch/x86_64/ia32/ |
D | sys_ia32.c | 1403 static inline int get_flock64(struct ia32_flock64 *fl32, struct flock *fl64) in get_flock64() argument 1405 if (access_ok(fl32, sizeof(struct ia32_flock64), VERIFY_WRITE)) { in get_flock64() 1406 int ret = __get_user(fl64->l_type, &fl32->l_type); in get_flock64() 1407 ret |= __get_user(fl64->l_whence, &fl32->l_whence); in get_flock64() 1408 ret |= __get_user(fl64->l_start, &fl32->l_start); in get_flock64() 1409 ret |= __get_user(fl64->l_len, &fl32->l_len); in get_flock64() 1410 ret |= __get_user(fl64->l_pid, &fl32->l_pid); in get_flock64() 1416 static inline int put_flock64(struct ia32_flock64 *fl32, struct flock *fl64) in put_flock64() argument 1418 if (access_ok(fl32, sizeof(struct ia32_flock64), VERIFY_WRITE)) { in put_flock64() 1419 int ret = __put_user(fl64->l_type, &fl32->l_type); in put_flock64() [all …]
|