Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx> --- fs/inode.c | 2 -- include/linux/fs.h | 1 - 2 files changed, 0 insertions(+), 3 deletions(-) diff --git a/fs/inode.c b/fs/inode.c index 3f45360..d65cd60 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -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); diff --git a/include/linux/fs.h b/include/linux/fs.h index cea7283..b051ac6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1563,7 +1563,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); -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html