summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.7/511-yaffs-3.5-use-clear_inode.patch
blob: f4479675a275fb88b03b45a9725ef8a650470377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/fs/yaffs2/yaffs_vfs_glue.c
+++ b/fs/yaffs2/yaffs_vfs_glue.c
@@ -924,7 +924,11 @@ static void yaffs_evict_inode( struct in
 	if (!inode->i_nlink && !is_bad_inode(inode))
 		deleteme = 1;
 	truncate_inode_pages(&inode->i_data,0);
-	end_writeback(inode);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0)
+	clear_inode(inode);
+#else
+ 	end_writeback(inode);
+#endif
 
 	if(deleteme && obj){
 		dev = obj->my_dev;