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
bc40ddd1
Commit
bc40ddd1
authored
Apr 15, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qnx4: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
4aa6b55c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
fs/qnx4/inode.c
fs/qnx4/inode.c
+3
-9
No files found.
fs/qnx4/inode.c
View file @
bc40ddd1
...
...
@@ -28,14 +28,14 @@
static
const
struct
super_operations
qnx4_sops
;
static
struct
inode
*
qnx4_alloc_inode
(
struct
super_block
*
sb
);
static
void
qnx4_
destroy
_inode
(
struct
inode
*
inode
);
static
void
qnx4_
free
_inode
(
struct
inode
*
inode
);
static
int
qnx4_remount
(
struct
super_block
*
sb
,
int
*
flags
,
char
*
data
);
static
int
qnx4_statfs
(
struct
dentry
*
,
struct
kstatfs
*
);
static
const
struct
super_operations
qnx4_sops
=
{
.
alloc_inode
=
qnx4_alloc_inode
,
.
destroy_inode
=
qnx4_destroy
_inode
,
.
free_inode
=
qnx4_free
_inode
,
.
statfs
=
qnx4_statfs
,
.
remount_fs
=
qnx4_remount
,
};
...
...
@@ -342,17 +342,11 @@ static struct inode *qnx4_alloc_inode(struct super_block *sb)
return
&
ei
->
vfs_inode
;
}
static
void
qnx4_
i_callback
(
struct
rcu_head
*
head
)
static
void
qnx4_
free_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
qnx4_inode_cachep
,
qnx4_i
(
inode
));
}
static
void
qnx4_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
qnx4_i_callback
);
}
static
void
init_once
(
void
*
foo
)
{
struct
qnx4_inode_info
*
ei
=
(
struct
qnx4_inode_info
*
)
foo
;
...
...
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