Skip to content

Commit

Permalink
x86: cleanup replace most vm86 flags with flags from processor-flags.…
Browse files Browse the repository at this point in the history
…h, fix

- fix build error
- fix CONFIG_HEADERS_CHECK error

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Apr 17, 2008
1 parent f7743fe commit 6093015
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/traps_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ void __kprobes do_debug(struct pt_regs *regs, long error_code)

clear_TF_reenable:
set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
regs->flags &= ~TF_MASK;
regs->flags &= ~X86_EFLAGS_TF;
return;
}

Expand Down
1 change: 1 addition & 0 deletions include/asm-x86/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ header-y += prctl.h
header-y += ptrace-abi.h
header-y += sigcontext32.h
header-y += ucontext.h
header-y += processor-flags.h

unifdef-y += e820.h
unifdef-y += ist.h
Expand Down

0 comments on commit 6093015

Please sign in to comment.