diff options
author | Jeff Layton <jlayton@redhat.com> | 2013-06-21 08:58:11 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-06-29 12:57:39 +0400 |
commit | d4f22d19dffed6d9b50de4123f66b91875464435 (patch) | |
tree | 86efd8f02d94ad87203a0f5cc16221a83b12784c /fs | |
parent | 1a9e64a7118c5ad13dd5119da18375a5bd45b330 (diff) | |
download | talos-obmc-linux-d4f22d19dffed6d9b50de4123f66b91875464435.tar.gz talos-obmc-linux-d4f22d19dffed6d9b50de4123f66b91875464435.zip |
locks: make generic_add_lease and generic_delete_lease static
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Acked-by: J. Bruce Fields <bfields@fieldses.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/locks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/locks.c b/fs/locks.c index d732e2226f17..804bb9e01a65 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -1337,7 +1337,7 @@ int fcntl_getlease(struct file *filp) return type; } -int generic_add_lease(struct file *filp, long arg, struct file_lock **flp) +static int generic_add_lease(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; @@ -1402,7 +1402,7 @@ out: return error; } -int generic_delete_lease(struct file *filp, struct file_lock **flp) +static int generic_delete_lease(struct file *filp, struct file_lock **flp) { struct file_lock *fl, **before; struct dentry *dentry = filp->f_path.dentry; |