提交 be7ce416 编写于 作者: A Al Viro

New method - evict_inode()

Hybrid of ->clear_inode() and ->delete_inode(); if present, does
all fs work to be done when in-core inode is about to be gone,
for whatever reason.
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 b4272d4c
...@@ -325,7 +325,9 @@ static void evict(struct inode *inode, int delete) ...@@ -325,7 +325,9 @@ static void evict(struct inode *inode, int delete)
{ {
const struct super_operations *op = inode->i_sb->s_op; const struct super_operations *op = inode->i_sb->s_op;
if (delete && op->delete_inode) { if (op->evict_inode) {
op->evict_inode(inode);
} else if (delete && op->delete_inode) {
op->delete_inode(inode); op->delete_inode(inode);
} else { } else {
if (inode->i_data.nrpages) if (inode->i_data.nrpages)
......
...@@ -1563,6 +1563,7 @@ struct super_operations { ...@@ -1563,6 +1563,7 @@ struct super_operations {
void (*dirty_inode) (struct inode *); void (*dirty_inode) (struct inode *);
int (*write_inode) (struct inode *, struct writeback_control *wbc); int (*write_inode) (struct inode *, struct writeback_control *wbc);
void (*drop_inode) (struct inode *); void (*drop_inode) (struct inode *);
void (*evict_inode) (struct inode *);
void (*delete_inode) (struct inode *); void (*delete_inode) (struct inode *);
void (*put_super) (struct super_block *); void (*put_super) (struct super_block *);
void (*write_super) (struct super_block *); void (*write_super) (struct super_block *);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册