public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Dzianis Kahanovich <mahatma@bspu.unibel.by>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: mahatma@eu.by, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] fix miscompiling with GCC 4.5 -finline-functions
Date: Thu, 06 Jan 2011 19:42:06 +0200	[thread overview]
Message-ID: <4D25FEEE.6070805@bspu.unibel.by> (raw)
In-Reply-To: <20110105150226.f4e2f31e.akpm@linux-foundation.org>

Andrew Morton wrote:

>> Fixing broken automatic inlining for GCC 4.5+  (breaks build with
>> -finline-functions or -O3 on x86_*).
>>
> 
> Please always quote the compiler output when addressing build errors
> and warnings.

Sorry. linux-next, yesterday, gcc version 4.5.1 (Gentoo 4.5.1-r1 p1.4, pie-0.4.5):

make -j5 -s HOSTCC=x86_64-pc-linux-gnu-gcc ARCH=i386
CROSS_COMPILE=i586-pc-linux-gnu- all -i
arch/x86/kvm/vmx.c: Assembler messages:
arch/x86/kvm/vmx.c:4036: Error: symbol `.Llaunched' is already defined
arch/x86/kvm/vmx.c:4048: Error: symbol `.Lkvm_vmx_return' is already defined
i586-pc-linux-gnu-ld: cannot find arch/x86/kvm/vmx.o: No such file or directory
...
ERROR: "__bad_udelay" [drivers/media/radio/radio-aimslab.ko] undefined!

I unsure in precise version boundaries, but first found on release tree weeks
ago and first error only sometimes happened on x86_64 (version related?). On my
own builds I used -fno-inline-functions in local Makefile's, but this is more
local fix.

> 
>> --- a/arch/x86/kvm/vmx.c
>> +++ b/arch/x86/kvm/vmx.c
>> @@ -569,7 +569,7 @@ static inline void ept_sync_individual_a
>>  	}
>>  }
>>
>> -static unsigned long vmcs_readl(unsigned long field)
>> +static noinline unsigned long vmcs_readl(unsigned long field)
>>  {
>>  	unsigned long value = 0;
>>
>> --- a/drivers/media/radio/radio-aimslab.c
>> +++ b/drivers/media/radio/radio-aimslab.c
>> @@ -71,7 +71,7 @@ static struct rtrack rtrack_card;
>>
>>  /* local things */
>>
>> -static void sleep_delay(long n)
>> +static noinline void sleep_delay(long n)
>>  {
>>  	/* Sleep nicely for 'n' uS */
>>  	int d = n / msecs_to_jiffies(1000);
> 
> A golden rule is that when a programmer reads some code, he should be
> able to understand why it's there.  There is no way on this little
> earth that a programmer will be able to look at this code and say
> "ah-hah, that must be a workaround for gcc-4.5 -finline-functions!".
> 
> We fix that problem this way:
> 
> --- a/arch/x86/kvm/vmx.c~fix-miscompiling-with-gcc-45-finline-functions-fix
> +++ a/arch/x86/kvm/vmx.c
> @@ -569,6 +569,7 @@ static inline void ept_sync_individual_a
>  	}
>  }
>  
> +/* noinline works around gcc-4.5+ build error with -finline-functions */
>  static noinline unsigned long vmcs_readl(unsigned long field)
>  {
>  	unsigned long value = 0;
> --- a/drivers/media/radio/radio-aimslab.c~fix-miscompiling-with-gcc-45-finline-functions-fix
> +++ a/drivers/media/radio/radio-aimslab.c
> @@ -71,6 +71,7 @@ static struct rtrack rtrack_card;
>  
>  /* local things */
>  
> +/* noinline works around gcc-4.5+ build error with -finline-functions */
>  static noinline void sleep_delay(long n)
>  {
>  	/* Sleep nicely for 'n' uS */
> _
> 
> 
> 


-- 
WBR, Dzianis Kahanovich AKA Denis Kaganovich, http://mahatma.bspu.unibel.by/

  reply	other threads:[~2011-01-06 17:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-04 15:17 [PATCH] fix miscompiling with GCC 4.5 -finline-functions Dzianis Kahanovich
2011-01-05 23:02 ` Andrew Morton
2011-01-06 17:42   ` Dzianis Kahanovich [this message]
2011-01-06 18:07     ` Arnaud Lacombe
2011-01-08  1:02       ` mahatma
2011-01-08  1:05       ` Denis Kaganovich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D25FEEE.6070805@bspu.unibel.by \
    --to=mahatma@bspu.unibel.by \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mahatma@eu.by \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox