diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 00:58:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 08:06:00 -0700 |
commit | 07d45da616f8514651360b502314fc9554223a03 (patch) | |
tree | ac9c673a369f2ab3c0476179d4269a432a978a02 /fs/drop_caches.c | |
parent | f11b00f3bd89c91c684d56b2082d1b0241ff20ae (diff) |
fs/drop_caches.c: make 2 functions static
Make the following needlessly global functions static:
- drop_pagecache()
- drop_slab()
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/drop_caches.c')
-rw-r--r-- | fs/drop_caches.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/drop_caches.c b/fs/drop_caches.c index 59375efcf39..e2c6b6500c7 100644 --- a/fs/drop_caches.c +++ b/fs/drop_caches.c @@ -25,7 +25,7 @@ static void drop_pagecache_sb(struct super_block *sb) spin_unlock(&inode_lock); } -void drop_pagecache(void) +static void drop_pagecache(void) { struct super_block *sb; @@ -45,7 +45,7 @@ restart: spin_unlock(&sb_lock); } -void drop_slab(void) +static void drop_slab(void) { int nr_objects; |