]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 2 Aug 2021 11:48:55 +0000 (13:48 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 2 Aug 2021 11:48:55 +0000 (13:48 +0200)
added patches:
powerpc-pseries-fix-regression-while-building-external-modules.patch
revert-perf-map-fix-dso-nsinfo-refcounting.patch
smb3-fix-readpage-for-large-swap-cache.patch

queue-5.10/powerpc-pseries-fix-regression-while-building-external-modules.patch [new file with mode: 0644]
queue-5.10/revert-perf-map-fix-dso-nsinfo-refcounting.patch [new file with mode: 0644]
queue-5.10/series
queue-5.10/smb3-fix-readpage-for-large-swap-cache.patch [new file with mode: 0644]

diff --git a/queue-5.10/powerpc-pseries-fix-regression-while-building-external-modules.patch b/queue-5.10/powerpc-pseries-fix-regression-while-building-external-modules.patch
new file mode 100644 (file)
index 0000000..88ce1d8
--- /dev/null
@@ -0,0 +1,77 @@
+From 333cf507465fbebb3727f5b53e77538467df312a Mon Sep 17 00:00:00 2001
+From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
+Date: Thu, 29 Jul 2021 11:34:49 +0530
+Subject: powerpc/pseries: Fix regression while building external modules
+
+From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
+
+commit 333cf507465fbebb3727f5b53e77538467df312a upstream.
+
+With commit c9f3401313a5 ("powerpc: Always enable queued spinlocks for
+64s, disable for others") CONFIG_PPC_QUEUED_SPINLOCKS is always
+enabled on ppc64le, external modules that use spinlock APIs are
+failing.
+
+  ERROR: modpost: GPL-incompatible module XXX.ko uses GPL-only symbol 'shared_processor'
+
+Before the above commit, modules were able to build without any
+issues. Also this problem is not seen on other architectures. This
+problem can be workaround if CONFIG_UNINLINE_SPIN_UNLOCK is enabled in
+the config. However CONFIG_UNINLINE_SPIN_UNLOCK is not enabled by
+default and only enabled in certain conditions like
+CONFIG_DEBUG_SPINLOCKS is set in the kernel config.
+
+  #include <linux/module.h>
+  spinlock_t spLock;
+
+  static int __init spinlock_test_init(void)
+  {
+          spin_lock_init(&spLock);
+          spin_lock(&spLock);
+          spin_unlock(&spLock);
+          return 0;
+  }
+
+  static void __exit spinlock_test_exit(void)
+  {
+       printk("spinlock_test unloaded\n");
+  }
+  module_init(spinlock_test_init);
+  module_exit(spinlock_test_exit);
+
+  MODULE_DESCRIPTION ("spinlock_test");
+  MODULE_LICENSE ("non-GPL");
+  MODULE_AUTHOR ("Srikar Dronamraju");
+
+Given that spin locks are one of the basic facilities for module code,
+this effectively makes it impossible to build/load almost any non GPL
+modules on ppc64le.
+
+This was first reported at https://github.com/openzfs/zfs/issues/11172
+
+Currently shared_processor is exported as GPL only symbol.
+Fix this for parity with other architectures by exposing
+shared_processor to non-GPL modules too.
+
+Fixes: 14c73bd344da ("powerpc/vcpu: Assume dedicated processors as non-preempt")
+Cc: stable@vger.kernel.org # v5.5+
+Reported-by: marc.c.dionne@gmail.com
+Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
+Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
+Link: https://lore.kernel.org/r/20210729060449.292780-1-srikar@linux.vnet.ibm.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ arch/powerpc/platforms/pseries/setup.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/arch/powerpc/platforms/pseries/setup.c
++++ b/arch/powerpc/platforms/pseries/setup.c
+@@ -76,7 +76,7 @@
+ #include "../../../../drivers/pci/pci.h"
+ DEFINE_STATIC_KEY_FALSE(shared_processor);
+-EXPORT_SYMBOL_GPL(shared_processor);
++EXPORT_SYMBOL(shared_processor);
+ int CMO_PrPSP = -1;
+ int CMO_SecPSP = -1;
diff --git a/queue-5.10/revert-perf-map-fix-dso-nsinfo-refcounting.patch b/queue-5.10/revert-perf-map-fix-dso-nsinfo-refcounting.patch
new file mode 100644 (file)
index 0000000..97c165c
--- /dev/null
@@ -0,0 +1,39 @@
+From 9bac1bd6e6d36459087a728a968e79e37ebcea1a Mon Sep 17 00:00:00 2001
+From: Arnaldo Carvalho de Melo <acme@redhat.com>
+Date: Fri, 30 Jul 2021 18:26:22 -0300
+Subject: Revert "perf map: Fix dso->nsinfo refcounting"
+
+From: Arnaldo Carvalho de Melo <acme@redhat.com>
+
+commit 9bac1bd6e6d36459087a728a968e79e37ebcea1a upstream.
+
+This makes 'perf top' abort in some cases, and the right fix will
+involve surgery that is too much to do at this stage, so revert for now
+and fix it in the next merge window.
+
+This reverts commit 2d6b74baa7147251c30a46c4996e8cc224aa2dc5.
+
+Cc: Riccardo Mancini <rickyman7@gmail.com>
+Cc: Ian Rogers <irogers@google.com>
+Cc: Jiri Olsa <jolsa@redhat.com>
+Cc: Krister Johansen <kjlx@templeofstupid.com>
+Cc: Mark Rutland <mark.rutland@arm.com>
+Cc: Namhyung Kim <namhyung@kernel.org>
+Cc: Peter Zijlstra <peterz@infradead.org>
+Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ tools/perf/util/map.c |    2 --
+ 1 file changed, 2 deletions(-)
+
+--- a/tools/perf/util/map.c
++++ b/tools/perf/util/map.c
+@@ -192,8 +192,6 @@ struct map *map__new(struct machine *mac
+                       if (!(prot & PROT_EXEC))
+                               dso__set_loaded(dso);
+               }
+-
+-              nsinfo__put(dso->nsinfo);
+               dso->nsinfo = nsi;
+               dso__put(dso);
+       }
index 231c1e1b1d203f60e25ef69eb5ae80b51e632764..ba39e82e3f0722ff292db63bfd6ccba4c958fc93 100644 (file)
@@ -60,3 +60,6 @@ bpf-fix-leakage-due-to-insufficient-speculative-stor.patch
 bpf-remove-superfluous-aux-sanitation-on-subprog-rejection.patch
 bpf-verifier-allocate-idmap-scratch-in-verifier-env.patch
 bpf-fix-pointer-arithmetic-mask-tightening-under-state-pruning.patch
+smb3-fix-readpage-for-large-swap-cache.patch
+powerpc-pseries-fix-regression-while-building-external-modules.patch
+revert-perf-map-fix-dso-nsinfo-refcounting.patch
diff --git a/queue-5.10/smb3-fix-readpage-for-large-swap-cache.patch b/queue-5.10/smb3-fix-readpage-for-large-swap-cache.patch
new file mode 100644 (file)
index 0000000..e8dd877
--- /dev/null
@@ -0,0 +1,41 @@
+From f2a26a3cff27dfa456fef386fe5df56dcb4b47b6 Mon Sep 17 00:00:00 2001
+From: Steve French <stfrench@microsoft.com>
+Date: Fri, 23 Jul 2021 18:35:15 -0500
+Subject: SMB3: fix readpage for large swap cache
+
+From: Steve French <stfrench@microsoft.com>
+
+commit f2a26a3cff27dfa456fef386fe5df56dcb4b47b6 upstream.
+
+readpage was calculating the offset of the page incorrectly
+for the case of large swapcaches.
+
+    loff_t offset = (loff_t)page->index << PAGE_SHIFT;
+
+As pointed out by Matthew Wilcox, this needs to use
+page_file_offset() to calculate the offset instead.
+Pages coming from the swap cache have page->index set
+to their index within the swapcache, not within the backing
+file.  For a sufficiently large swapcache, we could have
+overlapping values of page->index within the same backing file.
+
+Suggested by: Matthew Wilcox (Oracle) <willy@infradead.org>
+Cc: <stable@vger.kernel.org> # v5.7+
+Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
+Signed-off-by: Steve French <stfrench@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ fs/cifs/file.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/fs/cifs/file.c
++++ b/fs/cifs/file.c
+@@ -4550,7 +4550,7 @@ read_complete:
+ static int cifs_readpage(struct file *file, struct page *page)
+ {
+-      loff_t offset = (loff_t)page->index << PAGE_SHIFT;
++      loff_t offset = page_file_offset(page);
+       int rc = -EACCES;
+       unsigned int xid;