Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
59aa0da8
Commit
59aa0da8
authored
Sep 16, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initialize namespace_sem statically
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
72c2d531
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
fs/namespace.c
fs/namespace.c
+1
-3
No files found.
fs/namespace.c
View file @
59aa0da8
...
...
@@ -39,7 +39,7 @@ static int mnt_group_start = 1;
static
struct
list_head
*
mount_hashtable
__read_mostly
;
static
struct
list_head
*
mountpoint_hashtable
__read_mostly
;
static
struct
kmem_cache
*
mnt_cache
__read_mostly
;
static
struct
rw_semaphore
namespace_sem
;
static
DECLARE_RWSEM
(
namespace_sem
)
;
/* /sys/fs */
struct
kobject
*
fs_kobj
;
...
...
@@ -2767,8 +2767,6 @@ void __init mnt_init(void)
unsigned
u
;
int
err
;
init_rwsem
(
&
namespace_sem
);
mnt_cache
=
kmem_cache_create
(
"mnt_cache"
,
sizeof
(
struct
mount
),
0
,
SLAB_HWCACHE_ALIGN
|
SLAB_PANIC
,
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment