uml: eliminate floating point state from register file
The floating point fields in the pt_regs register file aren't used, so they are deleted. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f0c4cad99c
commit
75c7e214ba
|
@ -54,8 +54,6 @@ extern int sysemu_supported;
|
||||||
|
|
||||||
struct uml_pt_regs {
|
struct uml_pt_regs {
|
||||||
unsigned long gp[MAX_REG_NR];
|
unsigned long gp[MAX_REG_NR];
|
||||||
unsigned long fp[HOST_FP_SIZE];
|
|
||||||
unsigned long xfp[HOST_XFP_SIZE];
|
|
||||||
struct faultinfo faultinfo;
|
struct faultinfo faultinfo;
|
||||||
long syscall;
|
long syscall;
|
||||||
int is_user;
|
int is_user;
|
||||||
|
|
|
@ -86,7 +86,6 @@
|
||||||
|
|
||||||
struct uml_pt_regs {
|
struct uml_pt_regs {
|
||||||
unsigned long gp[MAX_REG_NR];
|
unsigned long gp[MAX_REG_NR];
|
||||||
unsigned long fp[HOST_FP_SIZE];
|
|
||||||
struct faultinfo faultinfo;
|
struct faultinfo faultinfo;
|
||||||
long syscall;
|
long syscall;
|
||||||
int is_user;
|
int is_user;
|
||||||
|
|
Loading…
Reference in New Issue