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
594ece65
Commit
594ece65
authored
Mar 12, 2002
by
Alexander Viro
Committed by
Linus Torvalds
Mar 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] (2/4) smarter nfs_get_sb()
Export sget(9), deactivate_super(9) and set_anon_sb(9)
parent
d5e9d67b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
include/linux/fs.h
include/linux/fs.h
+5
-0
kernel/ksyms.c
kernel/ksyms.c
+2
-0
No files found.
include/linux/fs.h
View file @
594ece65
...
...
@@ -953,6 +953,11 @@ void kill_block_super(struct super_block *sb);
void
kill_anon_super
(
struct
super_block
*
sb
);
void
kill_litter_super
(
struct
super_block
*
sb
);
void
deactivate_super
(
struct
super_block
*
sb
);
int
set_anon_super
(
struct
super_block
*
s
,
void
*
data
);
struct
super_block
*
sget
(
struct
file_system_type
*
type
,
int
(
*
test
)(
struct
super_block
*
,
void
*
),
int
(
*
set
)(
struct
super_block
*
,
void
*
),
void
*
data
);
/* Alas, no aliases. Too much hassle with bringing module.h everywhere */
#define fops_get(fops) \
...
...
kernel/ksyms.c
View file @
594ece65
...
...
@@ -292,6 +292,8 @@ EXPORT_SYMBOL(get_sb_single);
EXPORT_SYMBOL
(
kill_anon_super
);
EXPORT_SYMBOL
(
kill_litter_super
);
EXPORT_SYMBOL
(
deactivate_super
);
EXPORT_SYMBOL
(
sget
);
EXPORT_SYMBOL
(
set_anon_super
);
/* for stackable file systems (lofs, wrapfs, cryptfs, etc.) */
EXPORT_SYMBOL
(
default_llseek
);
...
...
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