diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-08-26 12:55:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-26 21:10:02 -0400 |
commit | f6d2ac5ca79d1fd468dbc77e488aec06e86f3035 (patch) | |
tree | 9ce5f1db9c7e0277cc9672596ea4691da0fd7bb9 /fs/namei.c | |
parent | c6f3d81115989e274c42a852222b80d2e14ced6f (diff) | |
download | linux-f6d2ac5ca79d1fd468dbc77e488aec06e86f3035.tar.bz2 |
namei.c: fix BS comment
get_write_access() is needed for nfsd, not binfmt_aout (the latter
has no business doing anything of that kind, of course)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c index dd1ed1b8e98e..c5b85b3523c0 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -3971,7 +3971,7 @@ EXPORT_SYMBOL(user_path_at); EXPORT_SYMBOL(follow_down_one); EXPORT_SYMBOL(follow_down); EXPORT_SYMBOL(follow_up); -EXPORT_SYMBOL(get_write_access); /* binfmt_aout */ +EXPORT_SYMBOL(get_write_access); /* nfsd */ EXPORT_SYMBOL(getname); EXPORT_SYMBOL(lock_rename); EXPORT_SYMBOL(lookup_one_len); |