diff options
author | Josh Boyer <jwboyer@redhat.com> | 2011-08-19 08:32:04 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@redhat.com> | 2011-08-19 08:32:04 -0400 |
commit | c3c2b77d29fe2057cb4647f2810b6415ff55fadb (patch) | |
tree | 0e670b7f53fedfda92998b01e5eb30c4636c0704 | |
parent | 02587b4efa279dbcc9d7f80fd7636074bb905012 (diff) | |
download | kernel-c3c2b77d29fe2057cb4647f2810b6415ff55fadb.tar.gz kernel-c3c2b77d29fe2057cb4647f2810b6415ff55fadb.tar.xz kernel-c3c2b77d29fe2057cb4647f2810b6415ff55fadb.zip |
3.1-rc2-git5 snapshot
Make XHCI builtin, add a patch to fix a race in the crypto framework
-rw-r--r-- | config-generic | 2 | ||||
-rw-r--r-- | crypto-register-cryptd-first.patch | 26 | ||||
-rw-r--r-- | kernel.spec | 11 | ||||
-rw-r--r-- | sources | 2 |
4 files changed, 37 insertions, 4 deletions
diff --git a/config-generic b/config-generic index e320aeffa..443b2c114 100644 --- a/config-generic +++ b/config-generic @@ -3126,7 +3126,7 @@ CONFIG_USB_SL811_HCD=m CONFIG_USB_SL811_HCD_ISO=y # CONFIG_USB_SL811_CS is not set # CONFIG_USB_R8A66597_HCD is not set -CONFIG_USB_XHCI_HCD=m +CONFIG_USB_XHCI_HCD=y # CONFIG_USB_XHCI_HCD_DEBUGGING is not set CONFIG_USB_ISP1362_HCD=m diff --git a/crypto-register-cryptd-first.patch b/crypto-register-cryptd-first.patch new file mode 100644 index 000000000..0cd55d6fc --- /dev/null +++ b/crypto-register-cryptd-first.patch @@ -0,0 +1,26 @@ +commit 9d4c522a113f6caa8b792ae829a25490fa87b1a2 +Author: Herbert Xu <herbert@gondor.apana.org.au> +Date: Fri Aug 19 16:11:23 2011 +0800 + + crypto: cryptd - Use subsys_initcall to prevent races with aesni + + As cryptd is depeneded on by other algorithms such as aesni-intel, + it needs to be registered before them. When everything is built + as modules, this occurs naturally. However, for this to work when + they are built-in, we need to use subsys_initcall in cryptd. + + Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> + +diff --git a/crypto/cryptd.c b/crypto/cryptd.c +index e46d21a..671d4d6 100644 +--- a/crypto/cryptd.c ++++ b/crypto/cryptd.c +@@ -945,7 +945,7 @@ static void __exit cryptd_exit(void) + crypto_unregister_template(&cryptd_tmpl); + } + +-module_init(cryptd_init); ++subsys_initcall(cryptd_init); + module_exit(cryptd_exit); + + MODULE_LICENSE("GPL"); diff --git a/kernel.spec b/kernel.spec index c2ca4b9c3..873c15f3a 100644 --- a/kernel.spec +++ b/kernel.spec @@ -51,7 +51,7 @@ Summary: The Linux kernel # For non-released -rc kernels, this will be prepended with "0.", so # for example a 3 here will become 0.3 # -%global baserelease 3 +%global baserelease 0 %global fedora_build %{baserelease} # base_sublevel is the kernel version we're starting with and patching @@ -84,7 +84,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 2 # The git snapshot level -%define gitrev 4 +%define gitrev 5 # Set rpm version accordingly %define rpmversion 3.%{upstream_sublevel}.0 %endif @@ -719,6 +719,7 @@ Patch12025: rcu-avoid-just-onlined-cpu-resched.patch Patch12026: block-stray-block-put-after-teardown.patch Patch12027: usb-add-quirk-for-logitech-webcams.patch Patch12028: fix-perf-build.patch +Patch12029: crypto-register-cryptd-first.patch # Runtime power management @@ -1345,6 +1346,7 @@ ApplyPatch block-stray-block-put-after-teardown.patch ApplyPatch usb-add-quirk-for-logitech-webcams.patch ApplyPatch fix-perf-build.patch +ApplyPatch crypto-register-cryptd-first.patch # Runtime PM #ApplyPatch linux-2.6-usb-pci-autosuspend.patch @@ -2070,6 +2072,11 @@ fi # ||----w | # || || %changelog +* Fri Aug 19 2011 Josh Boyer <jwboyer@redhat.com> +- Linux 3.1-rc2-git5 +- Change XHCI to builtin (rhbz 731706) +- Add patch to fix race between cryptd and aesni (rhbz 721002) + * Thu Aug 18 2011 Josh Boyer <jwboyer@redhat.com> - Adjust provides/obsoletes to replace the cpupowerutils package @@ -1,3 +1,3 @@ 398e95866794def22b12dfbc15ce89c0 linux-3.0.tar.bz2 f358c354ab6d3b0da1265b504f85ec50 patch-3.1-rc2.bz2 -65afd667c215f3a9470c7b0f5d7b7b9a patch-3.1-rc2-git4.bz2 +93c566575ae1dc33be4bc345177e4a7d patch-3.1-rc2-git5.bz2 |