Searched refs:caller_fl (Results 1 – 1 of 1) sorted by relevance
543 static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) in locks_conflict() argument545 switch (caller_fl->fl_type) { in locks_conflict()554 caller_fl->fl_type); in locks_conflict()563 static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) in posix_locks_conflict() argument569 locks_same_owner(caller_fl, sys_fl)) in posix_locks_conflict()573 if (!locks_overlap(caller_fl, sys_fl)) in posix_locks_conflict()576 return (locks_conflict(caller_fl, sys_fl)); in posix_locks_conflict()582 static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) in flock_locks_conflict() argument588 (caller_fl->fl_file == sys_fl->fl_file)) in flock_locks_conflict()591 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND)) in flock_locks_conflict()[all …]