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
33b0daaa
Commit
33b0daaa
authored
Jun 07, 2010
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch hppfs to ->evict_inode()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
f8ad850f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
fs/hppfs/hppfs.c
fs/hppfs/hppfs.c
+3
-4
No files found.
fs/hppfs/hppfs.c
View file @
33b0daaa
...
...
@@ -624,12 +624,11 @@ static struct inode *hppfs_alloc_inode(struct super_block *sb)
return
&
hi
->
vfs_inode
;
}
void
hppfs_
delete
_inode
(
struct
inode
*
ino
)
void
hppfs_
evict
_inode
(
struct
inode
*
ino
)
{
end_writeback
(
ino
);
dput
(
HPPFS_I
(
ino
)
->
proc_dentry
);
mntput
(
ino
->
i_sb
->
s_fs_info
);
clear_inode
(
ino
);
}
static
void
hppfs_destroy_inode
(
struct
inode
*
inode
)
...
...
@@ -640,7 +639,7 @@ static void hppfs_destroy_inode(struct inode *inode)
static
const
struct
super_operations
hppfs_sbops
=
{
.
alloc_inode
=
hppfs_alloc_inode
,
.
destroy_inode
=
hppfs_destroy_inode
,
.
delete_inode
=
hppfs_delete
_inode
,
.
evict_inode
=
hppfs_evict
_inode
,
.
statfs
=
hppfs_statfs
,
};
...
...
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