All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86: Preserve iopl on fork and execve
@ 2015-05-11 20:49 Alex Henrie
  2015-05-11 20:57 ` H. Peter Anvin
  2015-05-11 21:09 ` One Thousand Gnomes
  0 siblings, 2 replies; 3+ messages in thread
From: Alex Henrie @ 2015-05-11 20:49 UTC (permalink / raw)
  To: Kees Cook, H. Peter Anvin, Doug Johnson, Thomas Gleixner,
	Ingo Molnar, Tyler Hicks, Al Viro, linux-kernel
  Cc: Alex Henrie

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Suggested-by: Doug Johnson <dougvj@dougvj.net>
---
 arch/x86/kernel/process_32.c | 2 +-
 arch/x86/kernel/process_64.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c
index 8ed2106..86bfe7c 100644
--- a/arch/x86/kernel/process_32.c
+++ b/arch/x86/kernel/process_32.c
@@ -205,7 +205,7 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
 	regs->cs		= __USER_CS;
 	regs->ip		= new_ip;
 	regs->sp		= new_sp;
-	regs->flags		= X86_EFLAGS_IF;
+	regs->flags		|= X86_EFLAGS_IF;
 	force_iret();
 }
 EXPORT_SYMBOL_GPL(start_thread);
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c
index ddfdbf7..fc22e5d 100644
--- a/arch/x86/kernel/process_64.c
+++ b/arch/x86/kernel/process_64.c
@@ -238,7 +238,7 @@ start_thread_common(struct pt_regs *regs, unsigned long new_ip,
 	regs->sp		= new_sp;
 	regs->cs		= _cs;
 	regs->ss		= _ss;
-	regs->flags		= X86_EFLAGS_IF;
+	regs->flags		|= X86_EFLAGS_IF;
 	force_iret();
 }
 
-- 
2.4.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-11 21:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-11 20:49 [PATCH] x86: Preserve iopl on fork and execve Alex Henrie
2015-05-11 20:57 ` H. Peter Anvin
2015-05-11 21:09 ` One Thousand Gnomes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.