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
9fbc0007
Commit
9fbc0007
authored
Apr 15, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dlmfs: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
977c3d18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
fs/ocfs2/dlmfs/dlmfs.c
fs/ocfs2/dlmfs/dlmfs.c
+2
-8
No files found.
fs/ocfs2/dlmfs/dlmfs.c
View file @
9fbc0007
...
...
@@ -349,17 +349,11 @@ static struct inode *dlmfs_alloc_inode(struct super_block *sb)
return
&
ip
->
ip_vfs_inode
;
}
static
void
dlmfs_
i_callback
(
struct
rcu_head
*
head
)
static
void
dlmfs_
free_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
dlmfs_inode_cache
,
DLMFS_I
(
inode
));
}
static
void
dlmfs_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
dlmfs_i_callback
);
}
static
void
dlmfs_evict_inode
(
struct
inode
*
inode
)
{
int
status
;
...
...
@@ -605,7 +599,7 @@ static const struct inode_operations dlmfs_root_inode_operations = {
static
const
struct
super_operations
dlmfs_ops
=
{
.
statfs
=
simple_statfs
,
.
alloc_inode
=
dlmfs_alloc_inode
,
.
destroy_inode
=
dlmfs_destroy
_inode
,
.
free_inode
=
dlmfs_free
_inode
,
.
evict_inode
=
dlmfs_evict_inode
,
.
drop_inode
=
generic_delete_inode
,
};
...
...
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