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
6996f39f
Commit
6996f39f
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] (3/9) more ->get_sb() stuff
More ->get_sb() patches: pipefs
parent
d90464e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
fs/pipe.c
fs/pipe.c
+15
-5
No files found.
fs/pipe.c
View file @
6996f39f
...
...
@@ -600,7 +600,7 @@ static struct super_operations pipefs_ops = {
statfs:
pipefs_statfs
,
};
static
struct
super_block
*
pipefs_read
_super
(
struct
super_block
*
sb
,
void
*
data
,
int
silent
)
static
int
pipefs_fill
_super
(
struct
super_block
*
sb
,
void
*
data
,
int
silent
)
{
struct
inode
*
root
;
...
...
@@ -610,22 +610,32 @@ static struct super_block * pipefs_read_super(struct super_block *sb, void *data
sb
->
s_op
=
&
pipefs_ops
;
root
=
new_inode
(
sb
);
if
(
!
root
)
return
NULL
;
return
-
ENOMEM
;
root
->
i_mode
=
S_IFDIR
|
S_IRUSR
|
S_IWUSR
;
root
->
i_uid
=
root
->
i_gid
=
0
;
root
->
i_atime
=
root
->
i_mtime
=
root
->
i_ctime
=
CURRENT_TIME
;
sb
->
s_root
=
d_alloc
(
NULL
,
&
(
const
struct
qstr
)
{
"pipe:"
,
5
,
0
});
if
(
!
sb
->
s_root
)
{
iput
(
root
);
return
NULL
;
return
-
ENOMEM
;
}
sb
->
s_root
->
d_sb
=
sb
;
sb
->
s_root
->
d_parent
=
sb
->
s_root
;
d_instantiate
(
sb
->
s_root
,
root
);
return
sb
;
return
0
;
}
static
DECLARE_FSTYPE
(
pipe_fs_type
,
"pipefs"
,
pipefs_read_super
,
FS_NOMOUNT
);
static
struct
super_block
*
pipefs_get_sb
(
struct
file_system_type
*
fs_type
,
int
flags
,
char
*
dev_name
,
void
*
data
)
{
return
get_sb_nodev
(
fs_type
,
flags
,
data
,
pipefs_fill_super
);
}
static
struct
file_system_type
pipe_fs_type
=
{
name:
"pipefs"
,
get_sb:
pipefs_get_sb
,
fs_flags:
FS_NOMOUNT
,
};
static
int
__init
init_pipe_fs
(
void
)
{
...
...
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