From: Ben Hutchings <ben@decadent.org.uk>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] Fix build failures with binutils 2.21
Date: Wed, 09 Mar 2011 00:21:51 +0000 [thread overview]
Message-ID: <1299630111.4146.15.camel@localhost> (raw)
[-- Attachment #1: Type: text/plain, Size: 1079 bytes --]
gas has been silently ignoring .size directives with typos, but this was
fixed in binutils 2.21, resulting in build failures with the new
version.
I collected a couple of fixes for x86, then saw a similar failure on
sparc and went hunting for more instances. This series, based on
2.6.38-rc8, should cover them all. However, my changes are not even
build-tested.
Ben.
Alan Modra (1):
x86: Fix .size directive for async_page_fault
Ben Hutchings (3):
sparc: Fix .size directive for do_int_load
avr32: Fix .size directive for cpu_enter_idle
arm: Fix .size directives for __arm{7,9}tdmi_proc_info
H.J. Lu (1):
x86: Fix .size directive for xen_do_hypervisor_callback
arch/arm/mm/proc-arm7tdmi.S | 2 +-
arch/arm/mm/proc-arm9tdmi.S | 2 +-
arch/avr32/mach-at32ap/pm-at32ap700x.S | 2 +-
arch/sparc/kernel/una_asm_64.S | 2 +-
arch/x86/kernel/entry_32.S | 2 +-
arch/x86/kernel/entry_64.S | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--
1.7.4.1
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: ben@decadent.org.uk (Ben Hutchings)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] Fix build failures with binutils 2.21
Date: Wed, 09 Mar 2011 00:21:51 +0000 [thread overview]
Message-ID: <1299630111.4146.15.camel@localhost> (raw)
gas has been silently ignoring .size directives with typos, but this was
fixed in binutils 2.21, resulting in build failures with the new
version.
I collected a couple of fixes for x86, then saw a similar failure on
sparc and went hunting for more instances. This series, based on
2.6.38-rc8, should cover them all. However, my changes are not even
build-tested.
Ben.
Alan Modra (1):
x86: Fix .size directive for async_page_fault
Ben Hutchings (3):
sparc: Fix .size directive for do_int_load
avr32: Fix .size directive for cpu_enter_idle
arm: Fix .size directives for __arm{7,9}tdmi_proc_info
H.J. Lu (1):
x86: Fix .size directive for xen_do_hypervisor_callback
arch/arm/mm/proc-arm7tdmi.S | 2 +-
arch/arm/mm/proc-arm9tdmi.S | 2 +-
arch/avr32/mach-at32ap/pm-at32ap700x.S | 2 +-
arch/sparc/kernel/una_asm_64.S | 2 +-
arch/x86/kernel/entry_32.S | 2 +-
arch/x86/kernel/entry_64.S | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--
1.7.4.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 828 bytes
Desc: This is a digitally signed message part
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110309/ba24a4fd/attachment-0001.sig>
WARNING: multiple messages have this Message-ID (diff)
From: Ben Hutchings <ben@decadent.org.uk>
To: David Miller <davem@davemloft.net>,
Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>,
Russell King <linux@arm.linux.org.uk>
Cc: LKML <linux-kernel@vger.kernel.org>,
sparclinux@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] Fix build failures with binutils 2.21
Date: Wed, 09 Mar 2011 00:21:51 +0000 [thread overview]
Message-ID: <1299630111.4146.15.camel@localhost> (raw)
[-- Attachment #1: Type: text/plain, Size: 1079 bytes --]
gas has been silently ignoring .size directives with typos, but this was
fixed in binutils 2.21, resulting in build failures with the new
version.
I collected a couple of fixes for x86, then saw a similar failure on
sparc and went hunting for more instances. This series, based on
2.6.38-rc8, should cover them all. However, my changes are not even
build-tested.
Ben.
Alan Modra (1):
x86: Fix .size directive for async_page_fault
Ben Hutchings (3):
sparc: Fix .size directive for do_int_load
avr32: Fix .size directive for cpu_enter_idle
arm: Fix .size directives for __arm{7,9}tdmi_proc_info
H.J. Lu (1):
x86: Fix .size directive for xen_do_hypervisor_callback
arch/arm/mm/proc-arm7tdmi.S | 2 +-
arch/arm/mm/proc-arm9tdmi.S | 2 +-
arch/avr32/mach-at32ap/pm-at32ap700x.S | 2 +-
arch/sparc/kernel/una_asm_64.S | 2 +-
arch/x86/kernel/entry_32.S | 2 +-
arch/x86/kernel/entry_64.S | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--
1.7.4.1
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
next reply other threads:[~2011-03-09 0:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-09 0:21 Ben Hutchings [this message]
2011-03-09 0:21 ` [PATCH 0/5] Fix build failures with binutils 2.21 Ben Hutchings
2011-03-09 0:21 ` Ben Hutchings
2011-03-09 0:29 ` [PATCH 1/5] x86: Fix .size directive for xen_do_hypervisor_callback Ben Hutchings
2011-03-09 0:31 ` [PATCH 2/5] x86: Fix .size directive for async_page_fault Ben Hutchings
2011-03-09 0:32 ` [PATCH 4/5] avr32: Fix .size directive for cpu_enter_idle Ben Hutchings
2011-03-09 4:28 ` Hans-Christian Egtvedt
2011-04-07 23:48 ` Ben Hutchings
2011-03-09 0:33 ` [PATCH 5/5] arm: Fix .size directives for __arm{7,9}tdmi_proc_info Ben Hutchings
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=1299630111.4146.15.camel@localhost \
--to=ben@decadent.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.