Commit d2c32edf authored by Nathan Scott's avatar Nathan Scott

[XFS] When compiling with gcc 4.0 and CONFIG_SMP unset, there are many

warnings along the lines: xfs_linux.h:103:5: warning: "CONFIG_SMP" is not
defined. 

SGI-PV: 946630
SGI-Modid: xfs-linux-melb:xfs-kern:25171a
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent e0cc2325
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
*/ */
#undef HAVE_REFCACHE /* reference cache not needed for NFS in 2.6 */ #undef HAVE_REFCACHE /* reference cache not needed for NFS in 2.6 */
#define HAVE_SENDFILE /* sendfile(2) exists in 2.6, but not in 2.4 */ #define HAVE_SENDFILE /* sendfile(2) exists in 2.6, but not in 2.4 */
#if CONFIG_SMP #ifdef CONFIG_SMP
#define HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */ #define HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */
#else #else
#undef HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */ #undef HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment