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
07958f9f
Commit
07958f9f
authored
Jun 07, 2010
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
->delete_inode() is gone
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
0930fcc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
fs/inode.c
fs/inode.c
+0
-2
include/linux/fs.h
include/linux/fs.h
+0
-1
No files found.
fs/inode.c
View file @
07958f9f
...
...
@@ -335,8 +335,6 @@ static void evict(struct inode *inode, int delete)
if
(
op
->
evict_inode
)
{
op
->
evict_inode
(
inode
);
}
else
if
(
delete
&&
op
->
delete_inode
)
{
op
->
delete_inode
(
inode
);
}
else
{
if
(
inode
->
i_data
.
nrpages
)
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
...
...
include/linux/fs.h
View file @
07958f9f
...
...
@@ -1564,7 +1564,6 @@ struct super_operations {
int
(
*
write_inode
)
(
struct
inode
*
,
struct
writeback_control
*
wbc
);
void
(
*
drop_inode
)
(
struct
inode
*
);
void
(
*
evict_inode
)
(
struct
inode
*
);
void
(
*
delete_inode
)
(
struct
inode
*
);
void
(
*
put_super
)
(
struct
super_block
*
);
void
(
*
write_super
)
(
struct
super_block
*
);
int
(
*
sync_fs
)(
struct
super_block
*
sb
,
int
wait
);
...
...
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