Commit b5bbd40b authored by David Mosberger's avatar David Mosberger

ia64: More merge fixes.

parent ae741224
...@@ -499,7 +499,7 @@ smp_prepare_cpus (unsigned int max_cpus) ...@@ -499,7 +499,7 @@ smp_prepare_cpus (unsigned int max_cpus)
/* /*
* If SMP should be disabled, then really disable it! * If SMP should be disabled, then really disable it!
*/ */
if (!max_cpus || (max_cpus < -1)) { if (!max_cpus) {
printk(KERN_INFO "SMP mode deactivated.\n"); printk(KERN_INFO "SMP mode deactivated.\n");
cpu_online_map = phys_cpu_present_map = 1; cpu_online_map = phys_cpu_present_map = 1;
return; return;
......
...@@ -36,7 +36,7 @@ struct compat_stat { ...@@ -36,7 +36,7 @@ struct compat_stat {
compat_ino_t st_ino; compat_ino_t st_ino;
compat_mode_t st_mode; compat_mode_t st_mode;
compat_nlink_t st_nlink; compat_nlink_t st_nlink;
compay_uid_t st_uid; compat_uid_t st_uid;
compat_gid_t st_gid; compat_gid_t st_gid;
compat_dev_t st_rdev; compat_dev_t st_rdev;
u16 __pad2; u16 __pad2;
...@@ -44,11 +44,11 @@ struct compat_stat { ...@@ -44,11 +44,11 @@ struct compat_stat {
u32 st_blksize; u32 st_blksize;
u32 st_blocks; u32 st_blocks;
u32 st_atime; u32 st_atime;
u32 __unused1; u32 st_atime_nsec;
u32 st_mtime; u32 st_mtime;
u32 __unused2; u32 st_mtime_nsec;
u32 st_ctime; u32 st_ctime;
u32 __unused3; u32 st_ctime_nsec;
u32 __unused4; u32 __unused4;
u32 __unused5; u32 __unused5;
}; };
......
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