[PATCH] make some things static
This patch makes some needlessly global identifiers static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Arjan van de Ven <arjanv@infradead.org> Acked-by: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
5e198d94dd
commit
75c96f8584
@@ -406,12 +406,12 @@ static void lease_release_private_callback(struct file_lock *fl)
|
||||
fl->fl_file->f_owner.signum = 0;
|
||||
}
|
||||
|
||||
int lease_mylease_callback(struct file_lock *fl, struct file_lock *try)
|
||||
static int lease_mylease_callback(struct file_lock *fl, struct file_lock *try)
|
||||
{
|
||||
return fl->fl_file == try->fl_file;
|
||||
}
|
||||
|
||||
struct lock_manager_operations lease_manager_ops = {
|
||||
static struct lock_manager_operations lease_manager_ops = {
|
||||
.fl_break = lease_break_callback,
|
||||
.fl_release_private = lease_release_private_callback,
|
||||
.fl_mylease = lease_mylease_callback,
|
||||
@@ -1274,7 +1274,7 @@ int fcntl_getlease(struct file *filp)
|
||||
*
|
||||
* Called with kernel lock held.
|
||||
*/
|
||||
int __setlease(struct file *filp, long arg, struct file_lock **flp)
|
||||
static int __setlease(struct file *filp, long arg, struct file_lock **flp)
|
||||
{
|
||||
struct file_lock *fl, **before, **my_before = NULL, *lease = *flp;
|
||||
struct dentry *dentry = filp->f_dentry;
|
||||
|
Reference in New Issue
Block a user