[PATCH] uml: size register files correctly
We were using the wrong symbol to size register files. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
7b65fee21c
commit
e46962fdd2
@@ -75,7 +75,7 @@ union uml_pt_regs {
|
|||||||
#endif
|
#endif
|
||||||
#ifdef UML_CONFIG_MODE_SKAS
|
#ifdef UML_CONFIG_MODE_SKAS
|
||||||
struct skas_regs {
|
struct skas_regs {
|
||||||
unsigned long regs[HOST_FRAME_SIZE];
|
unsigned long regs[MAX_REG_NR];
|
||||||
unsigned long fp[HOST_FP_SIZE];
|
unsigned long fp[HOST_FP_SIZE];
|
||||||
unsigned long xfp[HOST_XFP_SIZE];
|
unsigned long xfp[HOST_XFP_SIZE];
|
||||||
struct faultinfo faultinfo;
|
struct faultinfo faultinfo;
|
||||||
|
@@ -108,7 +108,7 @@ union uml_pt_regs {
|
|||||||
* file size, while i386 uses FRAME_SIZE. Therefore, we need
|
* file size, while i386 uses FRAME_SIZE. Therefore, we need
|
||||||
* to use UM_FRAME_SIZE here instead of HOST_FRAME_SIZE.
|
* to use UM_FRAME_SIZE here instead of HOST_FRAME_SIZE.
|
||||||
*/
|
*/
|
||||||
unsigned long regs[UM_FRAME_SIZE];
|
unsigned long regs[MAX_REG_NR];
|
||||||
unsigned long fp[HOST_FP_SIZE];
|
unsigned long fp[HOST_FP_SIZE];
|
||||||
struct faultinfo faultinfo;
|
struct faultinfo faultinfo;
|
||||||
long syscall;
|
long syscall;
|
||||||
|
Reference in New Issue
Block a user