Lines Matching refs:kfl
664 static int get_compat_flock(struct flock *kfl, const struct compat_flock __user *ufl)
670 copy_flock_fields(kfl, &fl);
674 static int get_compat_flock64(struct flock *kfl, const struct compat_flock64 __user *ufl)
680 copy_flock_fields(kfl, &fl);
684 static int put_compat_flock(const struct flock *kfl, struct compat_flock __user *ufl)
689 copy_flock_fields(&fl, kfl);
695 static int put_compat_flock64(const struct flock *kfl, struct compat_flock64 __user *ufl)
699 BUILD_BUG_ON(sizeof(kfl->l_start) > sizeof(ufl->l_start));
700 BUILD_BUG_ON(sizeof(kfl->l_len) > sizeof(ufl->l_len));
703 copy_flock_fields(&fl, kfl);