lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 10 Dec 2007 16:37:34 +0000
From:	"Jan Beulich" <jbeulich@...ell.com>
To:	<mingo@...hat.com>
Cc:	<linux-kernel@...r.kernel.org>
Subject: [PATCH] i386: restore proper asm constraints in do_IRQ()

Two prior changes resulted in the "ecx" clobber being lost.

Signed-off-by: Jan Beulich <jbeulich@...ell.com>

 arch/x86/kernel/irq_32.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.24-rc4/arch/x86/kernel/irq_32.c	2007-12-07 09:00:59.000000000 +0100
+++ 2.6.24-rc4-i386-do_IRQ-constraints/arch/x86/kernel/irq_32.c	2007-12-04 16:09:33.000000000 +0100
@@ -134,7 +134,7 @@ fastcall unsigned int do_IRQ(struct pt_r
 			: "=a" (arg1), "=d" (arg2), "=b" (ebx)
 			:  "0" (irq),   "1" (desc),  "2" (isp),
 			   "D" (desc->handle_irq)
-			: "memory", "cc"
+			: "memory", "cc", "ecx"
 		);
 	} else
 #endif



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