}
 
 /* We already had a lease on this file; just change its type */
-int lease_modify(struct file_lock **before, int arg, struct list_head *dispose)
+int lease_modify(struct file_lock *fl, int arg, struct list_head *dispose)
 {
-       struct file_lock *fl = *before;
        int error = assign_type(fl, arg);
 
        if (error)
        list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list) {
                trace_time_out_leases(inode, fl);
                if (past_time(fl->fl_downgrade_time))
-                       lease_modify(&fl, F_RDLCK, dispose);
+                       lease_modify(fl, F_RDLCK, dispose);
                if (past_time(fl->fl_break_time))
-                       lease_modify(&fl, F_UNLCK, dispose);
+                       lease_modify(fl, F_UNLCK, dispose);
        }
 }
 
        }
 
        if (my_fl != NULL) {
-               error = lease->fl_lmops->lm_change(&my_fl, arg, &dispose);
+               error = lease->fl_lmops->lm_change(my_fl, arg, &dispose);
                if (error)
                        goto out;
                goto out_setup;
        }
        trace_generic_delete_lease(inode, fl);
        if (victim)
-               error = fl->fl_lmops->lm_change(&victim, F_UNLCK, &dispose);
+               error = fl->fl_lmops->lm_change(victim, F_UNLCK, &dispose);
        spin_unlock(&ctx->flc_lock);
        locks_dispose_list(&dispose);
        return error;
 
        spin_lock(&ctx->flc_lock);
        list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list)
-               lease_modify(&fl, F_UNLCK, &dispose);
+               lease_modify(fl, F_UNLCK, &dispose);
        spin_unlock(&ctx->flc_lock);
        locks_dispose_list(&dispose);
 }
 
        void (*lm_notify)(struct file_lock *);  /* unblock callback */
        int (*lm_grant)(struct file_lock *, int);
        bool (*lm_break)(struct file_lock *);
-       int (*lm_change)(struct file_lock **, int, struct list_head *);
+       int (*lm_change)(struct file_lock *, int, struct list_head *);
        void (*lm_setup)(struct file_lock *, void **);
 };
 
 extern void lease_get_mtime(struct inode *, struct timespec *time);
 extern int generic_setlease(struct file *, long, struct file_lock **, void **priv);
 extern int vfs_setlease(struct file *, long, struct file_lock **, void **);
-extern int lease_modify(struct file_lock **, int, struct list_head *);
+extern int lease_modify(struct file_lock *, int, struct list_head *);
 #else /* !CONFIG_FILE_LOCKING */
 static inline int fcntl_getlk(struct file *file, unsigned int cmd,
                              struct flock __user *user)
        return -EINVAL;
 }
 
-static inline int lease_modify(struct file_lock **before, int arg,
+static inline int lease_modify(struct file_lock *fl, int arg,
                               struct list_head *dispose)
 {
        return -EINVAL;