1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 04:29:26 +03:00
openwrt-xburst/target/linux/generic-2.6/patches-2.6.31/232-union_mounts_compile_fix.patch
nbd 82bbacf365 fix 2.6.31 compile with union mounts disabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17730 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-09-26 08:52:09 +00:00

12 lines
422 B
Diff

--- a/include/linux/union.h
+++ b/include/linux/union.h
@@ -77,7 +77,7 @@
#define __union_copyup(x, y, z) ({ BUG(); (0); })
#define union_copyup(x, y) ({ (0); })
#define union_copyup_dir(x) ({ BUG(); (0); })
-#define union_permission(x, y) inode_permission(x->dentry->d_inode, y)
+#define union_permission(x, y) inode_permission((x)->dentry->d_inode, y)
#endif /* CONFIG_UNION_MOUNT */
#endif /* __KERNEL__ */