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
98835e88
Commit
98835e88
authored
Apr 15, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ufs: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d984892b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
fs/ufs/super.c
fs/ufs/super.c
+2
-8
No files found.
fs/ufs/super.c
View file @
98835e88
...
...
@@ -1449,17 +1449,11 @@ static struct inode *ufs_alloc_inode(struct super_block *sb)
return
&
ei
->
vfs_inode
;
}
static
void
ufs_
i_callback
(
struct
rcu_head
*
head
)
static
void
ufs_
free_in_core_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
ufs_inode_cachep
,
UFS_I
(
inode
));
}
static
void
ufs_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
ufs_i_callback
);
}
static
void
init_once
(
void
*
foo
)
{
struct
ufs_inode_info
*
ei
=
(
struct
ufs_inode_info
*
)
foo
;
...
...
@@ -1494,7 +1488,7 @@ static void destroy_inodecache(void)
static
const
struct
super_operations
ufs_super_ops
=
{
.
alloc_inode
=
ufs_alloc_inode
,
.
destroy_inode
=
ufs_destroy
_inode
,
.
free_inode
=
ufs_free_in_core
_inode
,
.
write_inode
=
ufs_write_inode
,
.
evict_inode
=
ufs_evict_inode
,
.
put_super
=
ufs_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