* Re: [PATCH] Move most arches to asm-generic/current.h [not found] ` <201204301638.29398.arnd@arndb.de> @ 2012-04-30 17:07 ` Stephen Boyd 2012-04-30 17:11 ` Matt Turner 2012-04-30 19:52 ` Arnd Bergmann 0 siblings, 2 replies; 3+ messages in thread From: Stephen Boyd @ 2012-04-30 17:07 UTC (permalink / raw) To: linux-alpha Cc: Arnd Bergmann, linux-kernel, linux-arch, Richard Henderson, Ivan Kokshaysky, Matt Turner On 04/30/12 09:38, Arnd Bergmann wrote: > On Monday 30 April 2012, Stephen Boyd wrote: >> I admit I haven't compile tested this on all the affected architectures. >> Looking at the architectures that are migrated here I don't see any that >> are defining get_current() as a macro except for alpha. Should I drop >> alpha from the patch? Or would it be easier if someone threw this into >> linux-next and see if it blows up? >> >> In the meantime I can scrounge around for those kernel.org >> cross-compilers and see if I can compile alpha. > I'd say either get an Ack from the Alpha maintainers or drop that > hunk from your patch. > Ok. Alpha maintainers, do you see any problem with a static inline function for get_current() instead of the current macro? My compile of alpha with the kernel.org 4.6.3 compilers doesn't show any new build failures than what is already there: LD .tmp_vmlinux1 drivers/built-in.o: In function `ide_set_disk_chs': drivers/ide/ide.c:269:(.text+0x732a8): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:269:(.text+0x732b0): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:267:(.text+0x73310): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:267:(.text+0x73318): relocation truncated to fit: GPREL16 against `.sbss' drivers/built-in.o: In function `ide_dev_apply_params': drivers/ide/ide.c:299:(.text+0x73714): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:303:(.text+0x73724): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:308:(.text+0x73734): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide.c:315:(.text+0x73744): relocation truncated to fit: GPREL16 against `.sbss' drivers/built-in.o: In function `unexpected_intr': drivers/ide/ide-io.c:734:(.text+0x74dfc): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide-io.c:736:(.text+0x74e00): relocation truncated to fit: GPREL16 against `.sbss' drivers/ide/ide-io.c:734:(.text+0x74e10): additional relocation overflows omitted from the output make[1]: *** [.tmp_vmlinux1] Error 1 make: *** [sub-make] Error 2 -- Sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum. ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Move most arches to asm-generic/current.h 2012-04-30 17:07 ` [PATCH] Move most arches to asm-generic/current.h Stephen Boyd @ 2012-04-30 17:11 ` Matt Turner 2012-04-30 19:52 ` Arnd Bergmann 1 sibling, 0 replies; 3+ messages in thread From: Matt Turner @ 2012-04-30 17:11 UTC (permalink / raw) To: Stephen Boyd Cc: linux-alpha, Arnd Bergmann, linux-kernel, linux-arch, Richard Henderson, Ivan Kokshaysky On Mon, Apr 30, 2012 at 1:07 PM, Stephen Boyd <sboyd@codeaurora.org> wrote: > On 04/30/12 09:38, Arnd Bergmann wrote: > >> On Monday 30 April 2012, Stephen Boyd wrote: >>> I admit I haven't compile tested this on all the affected architectures. >>> Looking at the architectures that are migrated here I don't see any that >>> are defining get_current() as a macro except for alpha. Should I drop >>> alpha from the patch? Or would it be easier if someone threw this into >>> linux-next and see if it blows up? >>> >>> In the meantime I can scrounge around for those kernel.org >>> cross-compilers and see if I can compile alpha. >> I'd say either get an Ack from the Alpha maintainers or drop that >> hunk from your patch. >> > > Ok. Alpha maintainers, do you see any problem with a static inline > function for get_current() instead of the current macro? My compile of > alpha with the kernel.org 4.6.3 compilers doesn't show any new build > failures than what is already there: > > LD .tmp_vmlinux1 > drivers/built-in.o: In function `ide_set_disk_chs': > drivers/ide/ide.c:269:(.text+0x732a8): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:269:(.text+0x732b0): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:267:(.text+0x73310): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:267:(.text+0x73318): relocation truncated to fit: GPREL16 against `.sbss' > drivers/built-in.o: In function `ide_dev_apply_params': > drivers/ide/ide.c:299:(.text+0x73714): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:303:(.text+0x73724): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:308:(.text+0x73734): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:315:(.text+0x73744): relocation truncated to fit: GPREL16 against `.sbss' > drivers/built-in.o: In function `unexpected_intr': > drivers/ide/ide-io.c:734:(.text+0x74dfc): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide-io.c:736:(.text+0x74e00): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide-io.c:734:(.text+0x74e10): additional relocation overflows omitted from the output > make[1]: *** [.tmp_vmlinux1] Error 1 > make: *** [sub-make] Error 2 I'll take a look later this week. The relocation truncated to fit: GPREL16 against ... error is caused by the kernel being too large and compiling with -msmall-data. We've really got to do something about this -- this happens way too often to way too many people. Matt ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Move most arches to asm-generic/current.h 2012-04-30 17:07 ` [PATCH] Move most arches to asm-generic/current.h Stephen Boyd 2012-04-30 17:11 ` Matt Turner @ 2012-04-30 19:52 ` Arnd Bergmann 1 sibling, 0 replies; 3+ messages in thread From: Arnd Bergmann @ 2012-04-30 19:52 UTC (permalink / raw) To: Stephen Boyd Cc: linux-alpha, linux-kernel, linux-arch, Richard Henderson, Ivan Kokshaysky, Matt Turner On Monday 30 April 2012, Stephen Boyd wrote: > My compile of > alpha with the kernel.org 4.6.3 compilers doesn't show any new build > failures than what is already there: > > LD .tmp_vmlinux1 > drivers/built-in.o: In function `ide_set_disk_chs': > drivers/ide/ide.c:269:(.text+0x732a8): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:269:(.text+0x732b0): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:267:(.text+0x73310): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:267:(.text+0x73318): relocation truncated to fit: GPREL16 against `.sbss' > drivers/built-in.o: In function `ide_dev_apply_params': > drivers/ide/ide.c:299:(.text+0x73714): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:303:(.text+0x73724): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:308:(.text+0x73734): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide.c:315:(.text+0x73744): relocation truncated to fit: GPREL16 against `.sbss' > drivers/built-in.o: In function `unexpected_intr': > drivers/ide/ide-io.c:734:(.text+0x74dfc): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide-io.c:736:(.text+0x74e00): relocation truncated to fit: GPREL16 against `.sbss' > drivers/ide/ide-io.c:734:(.text+0x74e10): additional relocation overflows omitted from the output > make[1]: *** [.tmp_vmlinux1] Error 1 > make: *** [sub-make] Error 2 > Ok, if you were hitting the problem that I remember, you would not get anything to build at all. Arnd ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-04-30 19:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1335237509-17113-1-git-send-email-sboyd@codeaurora.org>
[not found] ` <201204301415.56690.arnd@arndb.de>
[not found] ` <4F9EBF3E.8060401@codeaurora.org>
[not found] ` <201204301638.29398.arnd@arndb.de>
2012-04-30 17:07 ` [PATCH] Move most arches to asm-generic/current.h Stephen Boyd
2012-04-30 17:11 ` Matt Turner
2012-04-30 19:52 ` Arnd Bergmann
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox