diff --git a/kernel.spec b/kernel.spec index 0255796..b076277 100644 --- a/kernel.spec +++ b/kernel.spec @@ -54,7 +54,7 @@ Summary: The Linux kernel # For non-released -rc kernels, this will be appended after the rcX and # gitX tags, so a 3 here would become part of release "0.rcX.gitX.3" # -%global baserelease 3 +%global baserelease 4 %global fedora_build %{baserelease} # base_sublevel is the kernel version we're starting with and patching @@ -784,6 +784,10 @@ Patch21380: wimax-i2400m-prevent-a-possible-kernel-bug-due-to-mi.patch #rhbz 806676 807632 Patch21385: libata-disable-runtime-pm-for-hotpluggable-port.patch +#rhbz 809014 +Patch21390: x86-Use-correct-byte-sized-register-constraint-in-__xchg_op.patch +Patch21391: x86-Use-correct-byte-sized-register-constraint-in-__add.patch + Patch21400: unhandled-irqs-switch-to-polling.patch Patch21501: nfs-Fix-length-of-buffer-copied-in-__nfs4_get_acl_uncached.patch @@ -1534,6 +1538,10 @@ ApplyPatch wimax-i2400m-prevent-a-possible-kernel-bug-due-to-mi.patch #rhbz 806676 807632 ApplyPatch libata-disable-runtime-pm-for-hotpluggable-port.patch +#rhbz 809014 +ApplyPatch x86-Use-correct-byte-sized-register-constraint-in-__xchg_op.patch +ApplyPatch x86-Use-correct-byte-sized-register-constraint-in-__add.patch + # END OF PATCH APPLICATIONS %endif @@ -2373,6 +2381,9 @@ fi # '-' | | # '-' %changelog +* Tue Apr 10 2012 Josh Boyer +- Backport fixes for correct register constraints in cmpxchg.h (rhbz 809014) + * Thu Apr 05 2012 Dave Jones - Better watermark the number of pages used by hibernation I/O (Bojan Smojver) (rhbz 785384) diff --git a/x86-Use-correct-byte-sized-register-constraint-in-__add.patch b/x86-Use-correct-byte-sized-register-constraint-in-__add.patch new file mode 100644 index 0000000..3ec7656 --- /dev/null +++ b/x86-Use-correct-byte-sized-register-constraint-in-__add.patch @@ -0,0 +1,35 @@ +From: H. Peter Anvin +Date: Fri, 6 Apr 2012 16:30:57 +0000 (-0700) +Subject: x86: Use correct byte-sized register constraint in __add() +X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftip%2Ftip.git;a=commitdiff_plain;h=8c91c5325e107ec17e40a59a47c6517387d64eb7 + +x86: Use correct byte-sized register constraint in __add() + +Similar to: + + 2ca052a x86: Use correct byte-sized register constraint in __xchg_op() + +... the __add() macro also needs to use a "q" constraint in the +byte-sized case, lest we try to generate an illegal register. + +Link: http://lkml.kernel.org/r/4F7A3315.501@goop.org +Signed-off-by: H. Peter Anvin +Cc: Jeremy Fitzhardinge +Cc: Leigh Scott +Cc: Thomas Reitmayr +Cc: v3.3 +--- + +diff --git a/arch/x86/include/asm/cmpxchg.h b/arch/x86/include/asm/cmpxchg.h +index bc18d0e..99480e5 100644 +--- a/arch/x86/include/asm/cmpxchg.h ++++ b/arch/x86/include/asm/cmpxchg.h +@@ -173,7 +173,7 @@ extern void __add_wrong_size(void) + switch (sizeof(*(ptr))) { \ + case __X86_CASE_B: \ + asm volatile (lock "addb %b1, %0\n" \ +- : "+m" (*(ptr)) : "ri" (inc) \ ++ : "+m" (*(ptr)) : "qi" (inc) \ + : "memory", "cc"); \ + break; \ + case __X86_CASE_W: \ diff --git a/x86-Use-correct-byte-sized-register-constraint-in-__xchg_op.patch b/x86-Use-correct-byte-sized-register-constraint-in-__xchg_op.patch new file mode 100644 index 0000000..a33602f --- /dev/null +++ b/x86-Use-correct-byte-sized-register-constraint-in-__xchg_op.patch @@ -0,0 +1,32 @@ +From: Jeremy Fitzhardinge +Date: Mon, 2 Apr 2012 23:15:33 +0000 (-0700) +Subject: x86: Use correct byte-sized register constraint in __xchg_op() +X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftip%2Ftip.git;a=commitdiff_plain;h=2ca052a3710fac208eee690faefdeb8bbd4586a1 + +x86: Use correct byte-sized register constraint in __xchg_op() + +x86-64 can access the low half of any register, but i386 can only do +it with a subset of registers. 'r' causes compilation failures on i386, +but 'q' expresses the constraint properly. + +Signed-off-by: Jeremy Fitzhardinge +Link: http://lkml.kernel.org/r/4F7A3315.501@goop.org +Reported-by: Leigh Scott +Tested-by: Thomas Reitmayr +Signed-off-by: H. Peter Anvin +Cc: v3.3 +--- + +diff --git a/arch/x86/include/asm/cmpxchg.h b/arch/x86/include/asm/cmpxchg.h +index b3b7332..bc18d0e 100644 +--- a/arch/x86/include/asm/cmpxchg.h ++++ b/arch/x86/include/asm/cmpxchg.h +@@ -43,7 +43,7 @@ extern void __add_wrong_size(void) + switch (sizeof(*(ptr))) { \ + case __X86_CASE_B: \ + asm volatile (lock #op "b %b0, %1\n" \ +- : "+r" (__ret), "+m" (*(ptr)) \ ++ : "+q" (__ret), "+m" (*(ptr)) \ + : : "memory", "cc"); \ + break; \ + case __X86_CASE_W: \