* [git pull] ia64 changes
@ 2010-07-21 16:40 Luck, Tony
0 siblings, 0 replies; 5+ messages in thread
From: Luck, Tony @ 2010-07-21 16:40 UTC (permalink / raw)
To: Ben Hutchings; +Cc: linux-kernel, Geert Stappers, Dave Airlie
This commit hit Linus upstream today and broke the ia64 build:
commit 1e8655f87333def92bb8215b423adc65403b08a5
Author: Ben Hutchings <ben@decadent.org.uk>
Date: Sun Jul 18 21:51:42 2010 +0100
drm/ttm: Fix build on architectures without AGP
Make inclusion of <asm/agp.h> conditional on TTM_HAS_AGP. The use
of the functions declared in it is already conditional.
Reported-by: Geert Stappers <stappers@stappers.nl>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Tested-by: Geert Stappers <stappers@stappers.nl>
Signed-off-by: Dave Airlie <airlied@redhat.com>
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index b1d67dc..1f32b46 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -40,7 +40,9 @@
#include <linux/slab.h>
#include <asm/atomic.h>
+#ifdef TTM_HAS_AGP
#include <asm/agp.h>
+#endif
#include "ttm/ttm_bo_driver.h"
#include "ttm/ttm_page_alloc.h"
The problem is that TTM_HAS_AGP is defined in "ttm/ttm_bo_driver.h" ... which
is included *after* you used it to test whether to include <asm/agp.h>
I suspect some re-arrangement is in order :-)
-Tony
^ permalink raw reply [flat|nested] 5+ messages in thread
* [git pull] ia64 changes
@ 2011-03-24 16:29 Luck, Tony
0 siblings, 0 replies; 5+ messages in thread
From: Luck, Tony @ 2011-03-24 16:29 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-ia64
Hi Linus,
please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git release
This will update the files shown below.
Thanks!
-Tony
arch/ia64/include/asm/unistd.h | 6 +++++-
arch/ia64/kernel/entry.S | 4 ++++
fs/pstore/platform.c | 15 ++++++++++++---
3 files changed, 21 insertions(+), 4 deletions(-)
Tony Luck (2):
[IA64] New syscalls for 2.6.39
pstore: cleanups to pstore_dump()
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [git pull] ia64 changes
2008-04-25 0:16 ` Adrian Bunk
@ 2008-04-25 0:25 ` Luck, Tony
0 siblings, 0 replies; 5+ messages in thread
From: Luck, Tony @ 2008-04-25 0:25 UTC (permalink / raw)
To: Adrian Bunk
Cc: torvalds, linux-kernel, linux-ia64, Mike Travis, Russ Anderson
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 632 bytes --]
>> Build fix for CONFIG_NUMA=y && CONFIG_SMP=n
>>...
>
> Why is this an allowed configuration on ia64?
It shows up in allnoconfig ... probably because some
bit of Kconfig forces NUMA=y.
I can't imagine that it is ever a useful combination ... except to
find places in the code where people have:
#if defined(CONFIG_SMP)
...
#else
#if defined(CONFIG_NUMA) // !!! SMP=n, NUMA code???
...
#endif
#endif
Which is what happened, and is being fixed, here.
-Tony
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [git pull] ia64 changes
2008-04-24 23:51 Luck, Tony
@ 2008-04-25 0:16 ` Adrian Bunk
2008-04-25 0:25 ` Luck, Tony
0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2008-04-25 0:16 UTC (permalink / raw)
To: Luck, Tony; +Cc: torvalds, linux-kernel, linux-ia64, Mike Travis, Russ Anderson
On Thu, Apr 24, 2008 at 04:51:01PM -0700, Luck, Tony wrote:
>...
> Mike Travis (1):
> Build fix for CONFIG_NUMA=y && CONFIG_SMP=n
>...
Why is this an allowed configuration on ia64?
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
* [git pull] ia64 changes
@ 2008-04-24 23:51 Luck, Tony
2008-04-25 0:16 ` Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: Luck, Tony @ 2008-04-24 23:51 UTC (permalink / raw)
To: torvalds; +Cc: linux-kernel, linux-ia64, Mike Travis, Russ Anderson
Hi Linus,
please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git release
This will update the files shown below. Both changes touch kernel/sched.c
to fix regressions ... one for a build problem, the other for a boot
problem.
Thanks!
-Tony
kernel/sched.c | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
Mike Travis (1):
Build fix for CONFIG_NUMA=y && CONFIG_SMP=n
Russ Anderson (1):
[IA64] fix bootmem regression on Altix
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-24 16:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-21 16:40 [git pull] ia64 changes Luck, Tony
-- strict thread matches above, loose matches on Subject: below --
2011-03-24 16:29 Luck, Tony
2008-04-24 23:51 Luck, Tony
2008-04-25 0:16 ` Adrian Bunk
2008-04-25 0:25 ` Luck, Tony
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome