• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

linux-3.0.x for AP-SH4A-0A Board


Commit MetaInfo

Revision919d25a710bd6ded210426e911c9f9ec535d8d9c (tree)
Zeit2011-07-21 07:33:59
AutorLinus Torvalds <torvalds@linu...>
CommiterLinus Torvalds

Log Message

Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:

x86. reboot: Make Dell Latitude E6320 use reboot=pci
x86, doc only: Correct real-mode kernel header offset for init_size
x86: Disable AMD_NUMA for 32bit for now

Ändern Zusammenfassung

Diff

--- a/Documentation/x86/boot.txt
+++ b/Documentation/x86/boot.txt
@@ -674,7 +674,7 @@ Protocol: 2.10+
674674
675675 Field name: init_size
676676 Type: read
677-Offset/size: 0x25c/4
677+Offset/size: 0x260/4
678678
679679 This field indicates the amount of linear contiguous memory starting
680680 at the kernel runtime start address that the kernel needs before it
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1170,7 +1170,7 @@ comment "NUMA (Summit) requires SMP, 64GB highmem support, ACPI"
11701170 config AMD_NUMA
11711171 def_bool y
11721172 prompt "Old style AMD Opteron NUMA detection"
1173- depends on NUMA && PCI
1173+ depends on X86_64 && NUMA && PCI
11741174 ---help---
11751175 Enable AMD NUMA node topology detection. You should say Y here if
11761176 you have a multi processor AMD system. This uses an old method to
--- a/arch/x86/kernel/reboot.c
+++ b/arch/x86/kernel/reboot.c
@@ -419,6 +419,14 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = {
419419 DMI_MATCH(DMI_PRODUCT_NAME, "iMac9,1"),
420420 },
421421 },
422+ { /* Handle problems with rebooting on the Latitude E6320. */
423+ .callback = set_pci_reboot,
424+ .ident = "Dell Latitude E6320",
425+ .matches = {
426+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
427+ DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"),
428+ },
429+ },
422430 { }
423431 };
424432