Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 66560 - mm-sources 2.6.9_rc3-r2 irq.c compile badness with stack != 4K
Summary: mm-sources 2.6.9_rc3-r2 irq.c compile badness with stack != 4K
Status: RESOLVED DUPLICATE of bug 66558
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Kernel Bug Wranglers and Kernel Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-06 12:47 UTC by Scott Taylor (RETIRED)
Modified: 2005-07-17 13:06 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Scott Taylor (RETIRED) gentoo-dev 2004-10-06 12:47:15 UTC
CC      arch/i386/kernel/irq.o
arch/i386/kernel/irq.c:203: error: redefinition of 'is_irq_stack_ptr'
include/asm/hardirq.h:25: error: previous definition of 'is_irq_stack_ptr' was here

include/asm/hardirq.h has:
#ifdef CONFIG_4KSTACKS
int is_irq_stack_ptr(struct task_struct *task, void *p);
#else
static inline int is_irq_stack_ptr(struct task_struct *task, void *p)
{
        return 0;
}
#endif


this of course causes the redefinition of it when its not wrapped with the 
#ifdef in arch/i386/kernel/irq.c
Comment 1 Daniel Drake (RETIRED) gentoo-dev 2004-10-06 13:10:48 UTC

*** This bug has been marked as a duplicate of 66558 ***