commit 0d4c8b4c219ba6e83e2d8e3a973b56925d98209d
Author: Jan RÄ™korajski <[email protected]>
Date:   Thu Jul 8 10:18:19 2021 +0200

    - 4.4.238
    - fix building with gcc 11
    - fix shebangs

 kernel-regressions.patch | 368 +++--------------------------------------------
 kernel.spec              |  10 +-
 2 files changed, 29 insertions(+), 349 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index b76fe89d..ae31c52e 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -70,7 +70,7 @@
 
 %define                rel             1
 %define                basever         4.14
-%define                postver         .233
+%define                postver         .238
 
 # define this to '-%{basever}' for longterm branch
 %define                versuffix       -%{basever}
@@ -122,7 +122,7 @@ Source0:    
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: bacdb9ffdcd922aa069a5e1520160e24
 %if "%{postver}" != ".0"
 Patch0:                
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  debf7683ac9be1fe36e80bd3fbe353db
+# Patch0-md5:  6bd1856e703bbb5237514b5601a1822e
 %endif
 Source1:       kernel.sysconfig
 
@@ -698,7 +698,7 @@ rm -f localversion-rt
 # Small fixes:
 %patch2000 -p1
 %patch2001 -p1
-#%patch2003 -p1
+%patch2003 -p1
 
 # Do not remove this, please!
 #%%patch50000 -p1
@@ -734,8 +734,12 @@ find -name '*.pl' -print0 | \
        scripts/cleanpatch \
        scripts/get_dvb_firmware \
        scripts/kernel-doc \
+       scripts/sphinx-pre-install \
        scripts/stackdelta
 
+%{__sed} -i -e '1s,/usr/bin/env bash,/bin/bash,' \
+       scripts/config
+
 %build
 install -d %{objdir}
 cat > %{targetobj}.mk <<'EOF'
