summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2017-03-07 06:57:14 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2017-03-07 06:57:14 +0100
commitdfe5d795000eb53b0f56696f7be9e8a12cd76275 (patch)
treeca14a9091f4f6084a574db8c04919e94a9da0548
parentf532038be75c4e215d5759b0cbd57c20ca5f3f20 (diff)
parent8e4bbb22f18fe934a2c9f7835723d469e921b2b6 (diff)
downloadkernel-4.11.0-0.rc1.git0.1.vanilla.knurd.1.fc25.tar.gz
kernel-4.11.0-0.rc1.git0.1.vanilla.knurd.1.fc25.tar.xz
kernel-4.11.0-0.rc1.git0.1.vanilla.knurd.1.fc25.zip
-rw-r--r--baseconfig/CONFIG_QEDF1
-rw-r--r--ccm-stack.patch49
-rwxr-xr-xfilter-modules.sh2
-rw-r--r--kernel-aarch64-debug.config1
-rw-r--r--kernel-aarch64.config1
-rw-r--r--kernel-armv7hl-debug.config1
-rw-r--r--kernel-armv7hl-lpae-debug.config1
-rw-r--r--kernel-armv7hl-lpae.config1
-rw-r--r--kernel-armv7hl.config1
-rw-r--r--kernel-i686-PAE.config1
-rw-r--r--kernel-i686-PAEdebug.config1
-rw-r--r--kernel-i686-debug.config1
-rw-r--r--kernel-i686.config1
-rw-r--r--kernel-ppc64-debug.config1
-rw-r--r--kernel-ppc64.config1
-rw-r--r--kernel-ppc64le-debug.config1
-rw-r--r--kernel-ppc64le.config1
-rw-r--r--kernel-ppc64p7-debug.config1
-rw-r--r--kernel-ppc64p7.config1
-rw-r--r--kernel-s390x-debug.config1
-rw-r--r--kernel-s390x.config1
-rw-r--r--kernel-x86_64-debug.config1
-rw-r--r--kernel-x86_64.config1
-rw-r--r--kernel.spec15
-rw-r--r--sources2
25 files changed, 32 insertions, 57 deletions
diff --git a/baseconfig/CONFIG_QEDF b/baseconfig/CONFIG_QEDF
new file mode 100644
index 000000000..33c24865a
--- /dev/null
+++ b/baseconfig/CONFIG_QEDF
@@ -0,0 +1 @@
+CONFIG_QEDF=m
diff --git a/ccm-stack.patch b/ccm-stack.patch
deleted file mode 100644
index b4228c5a4..000000000
--- a/ccm-stack.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 3b30460c5b0ed762be75a004e924ec3f8711e032 Mon Sep 17 00:00:00 2001
-From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
-Date: Mon, 27 Feb 2017 15:30:56 +0000
-Subject: crypto: ccm - move cbcmac input off the stack
-
-Commit f15f05b0a5de ("crypto: ccm - switch to separate cbcmac driver")
-refactored the CCM driver to allow separate implementations of the
-underlying MAC to be provided by a platform. However, in doing so, it
-moved some data from the linear region to the stack, which violates the
-SG constraints when the stack is virtually mapped.
-
-So move idata/odata back to the request ctx struct, of which we can
-reasonably expect that it has been allocated using kmalloc() et al.
-
-Reported-by: Johannes Berg <johannes@sipsolutions.net>
-Fixes: f15f05b0a5de ("crypto: ccm - switch to separate cbcmac driver")
-Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
-Tested-by: Johannes Berg <johannes@sipsolutions.net>
-Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
----
- crypto/ccm.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/crypto/ccm.c b/crypto/ccm.c
-index 4428488..1ce37ae 100644
---- a/crypto/ccm.c
-+++ b/crypto/ccm.c
-@@ -45,6 +45,7 @@ struct crypto_rfc4309_req_ctx {
-
- struct crypto_ccm_req_priv_ctx {
- u8 odata[16];
-+ u8 idata[16];
- u8 auth_tag[16];
- u32 flags;
- struct scatterlist src[3];
-@@ -183,8 +184,8 @@ static int crypto_ccm_auth(struct aead_request *req, struct scatterlist *plain,
- AHASH_REQUEST_ON_STACK(ahreq, ctx->mac);
- unsigned int assoclen = req->assoclen;
- struct scatterlist sg[3];
-- u8 odata[16];
-- u8 idata[16];
-+ u8 *odata = pctx->odata;
-+ u8 *idata = pctx->idata;
- int ilen, err;
-
- /* format control data for input */
---
-cgit v0.12
-
diff --git a/filter-modules.sh b/filter-modules.sh
index d4d40f9ca..c3fbaad03 100755
--- a/filter-modules.sh
+++ b/filter-modules.sh
@@ -24,7 +24,7 @@ ethdrvs="3com adaptec alteon amd atheros broadcom cadence calxeda chelsio cisco
inputdrvs="gameport tablet touchscreen"
-scsidrvs="aacraid aic7xxx aic94xx be2iscsi bfa bnx2i bnx2fc csiostor cxgbi esas2r fcoe fnic isci libsas lpfc megaraid mpt2sas mpt3sas mvsas pm8001 qla2xxx qla4xxx sym53c8xx_2 ufs"
+scsidrvs="aacraid aic7xxx aic94xx be2iscsi bfa bnx2i bnx2fc csiostor cxgbi esas2r fcoe fnic isci libsas lpfc megaraid mpt2sas mpt3sas mvsas pm8001 qla2xxx qla4xxx sym53c8xx_2 ufs qedf"
usbdrvs="atm image misc serial wusbcore"
diff --git a/kernel-aarch64-debug.config b/kernel-aarch64-debug.config
index a592de789..901119211 100644
--- a/kernel-aarch64-debug.config
+++ b/kernel-aarch64-debug.config
@@ -4095,6 +4095,7 @@ CONFIG_QCOM_WCNSS_CTRL=m
# CONFIG_QCOM_WCNSS_PIL is not set
CONFIG_QCOM_WDT=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-aarch64.config b/kernel-aarch64.config
index f016a2d3a..ee57765e5 100644
--- a/kernel-aarch64.config
+++ b/kernel-aarch64.config
@@ -4073,6 +4073,7 @@ CONFIG_QCOM_WCNSS_CTRL=m
# CONFIG_QCOM_WCNSS_PIL is not set
CONFIG_QCOM_WDT=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-armv7hl-debug.config b/kernel-armv7hl-debug.config
index e81fd48a3..995fa89b4 100644
--- a/kernel-armv7hl-debug.config
+++ b/kernel-armv7hl-debug.config
@@ -4425,6 +4425,7 @@ CONFIG_QCOM_WCNSS_CTRL=m
# CONFIG_QCOM_WCNSS_PIL is not set
CONFIG_QCOM_WDT=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-armv7hl-lpae-debug.config b/kernel-armv7hl-lpae-debug.config
index 47f8f4198..c7a10d987 100644
--- a/kernel-armv7hl-lpae-debug.config
+++ b/kernel-armv7hl-lpae-debug.config
@@ -4184,6 +4184,7 @@ CONFIG_QCOM_IRQ_COMBINER=y
# CONFIG_QCOM_SPMI_TEMP_ALARM is not set
# CONFIG_QCOM_SPMI_VADC is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-armv7hl-lpae.config b/kernel-armv7hl-lpae.config
index 180df196a..e10ac3725 100644
--- a/kernel-armv7hl-lpae.config
+++ b/kernel-armv7hl-lpae.config
@@ -4162,6 +4162,7 @@ CONFIG_QCOM_IRQ_COMBINER=y
# CONFIG_QCOM_SPMI_TEMP_ALARM is not set
# CONFIG_QCOM_SPMI_VADC is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-armv7hl.config b/kernel-armv7hl.config
index de13839b8..8050c2de4 100644
--- a/kernel-armv7hl.config
+++ b/kernel-armv7hl.config
@@ -4403,6 +4403,7 @@ CONFIG_QCOM_WCNSS_CTRL=m
# CONFIG_QCOM_WCNSS_PIL is not set
CONFIG_QCOM_WDT=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-i686-PAE.config b/kernel-i686-PAE.config
index b53e98e14..6002064ca 100644
--- a/kernel-i686-PAE.config
+++ b/kernel-i686-PAE.config
@@ -3921,6 +3921,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-i686-PAEdebug.config b/kernel-i686-PAEdebug.config
index f1efa87b8..82b8f9ae6 100644
--- a/kernel-i686-PAEdebug.config
+++ b/kernel-i686-PAEdebug.config
@@ -3942,6 +3942,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-i686-debug.config b/kernel-i686-debug.config
index 168b2946f..d47c0d982 100644
--- a/kernel-i686-debug.config
+++ b/kernel-i686-debug.config
@@ -3942,6 +3942,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-i686.config b/kernel-i686.config
index 2e327eb17..a3c3eed6a 100644
--- a/kernel-i686.config
+++ b/kernel-i686.config
@@ -3921,6 +3921,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64-debug.config b/kernel-ppc64-debug.config
index 2a642ec6d..7b2e3556c 100644
--- a/kernel-ppc64-debug.config
+++ b/kernel-ppc64-debug.config
@@ -3787,6 +3787,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64.config b/kernel-ppc64.config
index 9179d39da..39559e713 100644
--- a/kernel-ppc64.config
+++ b/kernel-ppc64.config
@@ -3764,6 +3764,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64le-debug.config b/kernel-ppc64le-debug.config
index 430972dfa..93937b4df 100644
--- a/kernel-ppc64le-debug.config
+++ b/kernel-ppc64le-debug.config
@@ -3727,6 +3727,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64le.config b/kernel-ppc64le.config
index ea1339635..f983a8f66 100644
--- a/kernel-ppc64le.config
+++ b/kernel-ppc64le.config
@@ -3704,6 +3704,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64p7-debug.config b/kernel-ppc64p7-debug.config
index f9f4bd40e..21e07cefb 100644
--- a/kernel-ppc64p7-debug.config
+++ b/kernel-ppc64p7-debug.config
@@ -3726,6 +3726,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-ppc64p7.config b/kernel-ppc64p7.config
index 290075ce2..af1bd6134 100644
--- a/kernel-ppc64p7.config
+++ b/kernel-ppc64p7.config
@@ -3703,6 +3703,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-s390x-debug.config b/kernel-s390x-debug.config
index a8b5f928b..300c8b13f 100644
--- a/kernel-s390x-debug.config
+++ b/kernel-s390x-debug.config
@@ -3617,6 +3617,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QDIO=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-s390x.config b/kernel-s390x.config
index f1d9ef696..297e1a581 100644
--- a/kernel-s390x.config
+++ b/kernel-s390x.config
@@ -3594,6 +3594,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QDIO=m
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-x86_64-debug.config b/kernel-x86_64-debug.config
index b5380420a..b9cbc61d6 100644
--- a/kernel-x86_64-debug.config
+++ b/kernel-x86_64-debug.config
@@ -3964,6 +3964,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel-x86_64.config b/kernel-x86_64.config
index 9e1aea9a3..e244dcbc6 100644
--- a/kernel-x86_64.config
+++ b/kernel-x86_64.config
@@ -3943,6 +3943,7 @@ CONFIG_QCOM_ADSP_PIL=m
# CONFIG_QCOM_HIDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
CONFIG_QEDE=m
+CONFIG_QEDF=m
CONFIG_QEDI=m
CONFIG_QED=m
CONFIG_QED_SRIOV=y
diff --git a/kernel.spec b/kernel.spec
index 939f258da..8bfbb341c 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -75,9 +75,9 @@ Summary: The Linux kernel
# The next upstream release sublevel (base_sublevel+1)
%define upstream_sublevel %(echo $((%{base_sublevel} + 1)))
# The rc snapshot level
-%global rcrev 0
+%global rcrev 1
# The git snapshot level
-%define gitrev 9
+%define gitrev 0
# Set rpm version accordingly
%define rpmversion 4.%{upstream_sublevel}.0
%endif
@@ -133,7 +133,7 @@ Summary: The Linux kernel
# Set debugbuildsenabled to 1 for production (build separate debug kernels)
# and 0 for rawhide (all kernels are debug kernels).
# See also 'make debug' and 'make release'.
-%define debugbuildsenabled 0
+%define debugbuildsenabled 1
# Want to build a vanilla kernel build without any non-upstream patches?
%define with_vanilla %{?_without_vanilla: 0} %{?!_without_vanilla: 1}
@@ -610,9 +610,6 @@ Patch509: MODSIGN-Don-t-try-secure-boot-if-EFI-runtime-is-disa.patch
#CVE-2016-3134 rhbz 1317383 1317384
Patch665: netfilter-x_tables-deal-with-bogus-nextoffset-values.patch
-#rhbz 1427593
-Patch666: ccm-stack.patch
-
# grabbed from mailing list
Patch667: v3-Revert-tty-serial-pl011-add-ttyAMA-for-matching-pl011-console.patch
@@ -2183,6 +2180,12 @@ fi
#
#
%changelog
+* Mon Mar 06 2017 Laura Abbott <labbott@fedoraproject.org> - 4.11.0-0.rc1.git0.1
+- Linux v4.11-rc1
+
+* Mon Mar 06 2017 Laura Abbott <labbott@fedoraproject.org>
+- Disable debugging options.
+
* Fri Mar 03 2017 Laura Abbott <labbott@fedoraproject.org> - 4.11.0-0.rc0.git9.1
- Linux v4.10-11319-gc82be9d
diff --git a/sources b/sources
index 22a433089..442f7a134 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
SHA512 (linux-4.10.tar.xz) = c3690125a8402df638095bd98a613fcf1a257b81de7611c84711d315cd11e2634ab4636302b3742aedf1e3ba9ce0fea53fe8c7d48e37865d8ee5db3565220d90
SHA512 (perf-man-4.10.tar.gz) = 2c830e06f47211d70a8330961487af73a8bc01073019475e6b6131d3bb8c95658b77ca0ae5f1b44371accf103658bc5a3a4366b3e017a4088a8fd408dd6867e8
-SHA512 (patch-4.10-git9.xz) = 7e934f2001741547552ace9f4f81da423cc21607c27bcc8c73312a57d7ac29d1f2e191c6739380518cd11828a5b01a36fddb2a4eb5cc214773dff6024279c5cd
+SHA512 (patch-4.11-rc1.xz) = a7b11ee0f2faedb2415effd3ad49e5309e30b3e57a49106a18d21628f4d08b988112086b080d4620bd9e00b07ec2751a5bfe05c348cfd343020c39d4d18faa81