locks: move lease-specific code out of locks_delete_lock
authorJ. Bruce Fields <bfields@redhat.com>
Fri, 27 Jul 2012 20:18:00 +0000 (16:18 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 27 Jul 2012 20:18:00 +0000 (16:18 -0400)
No point putting something only used by one caller into common code.

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/locks.c

index 86668dd211ae07384d80235a111b832936e31a90..541075a41527003fba6cee5bbe4477b4007ce19e 100644 (file)
@@ -570,12 +570,6 @@ static void locks_delete_lock(struct file_lock **thisfl_p)
        fl->fl_next = NULL;
        list_del_init(&fl->fl_link);
 
-       fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
-       if (fl->fl_fasync != NULL) {
-               printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
-               fl->fl_fasync = NULL;
-       }
-
        if (fl->fl_nspid) {
                put_pid(fl->fl_nspid);
                fl->fl_nspid = NULL;
@@ -1150,6 +1144,11 @@ int lease_modify(struct file_lock **before, int arg)
 
                f_delown(filp);
                filp->f_owner.signum = 0;
+               fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
+               if (fl->fl_fasync != NULL) {
+                       printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
+                       fl->fl_fasync = NULL;
+               }
                locks_delete_lock(before);
        }
        return 0;
This page took 0.031402 seconds and 5 git commands to generate.