mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* 2.6.7 compile errors due to include loops on sparc(32)
@ 2004-06-16 17:36 Jakub Bogusz
  0 siblings, 0 replies; only message in thread
From: Jakub Bogusz @ 2004-06-16 17:36 UTC (permalink / raw)
  To: linux-kernel

  CC      init/do_mounts.o
In file included from include/linux/mm.h:29,
                 from include/linux/pagemap.h:7,
                 from include/linux/swap.h:7,
                 from include/linux/suspend.h:7,
                 from init/do_mounts.c:6:
include/asm/pgtable.h:386: warning: parameter names (without types) in function declaration
include/asm/pgtable.h:387: warning: parameter names (without types) in function declaration
include/asm/pgtable.h:388: error: parse error before "___f___swp_entry"
include/asm/pgtable.h:388: warning: type defaults to `int' in declaration of `___f___swp_entry'
include/asm/pgtable.h:388: warning: data definition has no type or storage class
make[1]: *** [init/do_mounts.o] Error 1
make: *** [init] Error 2

That's because swp_entry_t used in BTFIXUPDEF_CALL macro uses in
<asm-sparc/pgtable.h> - swp_entry_t is defined in <linux/swap.h>,
which indirectly includes <asm/pgtable.h> before defining swp_entry_t -
so <linux/swap.h> include in <asm-sparc/pgtable.h> is skipped as
_LINUX_SWAP_H is already defined.

Workaround is to move swp_entry_t typedef on top of <linux/swap.h>,
before includes - but it's ugly.

The next problem is:

  CC      arch/sparc/kernel/process.o
[...]
In file included from include/linux/swap.h:18,
                 from include/asm/pgtable.h:14,
                 from include/linux/mm.h:29,
                 from arch/sparc/kernel/process.c:19:
include/linux/pagemap.h: In function `linear_page_index':
include/linux/pagemap.h:145: error: dereferencing pointer to incomplete type
include/linux/pagemap.h:146: error: dereferencing pointer to incomplete type
include/linux/pagemap.h: In function `lock_page':
include/linux/pagemap.h:155: warning: implicit declaration of function `TestSetPageLocked'
include/linux/pagemap.h: In function `wait_on_page_locked':
include/linux/pagemap.h:174: warning: implicit declaration of function `PageLocked'
include/linux/pagemap.h:175: error: `PG_locked' undeclared (first use in this function)
include/linux/pagemap.h:175: error: (Each undeclared identifier is reported only once
include/linux/pagemap.h:175: error: for each function it appears in.)
include/linux/pagemap.h: In function `wait_on_page_writeback':

quite similar case - struct vma_area_struct is defined in <linux/mm.h>,
which indirectly includes <linux/pagemap.h>, which uses it.
On other archs <asm/pgtable.h> doesn't include <linux/swap.h>, so this
problem is sparc-specific too; but removing #include <linux/swap.h> from
<asm-sparc/pgtable.h> doesn't work without hacking many files, so
I couldn't find any simple workaround...


-- 
Jakub Bogusz    http://cyber.cs.net.pl/~qboosh/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-06-16 17:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-16 17:36 2.6.7 compile errors due to include loops on sparc(32) Jakub Bogusz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®