taglinefilesource code
caller_fl91fs/locks.cstatic int flock_locks_conflict(struct file_lock *caller_fl,
caller_fl93fs/locks.cstatic int posix_locks_conflict(struct file_lock *caller_fl,
caller_fl95fs/locks.cstatic int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl);
caller_fl490fs/locks.cstatic int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
caller_fl496fs/locks.c(caller_fl->fl_owner == sys_fl->fl_owner))
caller_fl499fs/locks.creturn (locks_conflict(caller_fl, sys_fl));
caller_fl505fs/locks.cstatic int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
caller_fl511fs/locks.c(caller_fl->fl_file == sys_fl->fl_file))
caller_fl514fs/locks.creturn (locks_conflict(caller_fl, sys_fl));
caller_fl520fs/locks.cstatic int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
caller_fl522fs/locks.cif (!locks_overlap(caller_fl, sys_fl))
caller_fl525fs/locks.cswitch (caller_fl->fl_type) {
caller_fl534fs/locks.ccaller_fl->fl_type);