|
@@ -21,18 +21,12 @@
|
|
#include <linux/types.h>
|
|
#include <linux/types.h>
|
|
|
|
|
|
/*
|
|
/*
|
|
- * Some types are conditional depending on the target system.
|
|
|
|
* XFS_BIG_BLKNOS needs block layer disk addresses to be 64 bits.
|
|
* XFS_BIG_BLKNOS needs block layer disk addresses to be 64 bits.
|
|
- * XFS_BIG_INUMS needs the VFS inode number to be 64 bits, as well
|
|
|
|
- * as requiring XFS_BIG_BLKNOS to be set.
|
|
|
|
|
|
+ * XFS_BIG_INUMS requires XFS_BIG_BLKNOS to be set.
|
|
*/
|
|
*/
|
|
#if defined(CONFIG_LBD) || (BITS_PER_LONG == 64)
|
|
#if defined(CONFIG_LBD) || (BITS_PER_LONG == 64)
|
|
# define XFS_BIG_BLKNOS 1
|
|
# define XFS_BIG_BLKNOS 1
|
|
-# if BITS_PER_LONG == 64
|
|
|
|
-# define XFS_BIG_INUMS 1
|
|
|
|
-# else
|
|
|
|
-# define XFS_BIG_INUMS 0
|
|
|
|
-# endif
|
|
|
|
|
|
+# define XFS_BIG_INUMS 1
|
|
#else
|
|
#else
|
|
# define XFS_BIG_BLKNOS 0
|
|
# define XFS_BIG_BLKNOS 0
|
|
# define XFS_BIG_INUMS 0
|
|
# define XFS_BIG_INUMS 0
|