Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79905
b: refs/heads/master
c: d277fb8
h: refs/heads/master
i:
  79903: 39fe354
v: v3
  • Loading branch information
Roland McGrath authored and Ingo Molnar committed Jan 30, 2008
1 parent 6a50d98 commit 4f8173a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5fd4d16bd59a9fc84ca94c4fce4abc23fe219108
refs/heads/master: d277fb89dfb042deba04a8e765718cc8b3825e85
16 changes: 16 additions & 0 deletions trunk/arch/x86/ia32/ptrace32.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,27 @@ static int putreg32(struct task_struct *child, unsigned regno, u32 val)
if (val && (val & 3) != 3)
return -EIO;
child->thread.fsindex = val & 0xffff;
if (child == current)
loadsegment(fs, child->thread.fsindex);
break;
case offsetof(struct user32, regs.gs):
if (val && (val & 3) != 3)
return -EIO;
child->thread.gsindex = val & 0xffff;
if (child == current)
load_gs_index(child->thread.gsindex);
break;
case offsetof(struct user32, regs.ds):
if (val && (val & 3) != 3)
return -EIO;
child->thread.ds = val & 0xffff;
if (child == current)
loadsegment(ds, child->thread.ds);
break;
case offsetof(struct user32, regs.es):
child->thread.es = val & 0xffff;
if (child == current)
loadsegment(es, child->thread.ds);
break;
case offsetof(struct user32, regs.ss):
if ((val & 3) != 3)
Expand Down Expand Up @@ -129,15 +137,23 @@ static int getreg32(struct task_struct *child, unsigned regno, u32 *val)
switch (regno) {
case offsetof(struct user32, regs.fs):
*val = child->thread.fsindex;
if (child == current)
asm("movl %%fs,%0" : "=r" (*val));
break;
case offsetof(struct user32, regs.gs):
*val = child->thread.gsindex;
if (child == current)
asm("movl %%gs,%0" : "=r" (*val));
break;
case offsetof(struct user32, regs.ds):
*val = child->thread.ds;
if (child == current)
asm("movl %%ds,%0" : "=r" (*val));
break;
case offsetof(struct user32, regs.es):
*val = child->thread.es;
if (child == current)
asm("movl %%es,%0" : "=r" (*val));
break;

R32(cs, cs);
Expand Down

0 comments on commit 4f8173a

Please sign in to comment.