diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2008-12-10 18:37:28 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-12-31 18:07:42 -0500 |
commit | 1239f26c05899f1f3c541b41e719c59d58038786 (patch) | |
tree | f9b96535e345faa4bacff85eddbb2f81c85938a9 /fs/namei.c | |
parent | 18d8fda7c3c9439be04d7ea2e82da2513b121acb (diff) | |
download | kernel_samsung_smdk4412-1239f26c05899f1f3c541b41e719c59d58038786.zip kernel_samsung_smdk4412-1239f26c05899f1f3c541b41e719c59d58038786.tar.gz kernel_samsung_smdk4412-1239f26c05899f1f3c541b41e719c59d58038786.tar.bz2 |
make INIT_FS use the __RW_LOCK_UNLOCKED initialization
[AV: rediffed on top of unification of init_fs]
Initialization of init_fs still uses the deprecated RW_LOCK_UNLOCKED macro.
This patch updates it to use the __RW_LOCK_UNLOCKED(lock) macro.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
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
@@ -2897,6 +2897,6 @@ EXPORT_SYMBOL(generic_readlink); /* to be mentioned only in INIT_TASK */ struct fs_struct init_fs = { .count = ATOMIC_INIT(1), - .lock = RW_LOCK_UNLOCKED, + .lock = __RW_LOCK_UNLOCKED(init_fs.lock), .umask = 0022, }; |