Skip to content

Commit

Permalink
[IA64] fix circular dependency on generation of asm-offsets.h
Browse files Browse the repository at this point in the history
Fix?  One ugly hack is replaced by a different ugly hack.

Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Tony Luck committed Sep 13, 2005
1 parent 2f4ba45 commit 82f1b07
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 1 addition & 11 deletions arch/ia64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,7 @@ unwcheck: vmlinux
archclean:
$(Q)$(MAKE) $(clean)=$(boot)

archprepare: include/asm-ia64/.offsets.h.stamp

include/asm-ia64/.offsets.h.stamp:
mkdir -p include/asm-ia64
[ -s include/asm-ia64/asm-offsets.h ] \
|| echo "#define IA64_TASK_SIZE 0" > include/asm-ia64/asm-offsets.h
touch $@



CLEAN_FILES += vmlinux.gz bootloader include/asm-ia64/.offsets.h.stamp
CLEAN_FILES += vmlinux.gz bootloader

boot: lib/lib.a vmlinux
$(Q)$(MAKE) $(build)=$(boot) $@
Expand Down
1 change: 1 addition & 0 deletions arch/ia64/kernel/asm-offsets.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* to extract and format the required data.
*/

#define ASM_OFFSETS_C 1
#include <linux/config.h>

#include <linux/sched.h>
Expand Down
2 changes: 2 additions & 0 deletions include/asm-ia64/ptrace.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@
#include <linux/config.h>

#include <asm/fpu.h>
#ifndef ASM_OFFSETS_C
#include <asm/asm-offsets.h>
#endif

/*
* Base-2 logarithm of number of pages to allocate per task structure
Expand Down
7 changes: 7 additions & 0 deletions include/asm-ia64/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
#ifndef _ASM_IA64_THREAD_INFO_H
#define _ASM_IA64_THREAD_INFO_H

#ifndef ASM_OFFSETS_C
#include <asm/asm-offsets.h>
#endif
#include <asm/processor.h>
#include <asm/ptrace.h>

Expand Down Expand Up @@ -51,9 +53,14 @@ struct thread_info {
}, \
}

#ifndef ASM_OFFSETS_C
/* how to get the thread information struct from C */
#define current_thread_info() ((struct thread_info *) ((char *) current + IA64_TASK_SIZE))
#define alloc_thread_info(tsk) ((struct thread_info *) ((char *) (tsk) + IA64_TASK_SIZE))
#else
#define current_thread_info() ((struct thread_info *) 0)
#define alloc_thread_info(tsk) ((struct thread_info *) 0)
#endif
#define free_thread_info(ti) /* nothing */

#define __HAVE_ARCH_TASK_STRUCT_ALLOCATOR
Expand Down

0 comments on commit 82f1b07

Please sign in to comment.