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
f415c511
Commit
f415c511
authored
Apr 14, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
efs: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
6234ddf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
fs/efs/super.c
fs/efs/super.c
+2
-8
No files found.
fs/efs/super.c
View file @
f415c511
...
...
@@ -74,17 +74,11 @@ static struct inode *efs_alloc_inode(struct super_block *sb)
return
&
ei
->
vfs_inode
;
}
static
void
efs_
i_callback
(
struct
rcu_head
*
head
)
static
void
efs_
free_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
efs_inode_cachep
,
INODE_INFO
(
inode
));
}
static
void
efs_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
efs_i_callback
);
}
static
void
init_once
(
void
*
foo
)
{
struct
efs_inode_info
*
ei
=
(
struct
efs_inode_info
*
)
foo
;
...
...
@@ -122,7 +116,7 @@ static int efs_remount(struct super_block *sb, int *flags, char *data)
static
const
struct
super_operations
efs_superblock_operations
=
{
.
alloc_inode
=
efs_alloc_inode
,
.
destroy_inode
=
efs_destroy
_inode
,
.
free_inode
=
efs_free
_inode
,
.
statfs
=
efs_statfs
,
.
remount_fs
=
efs_remount
,
};
...
...
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