diff options
author | Russ Anderson <rja@sgi.com> | 2013-10-14 11:17:34 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-11-13 12:05:30 +0900 |
commit | 40f3a9e5aea1753ececbcbbfe483b0c05788b001 (patch) | |
tree | eeac3454e75a789fc2ee4e12348af6be56ec8784 /arch/x86 | |
parent | a73e47ff525d2a69d61767a5928ba00937f77e1b (diff) | |
download | linux-3.10-40f3a9e5aea1753ececbcbbfe483b0c05788b001.tar.gz linux-3.10-40f3a9e5aea1753ececbcbbfe483b0c05788b001.tar.bz2 linux-3.10-40f3a9e5aea1753ececbcbbfe483b0c05788b001.zip |
x86: Update UV3 hub revision ID
commit dd3c9c4b603c664fedc12facf180db0f1794aafe upstream.
The UV3 hub revision ID is different than expected. The first
revision was supposed to start at 1 but instead will start at 0.
Signed-off-by: Russ Anderson <rja@sgi.com>
Link: http://lkml.kernel.org/r/20131014161733.GA6274@sgi.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/apic/x2apic_uv_x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index 794f6eb54cd..b32dbb411a9 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c @@ -98,7 +98,7 @@ static int __init early_get_pnodeid(void) break; case UV3_HUB_PART_NUMBER: case UV3_HUB_PART_NUMBER_X: - uv_min_hub_revision_id += UV3_HUB_REVISION_BASE - 1; + uv_min_hub_revision_id += UV3_HUB_REVISION_BASE; break; } |