1. 18 2月, 2009 1 次提交
  2. 12 2月, 2009 1 次提交
  3. 31 1月, 2009 1 次提交
  4. 30 1月, 2009 1 次提交
  5. 29 1月, 2009 7 次提交
  6. 14 1月, 2009 2 次提交
  7. 13 1月, 2009 1 次提交
  8. 08 1月, 2009 2 次提交
  9. 06 1月, 2009 1 次提交
  10. 05 1月, 2009 7 次提交
  11. 04 1月, 2009 7 次提交
  12. 03 1月, 2009 1 次提交
  13. 08 12月, 2008 1 次提交
  14. 04 12月, 2008 1 次提交
  15. 18 8月, 2008 2 次提交
  16. 12 8月, 2008 1 次提交
    • R
      x86, debug: tone down arch/x86/kernel/mpparse.c debugging printk · eeb0d7d1
      Rene Herman 提交于
      commit 11a62a05 turns some formerly
      nopped debugging printks in arch/x86/kernel/mppparse.c into regular
      ones. The one at the top of smp_scan_config() in particular also
      prints on !CONFIG_SMP/CONFIG_X86_LOCAL_APIC kernels and UP machines
      without anything resembling MP tables which makes their lowly UP
      owners wonder...
      
      Turn the former Dprintk()s into apic_printk()s instead meaning that
      their printing is dependent on passing the apic=verbose (or =debug)
      command line param.
      
      On 32-bit, "apic" is a __setup() param which isn't early enough
      for this code and therefore needs a followup changing it into an
      early_param(). On 64-bit, it already is.
      Signed-off-by: NRene Herman <rene.herman@gmail.com>
      Cc: Andrew Morton <akpm@osdl.org>
      Cc: Yinghai Lu <yhlu.kernel@gmail.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      eeb0d7d1
  17. 11 8月, 2008 2 次提交
    • M
      x86: mpparse.c: fix section mismatch warning · d406d21d
      Marcin Slusarz 提交于
      WARNING: vmlinux.o(.text+0x118f7): Section mismatch in reference from the function construct_ioapic_table() to the function .init.text:MP_bus_info()
      The function construct_ioapic_table() references
      the function __init MP_bus_info().
      This is often because construct_ioapic_table lacks a __init
      annotation or the annotation of MP_bus_info is wrong.
      
      construct_ioapic_table is called only from construct_default_ISA_mptable which is __init
      Signed-off-by: NMarcin Slusarz <marcin.slusarz@gmail.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: H. Peter Anvin <hpa@zytor.com>
      Signed-off-by: NH. Peter Anvin <hpa@zytor.com>
      d406d21d
    • M
      x86: fix MP_processor_info section mismatch warning · 85a14437
      Marcin Slusarz 提交于
      WARNING: arch/x86/kernel/built-in.o(.cpuinit.text+0x1fe7): Section mismatch in reference from the function MP_processor_info() to the variable .init.data:x86_quirks
      The function __cpuinit MP_processor_info() references
      a variable __initdata x86_quirks.
      If x86_quirks is only used by MP_processor_info then
      annotate x86_quirks with a matching annotation.
      
      MP_processor_info uses x86_quirks which is __init and is used only from
      smp_read_mpc and construct_default_ISA_mptable which are __init
      Signed-off-by: NMarcin Slusarz <marcin.slusarz@gmail.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: H. Peter Anvin <hpa@zytor.com>
      Signed-off-by: NH. Peter Anvin <hpa@zytor.com>
      85a14437
  18. 20 7月, 2008 1 次提交
    • Y
      x86: extend and use x86_quirks to clean up NUMAQ code · 64898a8b
      Yinghai Lu 提交于
      add these new x86_quirks methods:
      
      	int *mpc_record;
      	int (*mpc_apic_id)(struct mpc_config_processor *m);
      	void (*mpc_oem_bus_info)(struct mpc_config_bus *m, char *name);
      	void (*mpc_oem_pci_bus)(struct mpc_config_bus *m);
      	void (*smp_read_mpc_oem)(struct mp_config_oemtable *oemtable,
                                          unsigned short oemsize);
      
      ... and move NUMAQ related mps table handling to numaq_32.c.
      
      also move the call to smp_read_mpc_oem() to smp_read_mpc() directly.
      
      Should not change functionality, albeit it would be nice to get it
      tested on real NUMAQ as well ...
      Signed-off-by: NYinghai Lu <yhlu.kernel@gmail.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      64898a8b