Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63369
b: refs/heads/master
c: 0af1a45
h: refs/heads/master
i:
  63367: 492f465
v: v3
  • Loading branch information
Christoph Hellwig authored and Linus Torvalds committed Jul 31, 2007
1 parent 5334153 commit bda78fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 86d0004abc87025bae1cca43c94e99a27b7bbbd6
refs/heads/master: 0af1a4504699524c876361845bc2e301ecc45d0f
2 changes: 1 addition & 1 deletion trunk/fs/gfs2/ops_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl)
*/
if (!sdp->sd_args.ar_localflocks)
return -EINVAL;
return setlease(file, arg, fl);
return generic_setlease(file, arg, fl);
}

/**
Expand Down
8 changes: 4 additions & 4 deletions trunk/fs/locks.c
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@ int fcntl_getlease(struct file *filp)
}

/**
* setlease - sets a lease on an open file
* generic_setlease - sets a lease on an open file
* @filp: file pointer
* @arg: type of lease to obtain
* @flp: input - file_lock to use, output - file_lock inserted
Expand All @@ -1334,7 +1334,7 @@ int fcntl_getlease(struct file *filp)
*
* Called with kernel lock held.
*/
int setlease(struct file *filp, long arg, struct file_lock **flp)
int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
{
struct file_lock *fl, **before, **my_before = NULL, *lease;
struct dentry *dentry = filp->f_path.dentry;
Expand Down Expand Up @@ -1419,7 +1419,7 @@ int setlease(struct file *filp, long arg, struct file_lock **flp)
out:
return error;
}
EXPORT_SYMBOL(setlease);
EXPORT_SYMBOL(generic_setlease);

/**
* vfs_setlease - sets a lease on an open file
Expand Down Expand Up @@ -1456,7 +1456,7 @@ int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
if (filp->f_op && filp->f_op->setlease)
error = filp->f_op->setlease(filp, arg, lease);
else
error = setlease(filp, arg, lease);
error = generic_setlease(filp, arg, lease);
unlock_kernel();

return error;
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ extern int vfs_cancel_lock(struct file *filp, struct file_lock *fl);
extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl);
extern int __break_lease(struct inode *inode, unsigned int flags);
extern void lease_get_mtime(struct inode *, struct timespec *time);
extern int setlease(struct file *, long, struct file_lock **);
extern int generic_setlease(struct file *, long, struct file_lock **);
extern int vfs_setlease(struct file *, long, struct file_lock **);
extern int lease_modify(struct file_lock **, int);
extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
Expand Down

0 comments on commit bda78fc

Please sign in to comment.