taglinefilesource code
caller49fs/locks.cstatic int lock_it(struct file *filp, struct file_lock *caller);
caller305fs/locks.cstatic int lock_it(struct file *filp, struct file_lock *caller)
caller318fs/locks.cwhile ((fl = *before) && caller->fl_owner != fl->fl_owner)
caller325fs/locks.cwhile ((fl = *before) && caller->fl_owner == fl->fl_owner) {
caller329fs/locks.cif (caller->fl_type == fl->fl_type) {
caller330fs/locks.cif (fl->fl_end < caller->fl_start - 1)
caller336fs/locks.cif (fl->fl_start > caller->fl_end + 1)
caller345fs/locks.cif (fl->fl_start > caller->fl_start)
caller346fs/locks.cfl->fl_start = caller->fl_start;
caller348fs/locks.ccaller->fl_start = fl->fl_start;
caller349fs/locks.cif (fl->fl_end < caller->fl_end)
caller350fs/locks.cfl->fl_end = caller->fl_end;
caller352fs/locks.ccaller->fl_end = fl->fl_end;
caller357fs/locks.ccaller = fl;
caller364fs/locks.cif (fl->fl_end < caller->fl_start)
caller366fs/locks.cif (fl->fl_start > caller->fl_end)
caller368fs/locks.cif (caller->fl_type == F_UNLCK)
caller370fs/locks.cif (fl->fl_start < caller->fl_start)
caller376fs/locks.cif (fl->fl_end > caller->fl_end) {
caller380fs/locks.cif (fl->fl_start >= caller->fl_start) {
caller395fs/locks.cfl->fl_start = caller->fl_start;
caller396fs/locks.cfl->fl_end   = caller->fl_end;
caller397fs/locks.cfl->fl_type  = caller->fl_type;
caller398fs/locks.ccaller = fl;
caller409fs/locks.cif (caller->fl_type == F_UNLCK) {
caller425fs/locks.cif (! (caller = alloc_lock(before, caller)))
caller441fs/locks.cright->fl_start = caller->fl_end + 1;
caller444fs/locks.cleft->fl_end = caller->fl_start - 1;
caller615mm/mmap.cstatic void avl_check (struct task_struct * task, char *caller)
caller617mm/mmap.cavl_check_point = caller;