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
nexedi
linux
Commits
7c6455e3
Commit
7c6455e3
authored
Dec 13, 2011
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configfs: register_filesystem() called too early
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
988f0325
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
20 deletions
+18
-20
fs/configfs/inode.c
fs/configfs/inode.c
+1
-1
fs/configfs/mount.c
fs/configfs/mount.c
+17
-19
No files found.
fs/configfs/inode.c
View file @
7c6455e3
...
...
@@ -292,7 +292,7 @@ int __init configfs_inode_init(void)
return
bdi_init
(
&
configfs_backing_dev_info
);
}
void
__exit
configfs_inode_exit
(
void
)
void
configfs_inode_exit
(
void
)
{
bdi_destroy
(
&
configfs_backing_dev_info
);
}
fs/configfs/mount.c
View file @
7c6455e3
...
...
@@ -143,28 +143,26 @@ static int __init configfs_init(void)
goto
out
;
config_kobj
=
kobject_create_and_add
(
"config"
,
kernel_kobj
);
if
(
!
config_kobj
)
{
kmem_cache_destroy
(
configfs_dir_cachep
);
configfs_dir_cachep
=
NULL
;
goto
out
;
}
if
(
!
config_kobj
)
goto
out2
;
err
=
configfs_inode_init
();
if
(
err
)
goto
out3
;
err
=
register_filesystem
(
&
configfs_fs_type
);
if
(
err
)
{
printk
(
KERN_ERR
"configfs: Unable to register filesystem!
\n
"
);
kobject_put
(
config_kobj
);
kmem_cache_destroy
(
configfs_dir_cachep
);
configfs_dir_cachep
=
NULL
;
goto
out
;
}
if
(
err
)
goto
out4
;
err
=
configfs_inode_init
();
if
(
err
)
{
unregister_filesystem
(
&
configfs_fs_type
);
return
0
;
out4:
printk
(
KERN_ERR
"configfs: Unable to register filesystem!
\n
"
);
configfs_inode_exit
();
out3:
kobject_put
(
config_kobj
);
out2:
kmem_cache_destroy
(
configfs_dir_cachep
);
configfs_dir_cachep
=
NULL
;
}
out:
return
err
;
}
...
...
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