diff --git a/kernel-regressions.patch b/kernel-regressions.patch
index b26e1c44..835b02ea 100644
--- a/kernel-regressions.patch
+++ b/kernel-regressions.patch
@@ -1,346 +1,22 @@
-rom ae060e0b7bc071bd73dd5319b93c3344d9e10212 Mon Sep 17 00:00:00 2001
-From: Manfred Spraul <[email protected]>
-To: [email protected]
-Cc: [email protected]
-Cc: [email protected]
-Cc: [email protected]
-Cc: [email protected]
-Bcc: [email protected]
-Date: Wed, 10 Dec 2008 18:17:06 +0100
-Subject: [PATCH] lib/idr.c: Fix bug introduced by RCU fix
-
-The last patch to lib/idr.c caused a bug if idr_get_new_above() was
-called on an empty idr:
-Usually, nodes stay on the same layer. New layers are added to the top
-of the tree.
-The exception is idr_get_new_above() on an empty tree: In this case,
-the new root node is first added on layer 0, then moved upwards.
-p->layer was not updated.
-
-As usual: You shall never rely on the source code comments, they
-will only mislead you.
-
-Signed-off-by: Manfred Spraul <[email protected]>
----
- lib/idr.c |    8 +++++++-
- 1 files changed, 7 insertions(+), 1 deletions(-)
-
-diff --git a/lib/idr.c b/lib/idr.c
-index 7a785a0..1c4f928 100644
---- a/lib/idr.c
-+++ b/lib/idr.c
-@@ -220,8 +220,14 @@ build_up:
-        */
-       while ((layers < (MAX_LEVEL - 1)) && (id >= (1 << (layers*IDR_BITS)))) {
-               layers++;
--              if (!p->count)
-+              if (!p->count) {
-+                      /* special case: if the tree is currently empty,
-+                       * then we grow the tree by moving the top node
-+                       * upwards.
-+                       */
-+                      p->layer++;
-                       continue;
-+              }
-               if (!(new = get_from_free_list(idp))) {
-                       /*
-                        * The allocation failed.  If we built part of
--- 
-1.5.6.5
-
-From: Trond Myklebust <[email protected]>
-Date: Thu, 20 Nov 2008 21:06:21 +0000 (-0500)
-Subject: SUNRPC: Fix a performance regression in the RPC authentication code
-X-Git-Tag: v2.6.28-rc6~4
-X-Git-Url: 
http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=23918b03060f6e572168fdde1798a905679d2e06
-
-SUNRPC: Fix a performance regression in the RPC authentication code
-
-Fix a regression reported by Max Kellermann whereby kernel profiling
-showed that his clients were spending 45% of their time in
-rpcauth_lookup_credcache.
-
-It turns out that although his processes had identical uid/gid/groups,
-generic_match() was failing to detect this, because the task->group_info
-pointers were not shared. This again lead to the creation of a huge number
-of identical credentials at the RPC layer.
-
-The regression is fixed by comparing the contents of task->group_info
-if the actual pointers are not identical.
-
-Signed-off-by: Trond Myklebust <[email protected]>
-Signed-off-by: Linus Torvalds <[email protected]>
----
-
-diff --git a/net/sunrpc/auth_generic.c b/net/sunrpc/auth_generic.c
-index 744b79f..4028502 100644
---- a/net/sunrpc/auth_generic.c
-+++ b/net/sunrpc/auth_generic.c
-@@ -133,13 +133,29 @@ static int
- generic_match(struct auth_cred *acred, struct rpc_cred *cred, int flags)
- {
-       struct generic_cred *gcred = container_of(cred, struct generic_cred, 
gc_base);
-+      int i;
- 
-       if (gcred->acred.uid != acred->uid ||
-           gcred->acred.gid != acred->gid ||
--          gcred->acred.group_info != acred->group_info ||
-           gcred->acred.machine_cred != acred->machine_cred)
--              return 0;
-+              goto out_nomatch;
-+
-+      /* Optimisation in the case where pointers are identical... */
-+      if (gcred->acred.group_info == acred->group_info)
-+              goto out_match;
-+
-+      /* Slow path... */
-+      if (gcred->acred.group_info->ngroups != acred->group_info->ngroups)
-+              goto out_nomatch;
-+      for (i = 0; i < gcred->acred.group_info->ngroups; i++) {
-+              if (GROUP_AT(gcred->acred.group_info, i) !=
-+                              GROUP_AT(acred->group_info, i))
-+                      goto out_nomatch;
-+      }
-+out_match:
-       return 1;
-+out_nomatch:
-+      return 0;
- }
- 
- void __init rpc_init_generic_auth(void)
-From d238e150805a0710fa626f9a7f65816aa15b741c Mon Sep 17 00:00:00 2001
-From: Brian Rogers <[email protected]>
-Date: Fri, 4 Sep 2009 05:55:01 -0700
-Subject: [PATCH] Fix memory corruption during IR initialization for various 
tuner cards
-
-In two different places the IR_i2c_init_data structure is used to store some
-data for particular cards that will later override the settings that would
-otherwise be used by the ir-kbd-i2c driver in ir_probe(). The way those
-settings get there is problematic: init_data is on the stack, and a pointer to
-it is stored to be used after the function that sets it up returns. Not good.
-
-init_data might be overwritten by the time ir_probe() runs. ir_probe() will
-then call ir_input_init(), which proceeds to fill out the dev->keybit bit
-array with a 1 in the appropriate slot for every key on the tuner's remote.
-
-But if the keymap pointer now points to random garbage, that will be used
-instead to determine where to write each 1. And since IR_KEYTAB_TYPE is u32,
-it can be write millions of bits past the end of dev->keybit. Essentially
-this bug writes a 1 to up to 128 random bits in memory, stopping early (and
-oopsing) if or when it hits an invalid page.
-
-To fix this, I define a static IR_i2c_init_data struct for each card that
-needs one rather than creating the data on the stack. This way, I can supply a
-pointer that will remain valid. Also I don't have to allocate memory just to
-store information that's already known at compile time and I don't have bother
-freeing it, either.
-
-This fixes a regression caused by commit 4d7a2d6721.
-
-Signed-off-by: Brian Rogers <[email protected]>
----
- drivers/media/video/em28xx/em28xx-cards.c   |   36 +++++++++-----
- drivers/media/video/saa7134/saa7134-input.c |   71 ++++++++++++++++++---------
- 2 files changed, 70 insertions(+), 37 deletions(-)
-
-diff --git a/drivers/media/video/em28xx/em28xx-cards.c 
b/drivers/media/video/em28xx/em28xx-cards.c
-index 1c2e544..be9a4e8 100644
---- a/drivers/media/video/em28xx/em28xx-cards.c
-+++ b/drivers/media/video/em28xx/em28xx-cards.c
-@@ -2167,11 +2167,29 @@ static int em28xx_hint_board(struct em28xx *dev)
-       return -1;
- }
- 
-+static struct IR_i2c_init_data init_data_em28xx_terratec = {
-+      .name = "i2c IR (EM28XX Terratec)",
-+      .ir_codes = ir_codes_em_terratec,
-+      .get_key = em28xx_get_key_terratec,
-+};
-+
-+static struct IR_i2c_init_data init_data_em28xx_pinnacle = {
-+      .name = "i2c IR (EM28XX Pinnacle PCTV)",
-+      .ir_codes = ir_codes_pinnacle_grey,
-+      .get_key = em28xx_get_key_pinnacle_usb_grey,
-+};
-+
-+static struct IR_i2c_init_data init_data_em28xx_hauppauge = {
-+      .name = "i2c IR (EM2840 Hauppauge)",
-+      .ir_codes = ir_codes_hauppauge_new,
-+      .get_key = em28xx_get_key_em_haup,
-+};
-+
- /* ----------------------------------------------------------------------- */
- void em28xx_register_i2c_ir(struct em28xx *dev)
- {
-       struct i2c_board_info info;
--      struct IR_i2c_init_data init_data;
-+      struct IR_i2c_init_data *init_data = NULL;
-       const unsigned short addr_list[] = {
-                0x30, 0x47, I2C_CLIENT_END
-       };
-@@ -2180,7 +2198,6 @@ void em28xx_register_i2c_ir(struct em28xx *dev)
-               return;
- 
-       memset(&info, 0, sizeof(struct i2c_board_info));
--      memset(&init_data, 0, sizeof(struct IR_i2c_init_data));
-       strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
- 
-       /* detect & configure */
-@@ -2191,19 +2208,13 @@ void em28xx_register_i2c_ir(struct em28xx *dev)
-               break;
-       case (EM2800_BOARD_TERRATEC_CINERGY_200):
-       case (EM2820_BOARD_TERRATEC_CINERGY_250):
--              init_data.ir_codes = ir_codes_em_terratec;
--              init_data.get_key = em28xx_get_key_terratec;
--              init_data.name = "i2c IR (EM28XX Terratec)";
-+              init_data = &init_data_em28xx_terratec;
-               break;
-       case (EM2820_BOARD_PINNACLE_USB_2):
--              init_data.ir_codes = ir_codes_pinnacle_grey;
--              init_data.get_key = em28xx_get_key_pinnacle_usb_grey;
--              init_data.name = "i2c IR (EM28XX Pinnacle PCTV)";
-+              init_data = &init_data_em28xx_pinnacle;
-               break;
-       case (EM2820_BOARD_HAUPPAUGE_WINTV_USB_2):
--              init_data.ir_codes = ir_codes_hauppauge_new;
--              init_data.get_key = em28xx_get_key_em_haup;
--              init_data.name = "i2c IR (EM2840 Hauppauge)";
-+              init_data = &init_data_em28xx_hauppauge;
-               break;
-       case (EM2820_BOARD_MSI_VOX_USB_2):
-               break;
-@@ -2215,8 +2226,7 @@ void em28xx_register_i2c_ir(struct em28xx *dev)
-               break;
-       }
- 
--      if (init_data.name)
--              info.platform_data = &init_data;
-+      info.platform_data = init_data;
-       i2c_new_probed_device(&dev->i2c_adap, &info, addr_list);
- }
- 
-diff --git a/drivers/media/video/saa7134/saa7134-input.c 
b/drivers/media/video/saa7134/saa7134-input.c
-index 6e219c2..bb17bb9 100644
---- a/drivers/media/video/saa7134/saa7134-input.c
-+++ b/drivers/media/video/saa7134/saa7134-input.c
-@@ -682,10 +682,46 @@ void saa7134_input_fini(struct saa7134_dev *dev)
-       dev->remote = NULL;
- }
- 
-+static struct IR_i2c_init_data init_data_pinnacle_color = {
-+      .name = "Pinnacle PCTV",
-+      .get_key = get_key_pinnacle_color,
-+      .ir_codes = ir_codes_pinnacle_color,
-+};
-+
-+static struct IR_i2c_init_data init_data_pinnacle_grey = {
-+      .name = "Pinnacle PCTV",
-+      .get_key = get_key_pinnacle_grey,
-+      .ir_codes = ir_codes_pinnacle_grey,
-+};
-+
-+static struct IR_i2c_init_data init_data_purpletv = {
-+      .name = "Purple TV",
-+      .get_key = get_key_purpletv,
-+      .ir_codes = ir_codes_purpletv,
-+};
-+
-+static struct IR_i2c_init_data init_data_msi_tvanywhere_plus = {
-+      .name = "MSI TV@nywhere Plus",
-+      .get_key = get_key_msi_tvanywhere_plus,
-+      .ir_codes = ir_codes_msi_tvanywhere_plus,
-+};
-+
-+static struct IR_i2c_init_data init_data_hauppauge = {
-+      .name = "HVR 1110",
-+      .get_key = get_key_hvr1110,
-+      .ir_codes = ir_codes_hauppauge_new,
-+};
-+
-+static struct IR_i2c_init_data init_data_behold = {
-+      .name = "BeholdTV",
-+      .get_key = get_key_beholdm6xx,
-+      .ir_codes = ir_codes_behold,
-+};
-+
- void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
- {
-       struct i2c_board_info info;
--      struct IR_i2c_init_data init_data;
-+      struct IR_i2c_init_data *init_data = NULL;
-       const unsigned short addr_list[] = {
-               0x7a, 0x47, 0x71, 0x2d,
-               I2C_CLIENT_END
-@@ -706,30 +742,22 @@ void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
-       }
- 
-       memset(&info, 0, sizeof(struct i2c_board_info));
--      memset(&init_data, 0, sizeof(struct IR_i2c_init_data));
-       strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
- 
-       switch (dev->board) {
-       case SAA7134_BOARD_PINNACLE_PCTV_110i:
-       case SAA7134_BOARD_PINNACLE_PCTV_310i:
--              init_data.name = "Pinnacle PCTV";
--              if (pinnacle_remote == 0) {
--                      init_data.get_key = get_key_pinnacle_color;
--                      init_data.ir_codes = ir_codes_pinnacle_color;
--              } else {
--                      init_data.get_key = get_key_pinnacle_grey;
--                      init_data.ir_codes = ir_codes_pinnacle_grey;
--              }
-+              if (pinnacle_remote == 0)
-+                      init_data = &init_data_pinnacle_color;
-+              else
-+                      init_data = &init_data_pinnacle_grey;
-+              info.addr = 0x47;
-               break;
-       case SAA7134_BOARD_UPMOST_PURPLE_TV:
--              init_data.name = "Purple TV";
--              init_data.get_key = get_key_purpletv;
--              init_data.ir_codes = ir_codes_purpletv;
-+              init_data = &init_data_purpletv;
-               break;
-       case SAA7134_BOARD_MSI_TVATANYWHERE_PLUS:
--              init_data.name = "MSI TV@nywhere Plus";
--              init_data.get_key = get_key_msi_tvanywhere_plus;
--              init_data.ir_codes = ir_codes_msi_tvanywhere_plus;
-+              init_data = &init_data_msi_tvanywhere_plus;
-               info.addr = 0x30;
-               /* MSI TV@nywhere Plus controller doesn't seem to
-                  respond to probes unless we read something from
-@@ -741,9 +769,7 @@ void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
-                       (1 == rc) ? "yes" : "no");
-               break;
-       case SAA7134_BOARD_HAUPPAUGE_HVR1110:
--              init_data.name = "HVR 1110";
--              init_data.get_key = get_key_hvr1110;
--              init_data.ir_codes = ir_codes_hauppauge_new;
-+              init_data = &init_data_hauppauge;
-               break;
-       case SAA7134_BOARD_BEHOLD_607FM_MK3:
-       case SAA7134_BOARD_BEHOLD_607FM_MK5:
-@@ -757,9 +783,7 @@ void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
-       case SAA7134_BOARD_BEHOLD_M63:
-       case SAA7134_BOARD_BEHOLD_M6_EXTRA:
-       case SAA7134_BOARD_BEHOLD_H6:
--              init_data.name = "BeholdTV";
--              init_data.get_key = get_key_beholdm6xx;
--              init_data.ir_codes = ir_codes_behold;
-+              init_data = &init_data_behold;
-               break;
-       case SAA7134_BOARD_AVERMEDIA_CARDBUS_501:
-       case SAA7134_BOARD_AVERMEDIA_CARDBUS_506:
-@@ -767,8 +791,7 @@ void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
-               break;
-       }
- 
--      if (init_data.name)
--              info.platform_data = &init_data;
-+      info.platform_data = init_data;
-       /* No need to probe if address is known */
-       if (info.addr) {
-               i2c_new_device(&dev->i2c_adap, &info);
--- 
-1.6.3.3
-
+--- linux-4.14/scripts/gcc-plugin.sh.orig      2017-11-12 19:46:13.000000000 
+0100
++++ linux-4.14/scripts/gcc-plugin.sh   2021-07-08 09:52:23.460059564 +0200
+@@ -43,7 +43,7 @@
+ esac
+ 
+ # we need a c++ compiler that supports the designated initializer GNU 
extension
+-plugincc=$($2 -c -x c++ -std=gnu++98 - -fsyntax-only 
-I"${srctree}"/gcc-plugins -I"${gccplugins_dir}"/include 2>&1 <<EOF
++plugincc=$($2 -c -x c++ -std=gnu++11 - -fsyntax-only 
-I"${srctree}"/gcc-plugins -I"${gccplugins_dir}"/include 2>&1 <<EOF
+ #include "gcc-common.h"
+ class test {
+ public:
+--- linux-4.14/scripts/gcc-plugins/Makefile~   2021-07-08 09:24:22.000000000 
+0200
++++ linux-4.14/scripts/gcc-plugins/Makefile    2021-07-08 09:53:18.585669320 
+0200
+@@ -7,7 +7,7 @@
+   export HOST_EXTRACFLAGS
+ else
+   HOSTLIBS := hostcxxlibs
+-  HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu++98 
-fno-rtti
++  HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu++11 
-fno-rtti
+   HOST_EXTRACXXFLAGS += -fno-exceptions -fasynchronous-unwind-tables -ggdb
+   HOST_EXTRACXXFLAGS += -Wno-narrowing -Wno-unused-variable
+   HOST_EXTRACXXFLAGS += -Wno-format-diag
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/0d4c8b4c219ba6e83e2d8e3a973b56925d98209d

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to