#define KSTACK_SIZE MEM_1MB
#define KSTACK_START (USER_START - KSTACK_SIZE)
#define KSTACK_TOP ((USER_START - 1) & ~0xf)
#define KSTACK_SIZE MEM_1MB
#define KSTACK_START (USER_START - KSTACK_SIZE)
#define KSTACK_TOP ((USER_START - 1) & ~0xf)
#define USTACK_SIZE MEM_4MB
#define USTACK_TOP 0x9ffffff0
#define USTACK_END (0x9fffffff - USTACK_SIZE + 1)
#define USTACK_SIZE MEM_4MB
#define USTACK_TOP 0x9ffffff0
#define USTACK_END (0x9fffffff - USTACK_SIZE + 1)
// From Linux kernel v2.6.0 <kernel.h:194>
/**
* container_of - cast a member of a structure out to the containing structure
// From Linux kernel v2.6.0 <kernel.h:194>
/**
* container_of - cast a member of a structure out to the containing structure