From: Paul M. <le...@us...> - 2001-10-09 19:35:05
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv9688/linux Modified Files: gfxfs_fs.h Added Files: inputfs_fs.h Log Message: Fix gfxfs super magic, add inputfs one. --- NEW FILE: inputfs_fs.h --- /* * include/linux/inputfs_fs.h * * Primary InputFS header. * * Copyright (C) 2001 Paul Mundt <le...@ch...> * Copyright (C) 2001 James Simmons <jsi...@tr...> * * Released under the terms of the GNU GPL v2.0. * */ #ifndef __INPUTFS_FS_H #define __INPUTFS_FS_H #define INPUTFS_SUPER_MAGIC 0x75706e69 /* "inputfs" */ #endif /* __INPUTFS_FS_H */ Index: gfxfs_fs.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/gfxfs_fs.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gfxfs_fs.h 2001/10/09 19:04:19 1.3 +++ gfxfs_fs.h 2001/10/09 19:35:02 1.4 @@ -14,7 +14,7 @@ #include <linux/fs.h> #include <linux/config.h> -#define GFXFS_SUPER_MAGIC 0x8048494 /* "gfxfs" */ +#define GFXFS_SUPER_MAGIC 0x66786667 /* "gfxfs" */ #ifdef CONFIG_GFXFS_FS_DEBUG #define gfxfs_debug(x...) printk(KERN_DEBUG "gfxfs: " \ |