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
0d265379
Commit
0d265379
authored
Feb 06, 2002
by
Alexander Viro
Committed by
Linus Torvalds
Feb 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] (8/9) more ->get_sb() stuff
More ->get_sb() patches: autofs4
parent
1cc86697
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
6 deletions
+15
-6
fs/autofs4/autofs_i.h
fs/autofs4/autofs_i.h
+1
-1
fs/autofs4/init.c
fs/autofs4/init.c
+11
-1
fs/autofs4/inode.c
fs/autofs4/inode.c
+3
-4
No files found.
fs/autofs4/autofs_i.h
View file @
0d265379
...
...
@@ -144,7 +144,7 @@ extern struct file_operations autofs4_root_operations;
/* Initializing function */
struct
super_block
*
autofs4_read_super
(
struct
super_block
*
,
void
*
,
int
);
int
autofs4_fill_super
(
struct
super_block
*
,
void
*
,
int
);
struct
autofs_info
*
autofs4_init_ino
(
struct
autofs_info
*
,
struct
autofs_sb_info
*
sbi
,
mode_t
mode
);
/* Queue management functions */
...
...
fs/autofs4/init.c
View file @
0d265379
...
...
@@ -14,7 +14,17 @@
#include <linux/init.h>
#include "autofs_i.h"
static
DECLARE_FSTYPE
(
autofs_fs_type
,
"autofs"
,
autofs4_read_super
,
0
);
static
struct
super_block
*
autofs_get_sb
(
struct
file_system_type
*
fs_type
,
int
flags
,
char
*
dev_name
,
void
*
data
)
{
return
get_sb_nodev
(
fs_type
,
flags
,
data
,
autofs4_fill_super
);
}
static
struct
file_system_type
autofs_fs_type
=
{
owner:
THIS_MODULE
,
name:
"autofs"
,
get_sb:
autofs_get_sb
,
};
static
int
__init
init_autofs4_fs
(
void
)
{
...
...
fs/autofs4/inode.c
View file @
0d265379
...
...
@@ -173,8 +173,7 @@ static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi)
return
ino
;
}
struct
super_block
*
autofs4_read_super
(
struct
super_block
*
s
,
void
*
data
,
int
silent
)
int
autofs4_fill_super
(
struct
super_block
*
s
,
void
*
data
,
int
silent
)
{
struct
inode
*
root_inode
;
struct
dentry
*
root
;
...
...
@@ -251,7 +250,7 @@ struct super_block *autofs4_read_super(struct super_block *s, void *data,
* Success! Install the root dentry now to indicate completion.
*/
s
->
s_root
=
root
;
return
s
;
return
0
;
/*
* Failure ... clean up.
...
...
@@ -278,7 +277,7 @@ struct super_block *autofs4_read_super(struct super_block *s, void *data,
fail_free:
kfree
(
sbi
);
fail_unlock:
return
NUL
L
;
return
-
EINVA
L
;
}
static
int
autofs4_statfs
(
struct
super_block
*
sb
,
struct
statfs
*
buf
)
...
...
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