mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
autofs: set things up *before* registering fs type
it's not a serious race, but we really want misc device before anybody gets to mount this sucker. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
ca7068c41a
commit
54bf586e1f
1 changed files with 3 additions and 3 deletions
|
@ -31,11 +31,11 @@ static int __init init_autofs4_fs(void)
|
|||
{
|
||||
int err;
|
||||
|
||||
autofs_dev_ioctl_init();
|
||||
|
||||
err = register_filesystem(&autofs_fs_type);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
autofs_dev_ioctl_init();
|
||||
autofs_dev_ioctl_exit();
|
||||
|
||||
return err;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue