diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-31 02:32:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 12:19:01 -0800 |
commit | a244e1698ae3609cdfe24088e1293593cb7a5278 (patch) | |
tree | 81f3e151c9b8118a3a917dd6b0d3c75556dc170b /fs/namei.c | |
parent | 0cb3463f04e771869f481e2dd44f66419e850586 (diff) | |
download | linux-3.10-a244e1698ae3609cdfe24088e1293593cb7a5278.tar.gz linux-3.10-a244e1698ae3609cdfe24088e1293593cb7a5278.tar.bz2 linux-3.10-a244e1698ae3609cdfe24088e1293593cb7a5278.zip |
[PATCH] fs/namei.c: make lookup_hash() static
As announced, lookup_hash() can now become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/namei.c b/fs/namei.c index 22f6e8d16aa..96723ae83c8 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1254,7 +1254,7 @@ out: return dentry; } -struct dentry * lookup_hash(struct nameidata *nd) +static struct dentry *lookup_hash(struct nameidata *nd) { return __lookup_hash(&nd->last, nd->dentry, nd); } @@ -2697,7 +2697,6 @@ EXPORT_SYMBOL(follow_up); EXPORT_SYMBOL(get_write_access); /* binfmt_aout */ EXPORT_SYMBOL(getname); EXPORT_SYMBOL(lock_rename); -EXPORT_SYMBOL(lookup_hash); EXPORT_SYMBOL(lookup_one_len); EXPORT_SYMBOL(page_follow_link_light); EXPORT_SYMBOL(page_put_link); |