Messages in this thread Patch in this message |  | | | Date | Wed, 1 Jan 2003 21:53:43 -0800 | | From | "Adam J. Richter" <> | | Subject | Patch: linux-2.5.54/fs/romfs/inode.c compilation fix | |
linux-2.5.54/fs/romfs/inode.c needs to include <asm/statfs.h>
(which is new to 2.5.54) to compile again. Here is the one line
patch.
--
Adam J. Richter __ ______________ 575 Oroville Road
adam@yggdrasil.com \ / Milpitas, California 95035
+1 408 309-6081 | g g d r a s i l United States of America
"Free Software For The Rest Of Us."--- linux-2.5.54/fs/romfs/inode.c 2003-01-01 19:22:29.000000000 -0800
+++ linux/fs/romfs/inode.c 2003-01-01 21:49:37.000000000 -0800
@@ -75,6 +75,7 @@
#include <linux/smp_lock.h>
#include <linux/buffer_head.h>
+#include <asm/statfs.h>
#include <asm/uaccess.h>
struct romfs_inode_info { |  |