Re: [PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-12 Thread Luis R. Rodriguez
On Thu, Mar 12, 2015 at 02:42:01AM -0600, Jan Beulich wrote: > >>> On 12.03.15 at 00:10, wrote: > > config X86_LOCAL_APIC > > def_bool y > > - depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC || > > PCI_MSI > > + depends on X86_64 || SMP || X86_32_NON_STANDARD || PCI_MSI >

Re: [PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-12 Thread Jan Beulich
>>> On 12.03.15 at 00:10, wrote: > config X86_LOCAL_APIC > def_bool y > - depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC || > PCI_MSI > + depends on X86_64 || SMP || X86_32_NON_STANDARD || PCI_MSI I.e. building a 32-bit kernel with APIC support but with !SMP,

Re: [PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-12 Thread Jan Beulich
On 12.03.15 at 00:10, mcg...@do-not-panic.com wrote: config X86_LOCAL_APIC def_bool y - depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC || PCI_MSI + depends on X86_64 || SMP || X86_32_NON_STANDARD || PCI_MSI I.e. building a 32-bit kernel with APIC support but

Re: [PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-12 Thread Luis R. Rodriguez
On Thu, Mar 12, 2015 at 02:42:01AM -0600, Jan Beulich wrote: On 12.03.15 at 00:10, mcg...@do-not-panic.com wrote: config X86_LOCAL_APIC def_bool y - depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC || PCI_MSI + depends on X86_64 || SMP || X86_32_NON_STANDARD ||

[PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-11 Thread Luis R. Rodriguez
From: "Luis R. Rodriguez" X86_UP_APIC is used for two reasons on 32-bit systems: 1) set a series of dependencies under which we would like to express we want X86_LOCAL_APIC enabled 2) under the above conditions if PCI_MSI is enabled always force X86_LOCAL_APIC to be enabled 3) Let users

[PATCH v1 2/2] x86: kconfig: remove X86_UP_APIC

2015-03-11 Thread Luis R. Rodriguez
From: Luis R. Rodriguez mcg...@suse.com X86_UP_APIC is used for two reasons on 32-bit systems: 1) set a series of dependencies under which we would like to express we want X86_LOCAL_APIC enabled 2) under the above conditions if PCI_MSI is enabled always force X86_LOCAL_APIC to be enabled