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
a2d1b88b
Commit
a2d1b88b
authored
Apr 15, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ext2: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
f415c511
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
fs/ext2/super.c
fs/ext2/super.c
+2
-8
No files found.
fs/ext2/super.c
View file @
a2d1b88b
...
...
@@ -192,17 +192,11 @@ static struct inode *ext2_alloc_inode(struct super_block *sb)
return
&
ei
->
vfs_inode
;
}
static
void
ext2_
i_callback
(
struct
rcu_head
*
head
)
static
void
ext2_
free_in_core_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
ext2_inode_cachep
,
EXT2_I
(
inode
));
}
static
void
ext2_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
ext2_i_callback
);
}
static
void
init_once
(
void
*
foo
)
{
struct
ext2_inode_info
*
ei
=
(
struct
ext2_inode_info
*
)
foo
;
...
...
@@ -351,7 +345,7 @@ static const struct quotactl_ops ext2_quotactl_ops = {
static
const
struct
super_operations
ext2_sops
=
{
.
alloc_inode
=
ext2_alloc_inode
,
.
destroy_inode
=
ext2_destroy
_inode
,
.
free_inode
=
ext2_free_in_core
_inode
,
.
write_inode
=
ext2_write_inode
,
.
evict_inode
=
ext2_evict_inode
,
.
put_super
=
ext2_put_super
,
...
...
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