Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1482599

Re: [PATCH] x86/apic: Use byte array apic_version[], not int array. Saves up to 96k

From Thomas Gleixner <tglx@linutronix.de>
Newsgroups linux.kernel
Subject Re: [PATCH] x86/apic: Use byte array apic_version[], not int array. Saves up to 96k
Date 2016-09-13 17:40 +0200
Message-ID <sgXYu-3KE-15@gated-at.bofh.it> (permalink)
References <sfpvQ-wL-5@gated-at.bofh.it> <sg9S1-4Sr-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Sun, 11 Sep 2016, Borislav Petkov wrote:
> On Fri, Sep 09, 2016 at 10:32:04AM +0200, Denys Vlasenko wrote:
> > This array is [MAX_LOCAL_APIC], and MAX_LOCAL_APIC can easily be up to 32k.
> > 
> > This patch changes apic_version[] array elements from int to u8 -
> > APIC version values as of year 2016 are no larger than 0x1f on all known CPUs.
> > Version field in the APIC register is 8 bit wide - not likely
> > to overflow byte range in foreseeable future.
> > 
> > The "ver" argument of generic_processor_info(id,ver), which goes into apic_version[id],
> > is also changed from int to u8: make it obvious that assignment can't overflow.
> > 
> > generic_processor_info() has four callsites, none of them can put an out-of-range value
> > into this argument.
> 
> Right, so I dug a bit into this and found:
> 
> http://marc.info/?l=linux-kernel&m=123230551709711
> 
> and
> 
> b2b815d80a5c ("x86: put trigger in to detect mismatched apic versions")
> 
> It is from 2009 and I don't know how relevant 16-bit APIC IDs are
> anymore... I guess you probably want to run this by SGI folk first.
> 
> Otherwise I was going to propose to kill that apic_version array
> altogether and cache only the version of the previous CPU and compare it
> to the current one to catch mismatches...

Yeah, the idea was back then to eliminate the array, but we wanted to make
sure that we don't have systems out in the wild which have different apic
versions. I really doubt that we can deal with that proper, so having a
single version entry and yelling loudly when we detect a mismatch is good
enough.

Thanks,

	tglx

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH] x86/apic: Use byte array apic_version[], not int array.  Saves up to 96k Borislav Petkov <bp@alien8.de> - 2016-09-11 12:10 +0200
  Re: [PATCH] x86/apic: Use byte array apic_version[], not int array.  Saves up to 96k Thomas Gleixner <tglx@linutronix.de> - 2016-09-13 17:40 +0200
    Re: [PATCH] x86/apic: Use byte array apic_version[], not int array.  Saves up to 96k Denys Vlasenko <dvlasenk@redhat.com> - 2016-09-13 20:10 +0200

csiph-web