kvm-arm64-vgic-fix-exit-condition-in-scan_its_table.patch
media-mceusb-set-timeout-to-at-least-timeout-provided.patch
media-venus-dec-handle-the-case-where-find_format-fails.patch
-bpf-generate-btf_kind_float-when-linking-vmlinux.patch
-kbuild-quote-objcopy-var-to-avoid-a-pahole-call-break-the-build.patch
-kbuild-skip-per-cpu-btf-generation-for-pahole-v1.18-v1.21.patch
-kbuild-unify-options-for-btf-generation-for-vmlinux-and-modules.patch
-kbuild-add-skip_encoding_btf_enum64-option-to-pahole.patch
block-wbt-remove-unnecessary-invoking-of-wbt_update_limits-in-wbt_init.patch
blk-wbt-call-rq_qos_add-after-wb_normal-is-initialized.patch
arm64-errata-remove-aes-hwcap-for-compat-tasks.patch
+++ /dev/null
-From foo@baz Wed Oct 26 06:44:13 PM CEST 2022
-From: Jiri Olsa <jolsa@kernel.org>
-Date: Wed, 19 Oct 2022 10:56:00 +0200
-Subject: bpf: Generate BTF_KIND_FLOAT when linking vmlinux
-To: stable@vger.kernel.org
-Cc: "Andrii Nakryiko" <andrii@kernel.org>, bpf@vger.kernel.org, "Arnaldo Carvalho de Melo" <acme@kernel.org>, "Daniel Borkmann" <daniel@iogearbox.net>, "Martin Rodriguez Reboredo" <yakoyoku@gmail.com>, "Javier Martinez Canillas" <javierm@redhat.com>, "Ilya Leoshkevich" <iii@linux.ibm.com>, "Nathan Chancellor" <nathan@kernel.org>, "Philip Müller" <philm@manjaro.org>
-Message-ID: <20221019085604.1017583-2-jolsa@kernel.org>
-
-From: Ilya Leoshkevich <iii@linux.ibm.com>
-
-commit db16c1fe92d7ba7d39061faef897842baee2c887 upstream.
-
-[backported for dependency only extra_paholeopt variable setup and
-usage, we don't want floats generated in 5.10]
-
-pahole v1.21 supports the --btf_gen_floats flag, which makes it
-generate the information about the floating-point types [1].
-
-Adjust link-vmlinux.sh to pass this flag to pahole in case it's
-supported, which is determined using a simple version check.
-
-[1] https://lore.kernel.org/dwarves/YHRiXNX1JUF2Az0A@kernel.org/
-
-Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
-Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
-Acked-by: Andrii Nakryiko <andrii@kernel.org>
-Link: https://lore.kernel.org/bpf/20210413190043.21918-1-iii@linux.ibm.com
-Signed-off-by: Jiri Olsa <jolsa@kernel.org>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- scripts/link-vmlinux.sh | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/scripts/link-vmlinux.sh
-+++ b/scripts/link-vmlinux.sh
-@@ -146,6 +146,7 @@ vmlinux_link()
- gen_btf()
- {
- local pahole_ver
-+ local extra_paholeopt=
-
- if ! [ -x "$(command -v ${PAHOLE})" ]; then
- echo >&2 "BTF: ${1}: pahole (${PAHOLE}) is not available"
-@@ -161,7 +162,7 @@ gen_btf()
- vmlinux_link ${1}
-
- info "BTF" ${2}
-- LLVM_OBJCOPY=${OBJCOPY} ${PAHOLE} -J ${1}
-+ LLVM_OBJCOPY=${OBJCOPY} ${PAHOLE} -J ${extra_paholeopt} ${1}
-
- # Create ${2} which contains just .BTF section but no symbols. Add
- # SHF_ALLOC because .BTF will be part of the vmlinux image. --strip-all
+++ /dev/null
-From foo@baz Wed Oct 26 06:44:13 PM CEST 2022
-From: Jiri Olsa <jolsa@kernel.org>
-Date: Wed, 19 Oct 2022 10:56:04 +0200
-Subject: kbuild: Add skip_encoding_btf_enum64 option to pahole
-To: stable@vger.kernel.org
-Cc: bpf@vger.kernel.org, "Arnaldo Carvalho de Melo" <acme@kernel.org>, "Daniel Borkmann" <daniel@iogearbox.net>, "Martin Rodriguez Reboredo" <yakoyoku@gmail.com>, "Andrii Nakryiko" <andrii@kernel.org>, "Javier Martinez Canillas" <javierm@redhat.com>, "Ilya Leoshkevich" <iii@linux.ibm.com>, "Nathan Chancellor" <nathan@kernel.org>, "Philip Müller" <philm@manjaro.org>
-Message-ID: <20221019085604.1017583-6-jolsa@kernel.org>
-
-From: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
-
-New pahole (version 1.24) generates by default new BTF_KIND_ENUM64 BTF tag,
-which is not supported by stable kernel.
-
-As a result the kernel with CONFIG_DEBUG_INFO_BTF option will fail to
-compile with following error:
-
- BTFIDS vmlinux
-FAILED: load BTF from vmlinux: Invalid argument
-
-New pahole provides --skip_encoding_btf_enum64 option to skip BTF_KIND_ENUM64
-generation and produce BTF supported by stable kernel.
-
-Adding this option to scripts/pahole-flags.sh.
-
-This change does not have equivalent commit in linus tree, because linus tree
-has support for BTF_KIND_ENUM64 tag, so it does not need to be disabled.
-
-Signed-off-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
-Signed-off-by: Jiri Olsa <jolsa@kernel.org>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- scripts/pahole-flags.sh | 4 ++++
- 1 file changed, 4 insertions(+)
-
---- a/scripts/pahole-flags.sh
-+++ b/scripts/pahole-flags.sh
-@@ -14,4 +14,8 @@ if [ "${pahole_ver}" -ge "118" ] && [ "$
- extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars"
- fi
-
-+if [ "${pahole_ver}" -ge "124" ]; then
-+ extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_enum64"
-+fi
-+
- echo ${extra_paholeopt}
+++ /dev/null
-From foo@baz Wed Oct 26 06:44:13 PM CEST 2022
-From: Jiri Olsa <jolsa@kernel.org>
-Date: Wed, 19 Oct 2022 10:56:01 +0200
-Subject: kbuild: Quote OBJCOPY var to avoid a pahole call break the build
-To: stable@vger.kernel.org
-Cc: "Andrii Nakryiko" <andrii@kernel.org>, "Arnaldo Carvalho de Melo" <acme@redhat.com>, bpf@vger.kernel.org, "Arnaldo Carvalho de Melo" <acme@kernel.org>, "Daniel Borkmann" <daniel@iogearbox.net>, "Martin Rodriguez Reboredo" <yakoyoku@gmail.com>, "Javier Martinez Canillas" <javierm@redhat.com>, "Ilya Leoshkevich" <iii@linux.ibm.com>, "Nathan Chancellor" <nathan@kernel.org>, "Philip Müller" <philm@manjaro.org>
-Message-ID: <20221019085604.1017583-3-jolsa@kernel.org>
-
-From: Javier Martinez Canillas <javierm@redhat.com>
-
-commit ff2e6efda0d5c51b33e2bcc0b0b981ac0a0ef214 upstream.
-
-[backported for dependency, skipped Makefile.modfinal change,
-because module BTF is not supported in 5.10]
-
-The ccache tool can be used to speed up cross-compilation, by calling the
-compiler and binutils through ccache. For example, following should work:
-
- $ export ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-"
-
- $ make M=drivers/gpu/drm/rockchip/
-
-but pahole fails to extract the BTF info from DWARF, breaking the build:
-
- CC [M] drivers/gpu/drm/rockchip//rockchipdrm.mod.o
- LD [M] drivers/gpu/drm/rockchip//rockchipdrm.ko
- BTF [M] drivers/gpu/drm/rockchip//rockchipdrm.ko
- aarch64-linux-gnu-objcopy: invalid option -- 'J'
- Usage: aarch64-linux-gnu-objcopy [option(s)] in-file [out-file]
- Copies a binary file, possibly transforming it in the process
- ...
- make[1]: *** [scripts/Makefile.modpost:156: __modpost] Error 2
- make: *** [Makefile:1866: modules] Error 2
-
-this fails because OBJCOPY is set to "ccache aarch64-linux-gnu-copy" and
-later pahole is executed with the following command line:
-
- LLVM_OBJCOPY=$(OBJCOPY) $(PAHOLE) -J --btf_base vmlinux $@
-
-which gets expanded to:
-
- LLVM_OBJCOPY=ccache aarch64-linux-gnu-objcopy pahole -J ...
-
-instead of:
-
- LLVM_OBJCOPY="ccache aarch64-linux-gnu-objcopy" pahole -J ...
-
-Fixes: 5f9ae91f7c0d ("kbuild: Build kernel module BTFs if BTF is enabled and pahole supports it")
-Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
-Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
-Acked-by: Andrii Nakryiko <andrii@kernel.org>
-Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-Link: https://lore.kernel.org/bpf/20210526215228.3729875-1-javierm@redhat.com
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- scripts/link-vmlinux.sh | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/scripts/link-vmlinux.sh
-+++ b/scripts/link-vmlinux.sh
-@@ -162,7 +162,7 @@ gen_btf()
- vmlinux_link ${1}
-
- info "BTF" ${2}
-- LLVM_OBJCOPY=${OBJCOPY} ${PAHOLE} -J ${extra_paholeopt} ${1}
-+ LLVM_OBJCOPY="${OBJCOPY}" ${PAHOLE} -J ${extra_paholeopt} ${1}
-
- # Create ${2} which contains just .BTF section but no symbols. Add
- # SHF_ALLOC because .BTF will be part of the vmlinux image. --strip-all
+++ /dev/null
-From foo@baz Wed Oct 26 06:44:13 PM CEST 2022
-From: Jiri Olsa <jolsa@kernel.org>
-Date: Wed, 19 Oct 2022 10:56:02 +0200
-Subject: kbuild: skip per-CPU BTF generation for pahole v1.18-v1.21
-To: stable@vger.kernel.org
-Cc: "Mel Gorman" <mgorman@techsingularity.net>, "Arnaldo Carvalho de Melo" <acme@redhat.com>, "Hao Luo" <haoluo@google.com>, "Michal Suchanek" <msuchanek@suse.de>, bpf@vger.kernel.org, "Arnaldo Carvalho de Melo" <acme@kernel.org>, "Daniel Borkmann" <daniel@iogearbox.net>, "Martin Rodriguez Reboredo" <yakoyoku@gmail.com>, "Andrii Nakryiko" <andrii@kernel.org>, "Javier Martinez Canillas" <javierm@redhat.com>, "Ilya Leoshkevich" <iii@linux.ibm.com>, "Nathan Chancellor" <nathan@kernel.org>, "Philip Müller" <philm@manjaro.org>
-Message-ID: <20221019085604.1017583-4-jolsa@kernel.org>
-
-From: Andrii Nakryiko <andrii@kernel.org>
-
-commit a0b8200d06ad6450c179407baa5f0f52f8cfcc97 upstream.
-
-[small context changes due to missing floats support in 5.10]
-
-Commit "mm/page_alloc: convert per-cpu list protection to local_lock" will
-introduce a zero-sized per-CPU variable, which causes pahole to generate
-invalid BTF. Only pahole versions 1.18 through 1.21 are impacted, as
-before 1.18 pahole doesn't know anything about per-CPU variables, and 1.22
-contains the proper fix for the issue.
-
-Luckily, pahole 1.18 got --skip_encoding_btf_vars option disabling BTF
-generation for per-CPU variables in anticipation of some unanticipated
-problems. So use this escape hatch to disable per-CPU var BTF info on
-those problematic pahole versions. Users relying on availability of
-per-CPU var BTFs would need to upgrade to pahole 1.22+, but everyone won't
-notice any regressions.
-
-Link: https://lkml.kernel.org/r/20210530002536.3193829-1-andrii@kernel.org
-Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
-Acked-by: Mel Gorman <mgorman@techsingularity.net>
-Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
-Cc: Hao Luo <haoluo@google.com>
-Cc: Michal Suchanek <msuchanek@suse.de>
-Cc: Jiri Olsa <jolsa@kernel.org>
-Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-Signed-off-by: Jiri Olsa <jolsa@kernel.org>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- scripts/link-vmlinux.sh | 5 +++++
- 1 file changed, 5 insertions(+)
-
---- a/scripts/link-vmlinux.sh
-+++ b/scripts/link-vmlinux.sh
-@@ -161,6 +161,11 @@ gen_btf()
-
- vmlinux_link ${1}
-
-+ if [ "${pahole_ver}" -ge "118" ] && [ "${pahole_ver}" -le "121" ]; then
-+ # pahole 1.18 through 1.21 can't handle zero-sized per-CPU vars
-+ extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars"
-+ fi
-+
- info "BTF" ${2}
- LLVM_OBJCOPY="${OBJCOPY}" ${PAHOLE} -J ${extra_paholeopt} ${1}
-
+++ /dev/null
-From foo@baz Wed Oct 26 06:44:13 PM CEST 2022
-From: Jiri Olsa <jolsa@kernel.org>
-Date: Wed, 19 Oct 2022 10:56:03 +0200
-Subject: kbuild: Unify options for BTF generation for vmlinux and modules
-To: stable@vger.kernel.org
-Cc: "Andrii Nakryiko" <andrii@kernel.org>, bpf@vger.kernel.org, "Arnaldo Carvalho de Melo" <acme@kernel.org>, "Daniel Borkmann" <daniel@iogearbox.net>, "Martin Rodriguez Reboredo" <yakoyoku@gmail.com>, "Javier Martinez Canillas" <javierm@redhat.com>, "Ilya Leoshkevich" <iii@linux.ibm.com>, "Nathan Chancellor" <nathan@kernel.org>, "Philip Müller" <philm@manjaro.org>
-Message-ID: <20221019085604.1017583-5-jolsa@kernel.org>
-
-From: Jiri Olsa <jolsa@redhat.com>
-
-commit 9741e07ece7c247dd65e1aa01e16b683f01c05a8 upstream.
-
-[skipped --btf_gen_floats option in pahole-flags.sh, skipped
-Makefile.modfinal change, because there's no BTF kmod support,
-squashing in 'exit 0' change from merge commit fc02cb2b37fe]
-
-Using new PAHOLE_FLAGS variable to pass extra arguments to
-pahole for both vmlinux and modules BTF data generation.
-
-Adding new scripts/pahole-flags.sh script that detect and
-prints pahole options.
-
-[ fixed issues found by kernel test robot ]
-
-Signed-off-by: Jiri Olsa <jolsa@kernel.org>
-Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
-Acked-by: Andrii Nakryiko <andrii@kernel.org>
-Link: https://lore.kernel.org/bpf/20211029125729.70002-1-jolsa@kernel.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- Makefile | 3 +++
- scripts/link-vmlinux.sh | 8 +-------
- scripts/pahole-flags.sh | 17 +++++++++++++++++
- 3 files changed, 21 insertions(+), 7 deletions(-)
- create mode 100755 scripts/pahole-flags.sh
-
---- a/Makefile
-+++ b/Makefile
-@@ -465,6 +465,8 @@ LZ4 = lz4c
- XZ = xz
- ZSTD = zstd
-
-+PAHOLE_FLAGS = $(shell PAHOLE=$(PAHOLE) $(srctree)/scripts/pahole-flags.sh)
-+
- CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
- -Wbitwise -Wno-return-void -Wno-unknown-attribute $(CF)
- NOSTDINC_FLAGS :=
-@@ -518,6 +520,7 @@ export KBUILD_CFLAGS CFLAGS_KERNEL CFLAG
- export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
- export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
- export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
-+export PAHOLE_FLAGS
-
- # Files to ignore in find ... statements
-
---- a/scripts/link-vmlinux.sh
-+++ b/scripts/link-vmlinux.sh
-@@ -146,7 +146,6 @@ vmlinux_link()
- gen_btf()
- {
- local pahole_ver
-- local extra_paholeopt=
-
- if ! [ -x "$(command -v ${PAHOLE})" ]; then
- echo >&2 "BTF: ${1}: pahole (${PAHOLE}) is not available"
-@@ -161,13 +160,8 @@ gen_btf()
-
- vmlinux_link ${1}
-
-- if [ "${pahole_ver}" -ge "118" ] && [ "${pahole_ver}" -le "121" ]; then
-- # pahole 1.18 through 1.21 can't handle zero-sized per-CPU vars
-- extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars"
-- fi
--
- info "BTF" ${2}
-- LLVM_OBJCOPY="${OBJCOPY}" ${PAHOLE} -J ${extra_paholeopt} ${1}
-+ LLVM_OBJCOPY="${OBJCOPY}" ${PAHOLE} -J ${PAHOLE_FLAGS} ${1}
-
- # Create ${2} which contains just .BTF section but no symbols. Add
- # SHF_ALLOC because .BTF will be part of the vmlinux image. --strip-all
---- /dev/null
-+++ b/scripts/pahole-flags.sh
-@@ -0,0 +1,17 @@
-+#!/bin/sh
-+# SPDX-License-Identifier: GPL-2.0
-+
-+extra_paholeopt=
-+
-+if ! [ -x "$(command -v ${PAHOLE})" ]; then
-+ exit 0
-+fi
-+
-+pahole_ver=$(${PAHOLE} --version | sed -E 's/v([0-9]+)\.([0-9]+)/\1\2/')
-+
-+if [ "${pahole_ver}" -ge "118" ] && [ "${pahole_ver}" -le "121" ]; then
-+ # pahole 1.18 through 1.21 can't handle zero-sized per-CPU vars
-+ extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars"
-+fi
-+
-+echo ${extra_paholeopt}