Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KED Linux Kernel Fork
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KED Software Projects
Miscellaneous
KED Linux Kernel Fork
Commits
8d8fc9cb
Commit
8d8fc9cb
authored
5 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
bfs: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
49f82a80
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/bfs/inode.c
+2
-8
2 additions, 8 deletions
fs/bfs/inode.c
with
2 additions
and
8 deletions
fs/bfs/inode.c
+
2
−
8
View file @
8d8fc9cb
...
@@ -245,17 +245,11 @@ static struct inode *bfs_alloc_inode(struct super_block *sb)
...
@@ -245,17 +245,11 @@ static struct inode *bfs_alloc_inode(struct super_block *sb)
return
&
bi
->
vfs_inode
;
return
&
bi
->
vfs_inode
;
}
}
static
void
bfs_
i_callback
(
struct
rcu_head
*
head
)
static
void
bfs_
free_inode
(
struct
inode
*
inode
)
{
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
bfs_inode_cachep
,
BFS_I
(
inode
));
kmem_cache_free
(
bfs_inode_cachep
,
BFS_I
(
inode
));
}
}
static
void
bfs_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
bfs_i_callback
);
}
static
void
init_once
(
void
*
foo
)
static
void
init_once
(
void
*
foo
)
{
{
struct
bfs_inode_info
*
bi
=
foo
;
struct
bfs_inode_info
*
bi
=
foo
;
...
@@ -287,7 +281,7 @@ static void destroy_inodecache(void)
...
@@ -287,7 +281,7 @@ static void destroy_inodecache(void)
static
const
struct
super_operations
bfs_sops
=
{
static
const
struct
super_operations
bfs_sops
=
{
.
alloc_inode
=
bfs_alloc_inode
,
.
alloc_inode
=
bfs_alloc_inode
,
.
destroy
_inode
=
bfs_
destroy
_inode
,
.
free
_inode
=
bfs_
free
_inode
,
.
write_inode
=
bfs_write_inode
,
.
write_inode
=
bfs_write_inode
,
.
evict_inode
=
bfs_evict_inode
,
.
evict_inode
=
bfs_evict_inode
,
.
put_super
=
bfs_put_super
,
.
put_super
=
bfs_put_super
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment