H58034
s 00032/00000/00000
d D 1.1 02/03/13 22:41:30 patch 2 1
cC
cF1
cK26148
cO-rw-rw-r--
e
s 00000/00000/00000
d D 1.0 02/03/13 22:41:30 patch 1 0
c BitKeeper file /home/marcelo/bk/linux-2.4/arch/s390x/kernel/asm-offsets.c
cBtorvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
cHplucky.distro.conectiva
cK38591
cParch/s390x/kernel/asm-offsets.c
cRc13a80ef8205363f
cV4
cX0x821
cZ-03:00
e
u
U
f e 0
f x 0x821
t
T
I 2
/*
 * Generate definitions needed by assembly language modules.
 * This code generates raw asm output which is post-processed to extract
 * and format the required data.
 */

#include <linux/config.h>
#include <linux/sched.h>

/* Use marker if you need to separate the values later */

#define DEFINE(sym, val, marker) \
	asm volatile("\n->" #sym " %0 " #val " " #marker : : "i" (val))

#define BLANK() asm volatile("\n->" : : )

int main(void)
{
	DEFINE(__THREAD_ar2, offsetof(struct task_struct, thread.ar2),);
	DEFINE(__THREAD_ar4, offsetof(struct task_struct, thread.ar4),);
	DEFINE(__THREAD_ksp, offsetof(struct task_struct, thread.ksp),);
	DEFINE(__THREAD_per, offsetof(struct task_struct, thread.per_info),);
	BLANK();
	DEFINE(__TASK_state, offsetof(struct task_struct, state),);
	DEFINE(__TASK_sigpending, offsetof(struct task_struct, sigpending),);
	DEFINE(__TASK_need_resched,
	       offsetof(struct task_struct, need_resched),);
	DEFINE(__TASK_ptrace, offsetof(struct task_struct, ptrace),);
	DEFINE(__TASK_processor, offsetof(struct task_struct, processor),);

	return 0;
}
E 2
I 1
E 1
