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
f9ec991d
Commit
f9ec991d
authored
Apr 15, 2019
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fat: switch to ->free_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d01718a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
fs/fat/inode.c
fs/fat/inode.c
+2
-8
No files found.
fs/fat/inode.c
View file @
f9ec991d
...
...
@@ -746,17 +746,11 @@ static struct inode *fat_alloc_inode(struct super_block *sb)
return
&
ei
->
vfs_inode
;
}
static
void
fat_
i_callback
(
struct
rcu_head
*
head
)
static
void
fat_
free_inode
(
struct
inode
*
inode
)
{
struct
inode
*
inode
=
container_of
(
head
,
struct
inode
,
i_rcu
);
kmem_cache_free
(
fat_inode_cachep
,
MSDOS_I
(
inode
));
}
static
void
fat_destroy_inode
(
struct
inode
*
inode
)
{
call_rcu
(
&
inode
->
i_rcu
,
fat_i_callback
);
}
static
void
init_once
(
void
*
foo
)
{
struct
msdos_inode_info
*
ei
=
(
struct
msdos_inode_info
*
)
foo
;
...
...
@@ -920,7 +914,7 @@ EXPORT_SYMBOL_GPL(fat_sync_inode);
static
int
fat_show_options
(
struct
seq_file
*
m
,
struct
dentry
*
root
);
static
const
struct
super_operations
fat_sops
=
{
.
alloc_inode
=
fat_alloc_inode
,
.
destroy_inode
=
fat_destroy
_inode
,
.
free_inode
=
fat_free
_inode
,
.
write_inode
=
fat_write_inode
,
.
evict_inode
=
fat_evict_inode
,
.
put_super
=
fat_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