[IA64] Module gp must point to valid memory
authorKeith Owens <kaos@sgi.com>
Mon, 6 Jun 2005 09:04:00 +0000 (02:04 -0700)
committerTony Luck <tony.luck@intel.com>
Wed, 8 Jun 2005 18:41:31 +0000 (11:41 -0700)
commit866ba633a81c1e179038f7527809d9513160a6f7
tree10c06d91204027a8688a2337aa061e51a3321c0f
parentad597bd518559f59ede8d01262cdf4467e13282e
[IA64] Module gp must point to valid memory

Some bits of the kernel assume that gp always points to valid memory,
in particular PHYSICAL_MODE_ENTER() assumes that both gp and sp are
valid virtual addresses with associated physical pages.  The IA64
module loader puts gp well past the end of the module, with no physical
backing.  Offsets on gp are still valid, but physical mode addressing
breaks for modules.  Ensure that gp always falls within the module
body.  Also ensure that gp is 8 byte aligned.

Signed-off-by: Keith Owens <kaos@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
arch/ia64/kernel/module.c