summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-02-11tar: Fix build determinism, disable rshRichard Purdie
rsh is insecure and obsolete but tar will enable support if the binary is on the host system. Some systems point it at ssh. Lets explictly disable it for now unless someone actually needs/uses this at which point it could become a packageconfig. (From OE-Core rev: d14a4b0db92a9a7d1ff72a2e0faca7f1a23a0b68) (From OE-Core rev: 6bdc5f787af46e9c849947cad06ad40aa401b767) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11mc: Fix manpage date indeterminismRichard Purdie
The man page date can vary depending upon the host perl, e.g. in Russian some versions print 'июня', others 'Июнь' or Polish 'czerwca' or 'czerwiec'. Rather than depend upon perl-native to fix this, just remove the date from the manpages. (From OE-Core rev: 5553c20f9fa4f35bf711b6b9d5717dcf4bfefafa) (From OE-Core rev: 3653fd41fbc28f70259a00bb0098ec8731526449) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11mc: Set zipinfo presence determinsticallyRichard Purdie
This value was floating causing differences in generated files. Set it determinstically. (From OE-Core rev: 11d7a9e37c1d3fc21396a98fefc9d34c0b9e784b) (From OE-Core rev: 8f77075425e2ef9c3b5adbf8e5b29e7cfd7b9b7a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11mc: Fix build reproducibilityJoshua Watt
Fixes some issues with reproducible builds. Adds a patch to allow the configure arguments to be omitted from the build and also explicitly setting some autoconf paths that were picking up hosttools. (From OE-Core rev: f54d60ee8f15229aa515e168b9c7d248663b48fe) (From OE-Core rev: 164d72b7a6ab20940f9a124beaf485be9ddc07ba) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11libxshmfence: Set shm directory deterministicallyRichard Purdie
Without setting this it will vary depending on which directories are present on the host. [YOCTO #13778] (From OE-Core rev: 6217c3a7201b34888aa2fbae8b6e490bea545574) (From OE-Core rev: 10357b0bf3f6b34b54c0329e7e392ecf2c7043cd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11sudo: Set vardir deterministicallyRichard Purdie
Without setting this it will vary depending on which directories are present on the host. [YOCTO #13775] (From OE-Core rev: 39fe849b56d70689846262c31ab7c182c8443923) (From OE-Core rev: 51274c9b195ad00dd6362f352ad9bbf7e9a3e098) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11classes/reproducible_build: Read SDE file laterJoshua Watt
Defers the resolution of the SOURCE_DATE_EPOCH until the variable needs to be actually realized with a value. The previous method of loading the value in anonymous python had issues because it could occur before other anonymous python functions that affect the location of the epoch file, such as when a recipe uses AUTOINC/AUTOREV or allarch.bbclass. Also adds more logging to help diagnose issues in the future. [YOCTO #13763] (From OE-Core rev: b3313a10a3eb93f0a3710a35de0404fb49cd6202) (From OE-Core rev: 10515e5f7e38edbc4430e2599062a9ce6fdb42a8) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11oeqa/reproducible: Improve test output and ensure deb+ipk comparedRichard Purdie
Adding newline characters between the packages in the failure output massively improves readability. Also ensure to output ipk failures when there are deb failures by calling self.fail() at the end, else sometimes only partial differences are returned. (From OE-Core rev: 6e2e0480852177db75a6108d77c99c92c4e9950f) (From OE-Core rev: 4d470f48f7fb5e05fba1ca3a59fb4f85d910026e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11opkg-utils: Fix reproducibility issues in opkg-buildRichard Purdie
There is a sorting problem with opkg-build where the ipk generated is depending upon the order of files on disk. The reason is the --sort option to tar only influences the orders of files tar reads, not those passed by the -T option. Add in a sort call to resolve this issue. To ensure consistent sorting we also need to force to a specific locale (C) else the results are still not deterministic. (From OE-Core rev: a9b8287984c63420e10329a69f7ac5125f1687f8) (From OE-Core rev: b577a6d923042cfc04e67d470e0987488ea61412) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11opkg-utils: upgrade to version 0.4.2Alejandro del Castillo
- Drop 00001-Switch-all-scripts-to-use-Python-3.x.patch - Drop 00001-opkg-build-clamp-mtimes-to-SOURCE_DATE_EPOCH.patch - Drop pipefail.patch (From OE-Core rev: bf51a4a1312562cc9b5944b7dfccba0b3d11dc3c) (From OE-Core rev: 1b71c28e1ca4fddc0f3c340ea4bcd76854ef620c) Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-02-11gcc-9.2: fix bug #91102 'aarch64 ICE on Linux kernel with -Os'Taras Kondratiuk via Openembedded-core
Linux kernel compilation for aarch64 triggers ICE if CONFIG_CC_OPTIMIZE_FOR_SIZE=y. The rootcause is GCC bug #91102 'aarch64 ICE on Linux kernel with -Os'. Apply the fix to 9.2. (From OE-Core rev: 14f34d32bfdaa752f5043e62750d2e7b92c4b419) Signed-off-by: Taras Kondratiuk <takondra@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-02-11devtool/standard.py: Allow recipe to disable menuconfig logicTom Hochstein
u-boot.inc supports u-boot recipes with or without menuconfig [1]. However, running devtool on a u-boot recipe that does not support menuconfig results in an error: cp: cannot stat '/home/r60874/upstream/fsl-xwayland/tmp/work/imx8mmevk-fsl-linux/u-boot-imx/2018.03-r0/u-boot-imx-2018.03//.config': No such file or directory The problem is the devtool logic assumes that any recipe with a do_menuconfig task will generate a .config in do_configure(). Fix the problem by removing the assumption with a flag that the recipe can control, like this: do_configure() { if [ menuconfig-supported ]; then ... else DEVTOOL_DISABLE_MENUCONFIG=true fi } [1] https://github.com/openembedded/openembedded-core/commit/11278e3b2c75be80645b9841763a97dbb35daadc Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-02-11cpio: fix CVE-2019-14866Anuj Mittal
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-02-11curl: fix CVE-2019-15601Anuj Mittal
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-02-11rsync: whitelist CVE-2017-16548Lee Chee Yang
patch for this CVE applies to v3.1.3pre1 not for v3.1.3. patch already in v3.1.3. see https://git.samba.org/rsync.git/?p=rsync.git;a=commitdiff;h=47a63d90e71d3e19e0e96052bb8c6b9cb140ecc1;hp=bc112b0e7feece62ce98708092306639a8a53cce (From OE-Core rev: 1e2739c821312527010fb0afbde5a20cd3f03d24) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-11Revert "bzip2: Fix CVE-2019-12900"Anuj Mittal
This reverts commit 175e6cb75ce328d51a9d4ad18c7e09d9fb92c2e1. This change is already in bzip2 1.0.7. The change fixing a regression caused by this change is in 1.0.8 which is the current version in zeus. This isn't resulting in failures because the patch file isn't included in SRC_URI. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-02-06build-appliance-image: Update to zeus head revisionRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04python2: add ntpathArmin Kuster
python3 has this but python is missing this. [Yocto #13740] Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04webkitgtk: fix occasional link errorJoe Slater
Partial backport from WebKit.git. See patch for details. Fixed in webkitgtk 2.26.1. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04core: recipes: fix some native tools dependenciesSumit Garg
Some native tools dependency issues were seen while building with external GCC tool-set rather than source GCC tool-set. While building with source tool-set these dependencies were implicitly met which is not the case with external tool-set. So explicitly state these native tools dependencies. Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04bzip2: Fix CVE-2019-12900Sana Kazi
Added patch for CVE-2019-12900 as backport from upstream. Fixes out of bound access discovered while fuzzying karchive. Tested by: Sana.Kazi@kpit.com Signed-off-by: Saloni Jain <Saloni.Jain@kpit.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04kbd: avoid vlock conflict with busyboxHongxu Jia
busybox as well as vlock utility from meta-oe provides vlock utility which can conflict when with kbd if pam is a enabled distro_feature Fixes image build errors update-alternatives: Error: not linking <rootfs>/usr/bin/vlock to /bin/busybox.suid since <rootfs>/usr/bin/vlock exists and is not a link ERROR: yoe-qt5-wayland-image-1.0-r0 do_rootfs: Postinstall scriptlets of ['busybox'] have failed. If the intention is to defer them to first boot, then please place them into pkg_postinst_ontarget_${PN} (). Deferring to first boot via 'exit 1' is no longer supported. Signed-off-by: Khem Raj <raj.khem@gmail.com> The vlock doesn't exist if PAM isn't enabled. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: De Huo <de.huo@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04kbd: configure.ac: Fix logic of vlock configure switchDe Huo
Downstream bug report: https://bugs.gentoo.org/661650 Upstream-Status: Backport [f7f357ef079b6d185f340e716d7c72a98d82bad0] Signed-off-by: Lars Wendler <polynomial-c@gentoo.org> Signed-off-by: De Huo <De.Huo@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04bash: Fix CVE-2019-18276De Huo
An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support "saved UID" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use "enable -f" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected. Backport the CVE patche from https://github.com/bminor/bash/commit/ 951bdaad7a18cc0dc1036bba86b18b90874d39ff to fix CVE-2019-18276 Signed-off-by: Chet Ramey <chet.ramey@case.edu> Signed-off-by: De Huo <De.Huo@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-02-04libxml2: Fix CVE-2019-19956Lee Chee Yang
see: https://gitlab.gnome.org/GNOME/libxml2/commit/5a02583c7e683896d84878bd90641d8d9b0d0549 Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-01-18sstatesig: Improve debug output if getpwuid() failsRichard Purdie
If getpwduid fails, we don't see which file it failed on which is key information to aid debugging. Print this information when exceptions are raised. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 9d7a5219713af8117eda145052c6d9abdf577d8f) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-18scripts/oe-build-perf-report: Avoid buildstats warningRichard Purdie
When a comparision branch is set we see warnings. If two branches are used, look for buildstats information from both to avoid this kind of warning: INFO: Parsing buildstats from 'refs/notes/buildstats/perf-centos7.yoctoproject.org/master-next/qemux86' WARNING: Buildstats not found for perf-centos7.yoctoproject.org/master/qemux86/56808-g08220028e52992dcba667fc97bf3afe8be1949fb/0 WARNING: Buildstats not found for perf-centos7.yoctoproject.org/master/qemux86/56808-g08220028e52992dcba667fc97bf3afe8be1949fb/1 INFO: Buildstats were missing for some test runs, please run 'git fetch origin refs/notes/buildstats/perf-centos7.yoctoproject.org/master-next/qemux86:refs/notes/buildstats/perf-centos7.yoctoproject.org/master-next/qemux86' and try again (the warning is due to stats being looked for in both branches, choose the other branch and different warnings would be shown) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit af58c18fcd0451540dd77ee862956b2b9dee17c4) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-18sstatesig: Test cross/native hashserv method extensionRichard Purdie
We can have one taskhash which represents multiple native/cross sstate objects since they're stored by BUILD_ARCH or possibly host distro (or host gcc version). We need to put these into separate namespaces on hashserv since their outhashes will never match and we need deterministic lookups for the different namespaces. Use this extramethod option to handle this. This fixes several problematic failures on the autobuilder. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 2a76082363d189880613765ad339718e3614049d) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-18wic/filemap: If FIGETBSZ iotctl fail, failback to os.statKalle Lampila
Some file systems don't support fetching the block size (notably the file system Docker uses for containers), so if iotctl() fail, try to use failback via os.stat() to get block size. Signed-off-by: Kalle lampila <kalle.lampila@lempea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit e219f5175177a640dd62833082ea19adc1c13d42) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-18multilib.conf: Ensure that RECIPE_SYSROOT is unchanged for nativeMike Crowe
Ensure that RECIPE_SYSROOT is the same for -native recipes whether multilib.conf is included or not. Without this change task signatures for -native recipes change when switching between MACHINEs that require multilib.conf and those that don't. This fix was one of the ones suggested by Khem Raj in http://lists.openembedded.org/pipermail/openembedded-core/2019-December/290303.html Add test_sstate_multilib_or_not_native_samesigs test case to sstatetests.py to ensure that this stays fixed. Signed-off-by: Mike Crowe <mac@mcrowe.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit aa05f1ded71366b86eda7fce24d8b5395e85ada2) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-18linuxloader: Correct loader for glibc on armhfAlex Kiernan
Fix the naming of the loader on armhf to match what glibc expects: #define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3" #define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3" Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7ad531093d620f18c04d487d79e9dad9f5a96232) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-15license.bbclass: Introduce AVAILABLE_LICENSES that lists all licensesPeter Kjellerstedt
Previously, there was SRC_DISTRIBUTE_LICENSES, an undocumented variable that contained a static list of licenses. It was used by expand_wildcard_licenses() to expand any wildcards used in, e.g., INCOMPATIBLE_LICENSE. However, since this static list of licenses has not been kept up-to-date, many licenses were missing, with the result that if one tried to use any of those licenses with a wildcard, no licenses would be found, effectively ignoring that they should be marked as incompatible. This introduces a new (documented) variable, AVAILABLE_LICENSES, that is automatically updated to contain all licenses found in any directories specified by ${COMMON_LICENSE_DIR} and ${LICENSE_PATH}, and uses it instead of SRC_DISTRIBUTE_LICENSES when expanding wildcards. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 8c9ef587fe499c612a878a1ab42092eb79b334ef) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-01-15licenses.conf: Remove the SRC_DISTRIBUTE_LICENSES variablePeter Kjellerstedt
The SRC_DISTRIBUTE_LICENSES variable and its static list of licenses has been replaced by AVAILABLE_LICENSES, which automatically contains all available licenses. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 64daaf29e2c12c8b587bafdebf9409433187ddf7) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-01-15sanity.bbclass: Move sanity_info from conf to cachePeter Kjellerstedt
Since this file is written during recipe parsing, having it in the ${BUILDDIR}/conf directory, which is covered by an inotify watcher, will trigger a re-parse the next time bitbake is run and the resident bitbake server is enabled. This causes the sanity_info file to be updated again, which triggers a new parse the next time bitbake is run ad infinitum. Moving it to ${BUILDDIR}/cache should avoid this. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit f98103b548aa7dba6b1be6c8e02ef41858a8e85c) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-01-15populate_sdk_ext.bbclass: No longer needed to clean away conf/sanity_infoPeter Kjellerstedt
Since the sanity_info file has moved from the conf directory to the cache directory, there is no longer any need to clean it away explicitly in clean_esdk_builddir() since the whole cache directory is already cleaned away anyway. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 40c30990e1be72130819c040fe471e2bdc0c6e7d) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-01-15toaster.bbclass: Correct pkgdatadir path in toaster_package_dumpdata()Peter Kjellerstedt
In commit 692b2046 (package: Fix race between do_package and do_packagedata), the path used for do_packagedata[sstate-inputdirs] was changed from "${PKGDESTWORK}" to "${WORKDIR}/pkgdata-pdata-input". This commit adapts the path used for pkgdatadir in toaster_package_dumpdata() accordingly to avoid setscene errors like: ERROR: libgcc-9.2.0-r0 do_packagedata_setscene: Error executing a python function in exec_python_func() autogenerated: The stack trace of python calls that resulted in this exception/failure was: File: 'exec_python_func() autogenerated', lineno: 2, function: <module> 0001: *** 0002:toaster_package_dumpdata(d) 0003: File: 'meta/classes/toaster.bbclass', lineno: 130, function: toaster_package_dumpdata 0126: lpkgdata = {} 0127: datadir = os.path.join(pkgdatadir, 'runtime') 0128: 0129: # scan and send data for each generated package *** 0130: for datafile in os.listdir(datadir): 0131: if not datafile.endswith('.packaged'): 0132: lpkgdata = _toaster_load_pkgdatafile(datadir, 0133: # Fire an event containing the pkg data 0134: bb.event.fire(bb.event.MetadataEvent( Exception: FileNotFoundError: [Errno 2] No such file or directory: 'tmp/work/mips32r2el-nf-poky-linux/libgcc/9.2.0-r0/pkgdata/runtime' Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 5a0f6f631b86f7107aa72453b6d23f32ba39f713) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-01-08kernel: Make symbol link to vmlinux.64 in boot directoryVasyl Gomonovych
Some mips 64 bit platforms use vmlinux.64 image name Make a symbol link to vmlinux.64 in arch/mips/boot/ Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 70626b52e5e61c80018e9f1f85bc169d0434b986) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08libsdl2: fix failure appeared in bitbake libsdl2-nativeYanfei Xu
When you bitbake libsdl2-native and your host had installed fcitx or ibus, it may cause you bitbake failed in do_compile. Disable fcitx and ibus check with EXTRA_OECONF in bb file. -------------snip--------------------- CC build/SDL_sysfilesystem.lo CC build/SDL_syshaptic.lo CC build/SDL_systimer.lo /poky/build/tmp/work/x86_64-linux/libsdl2-native/2.0.10-r0/SDL2-2.0.10/src/core/linux/SDL_fcitx.c:52:5: error: unknown type name ‘SDL_DBusContext’ SDL_DBusContext *dbus; ^~~~~~~~~~~~~~~ /poky/build/tmp/work/x86_64-linux/libsdl2-native/2.0.10-r0/SDL2-2.0.10/src/core/linux/SDL_fcitx.c:121:8: error: unknown type name ‘DBusHandlerResult’ static DBusHandlerResult ^~~~~~~~~~~~~~~~~ /poky/build/tmp/work/x86_64-linux/libsdl2-native/2.0.10-r0/SDL2-2.0.10/src/core/linux/SDL_fcitx.c:122:20: error: unknown type name ‘DBusConnection’; ------------snip---------------------- Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit eb286172e413e9d6449dc13ccec1b78c04481eb5) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08pseudo: Make realpath() remove trailing slashesRobert Yang
Linux system's realpath() remove trailing slashes, but pseudo's doesn't, need make them identical. E.g., the following code (rel.c) prints '/tmp' with system's realpath, but pseudo's realpath prints '/tmp/': #include <stdio.h> #include <limits.h> #include <stdlib.h> int main() { char out[PATH_MAX]; printf("%s\n", realpath("/tmp/", out)); return 0; } $ bitbake base-passwd -cdevshell # For pseudo env $ gcc rel.c $ ./a.out /tmp/ (but should be /tmp) This patch fixes the problem. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 319bbf66e03377adf2db7efa93ef578e3460eb38) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08python3: Update to apply libgcc fix to libpython, glibc onlyRichard Purdie
Update to account for review feedback on list. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ec788594f3f6a47687c6eb321437f2d2b58b1518) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08python3: RDEPEND on libgccJoshua Watt
=help> List-Subscribe: <http://lists.openembedded.org/mailman/listinfo/openembedded-core>, <mailto:openembedded-core-request@lists.openembedded.org?subject=subscribe> Content-Type: text/plain; charset="us-ascii" Sender: openembedded-core-bounces@lists.openembedded.org Errors-To: openembedded-core-bounces@lists.openembedded.org X-Virus-Scanned: clamav-milter 0.101.4 at dan X-Virus-Status: Clean X-Evolution-Source: 1525863794.3857.16@hex Content-Transfer-Encoding: 8bit Python uses features of glibc that require it to dynamically load (i.e. dlopen()) libgcc_s at runtime. However, since this isn't a link time dependency, it doesn't get picked up automatically by bitbake so manually add it to RDEPENDS. There is an outstanding bug in Python to make it explicitly link against libgcc at link time which would remove the need for this. See: https://bugs.python.org/issue37395 Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit df107f3a149b1e88d9f869e7ff87950ccf5aaee0) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08python3: Upgrade 3.7.5 -> 3.7.6Adrian Bunk
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit aee9beb12226abf7a195b8ee801ea488920b2fdb) [Bug fix only update] Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08systemd: Upgrade 243 -> 243.2Adrian Bunk
Bugfix-only changes on the 243 stable branch. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08podfix: only alter normal filesRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 23d38b2ad6f7a39e5c1ffd092322942474935c33) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08reproducible_build_simple: inherit podfixRoss Burton
When doing reproducible builds inherit podfix to remove the possibility of differing Perl versions causing manpages to change. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 5dc43edab4787906f2c9f51e51bf78d1dc966286) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08podfix: class to remove Pod::Man versions from manpagesRoss Burton
Manpages generated by Pod::Man contain the version number, which isn't reproducible if we're using the host Perl to generate manpage. One option is to always depend on perl-native when generating manpages but this is a heavy dependency, so instead strip out the versions in do_install(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 18d8e5ac689d6eb6098f68ac785f43e9d5f5938a) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08liberror-perl: update 0.17027 -> 0.17028Tim Orling
HOMEPAGE change from bitbucket to github Upstream release notes: - Moved the VCS repo to https://github.com/shlomif/perl-error.pm - No other significant changes. Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 488680f45fbe28e32391e2a1a66ab350706abe93) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08linux-yocto/5.2: update to v5.2.28Bruce Ashfield
Updating linux-yocto/5.2 to the latest korg -stable release that comprises the following commits: 7943d7e69aa7 Linux 5.2.28 b5db992cfdd3 usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() a0b637f7868d usb: gadget: configfs: Fix missing spin_lock_init() aee8c2147a36 net: cdc_ncm: Signedness bug in cdc_ncm_set_dgram_size() a04397ac5986 bonding: fix active-backup transition after link failure 0993efbf3f01 ALSA: usb-audio: Fix incorrect size check for processing/extension units 66375457a696 ALSA: usb-audio: Fix incorrect NULL check in create_yamaha_midi_quirk() c0920628d63f ALSA: hda/ca0132 - Fix work handling in delayed HP detection e14b1f4b4011 mwifiex: fix possible heap overflow in mwifiex_process_country_ie() 060505a3c9dc io_uring: use current task creds instead of allocating a new one 8d113ae57534 io_uring: async workers should inherit the user creds 4079323e2113 net/ibmvnic: unlock rtnl_lock in reset so linkwatch_event can run 013e927d5204 arm64: errata: Update stale comment 2c8f51168b64 netfilter: ipset: Copy the right MAC address in hash:ip,mac IPv6 sets 911f63fa6335 bonding: fix using uninitialized mode_lock ab3e4e6f92d4 usbip: Fix free of unallocated memory in vhci tx 516423c1395e cgroup,writeback: don't switch wbs immediately on dead wbs if the memcg is dead 2c17159569ee mm/filemap.c: don't initiate writeback if mapping has no dirty pages a53a54cbee03 ocfs2: protect extent tree in ocfs2_prepare_inode_for_write() 96e3c3553d84 e1000: fix memory leaks ef2c5f55f92e igb: Fix constant media auto sense switching when no cable is connected 5853c1ae13c9 net: ethernet: arc: add the missed clk_disable_unprepare 330a0ce1737a NFSv4: Don't allow a cached open with a revoked delegation ecb481d00e39 arm64: apply ARM64_ERRATUM_843419 workaround for Brahma-B53 core c3cc8b365b07 arm64: Brahma-B53 is SSB and spectre v2 safe 87251ea1e89b arm64: apply ARM64_ERRATUM_845719 workaround for Brahma-B53 core 36c2624f9432 usb: dwc3: gadget: fix race when disabling ep with cancelled xfers 93268e187878 arm64: cpufeature: Enable Qualcomm Falkor errata 1009 for Kryo 1498bf362a53 x86, efi: Never relocate kernel below lowest acceptable address 3cfc26fc6f99 efi: libstub/arm: Account for firmware reserved memory at the base of RAM fc5ffc1e3fdd hv_netvsc: Fix error handling in netvsc_attach() 92b10afd667e SUNRPC: The RDMA back channel mustn't disappear while requests are outstanding 086a81dbfba3 SUNRPC: The TCP back channel mustn't disappear while requests are outstanding ffdad349b545 drm/amd/display: Passive DP->HDMI dongle detection fix 35be94b64940 drm/amd/display: do not synchronize "drr" displays 7c39460cb5ac drm/amdgpu: If amdgpu_ib_schedule fails return back the error. 78d726f10338 drm/sched: Set error to s_fence if HW job submission failed. 9830f79967bf mt76: dma: fix buffer unmap with non-linear skbs 720d823bdb4b iommu/amd: Apply the same IVRS IOAPIC workaround to Acer Aspire A315-41 63fd1ae15909 net: mscc: ocelot: refuse to overwrite the port's native vlan 9016218584da net: mscc: ocelot: fix vlan_filtering when enslaving to bridge before link is up 28c0b80eaf33 net: hisilicon: Fix "Trying to free already-free IRQ" 1ecc30627dde fjes: Handle workqueue allocation failure e87e60d8b437 nvme-multipath: fix possible io hang after ctrl reconnect 4872894ab801 sched/topology: Allow sched_asym_cpucapacity to be disabled 1da63fea0a7b sched/topology: Don't try to build empty sched domains 70e90b283406 scsi: qla2xxx: stop timer in shutdown path 1cc270775485 hwmon: (ina3221) Fix read timeout issue 45239aea409d RDMA/hns: Prevent memory leaks of eq->buf_list 53fa37993b30 RDMA/iw_cxgb4: Avoid freeing skb twice in arp failure case 7ff5b79bbbeb usbip: tools: Fix read_usb_vudc_device() error path handling a2938e175103 USB: ldusb: use unsigned size format specifiers 680a523e29ac USB: Skip endpoints with 0 maxpacket length e0d7df991267 perf/x86/uncore: Fix event group support 89cc224ca642 perf/x86/amd/ibs: Handle erratum #420 only on the affected CPU family (10h) 3cef7fe493bc perf/x86/amd/ibs: Fix reading of the IBS OpData register and thus precise RIP validity b2dce44309c3 usb: dwc3: remove the call trace of USBx_GFLADJ 2a3754959b17 usb: gadget: configfs: fix concurrent issue between composite APIs b97e16bf764c usb: gadget: composite: Fix possible double free memory bug f28bdd84158d usb: gadget: udc: atmel: Fix interrupt storm in FIFO mode. 5853c961dc7f usb: fsl: Check memory resource before releasing it 95100a241e6d usb: dwc3: select CONFIG_REGMAP_MMIO 108ae240a478 scsi: sd: define variable dif as unsigned int instead of bool 6525d5046fc8 virt_wifi: fix refcnt leak in module exit routine d7aaa2cc70d4 macsec: fix refcnt leak in module exit routine 9ca46b3266cd bonding: use dynamic lockdep key instead of subclass 09dd999301fe bonding: fix unexpected IFF_BONDING bit unset b3ba6e2b6620 ipvs: move old_secure_tcp into struct netns_ipvs d532f1fd8afb ipvs: don't ignore errors in case refcounting ip_vs module fails 70cbcdb17ff0 net: phy: smsc: LAN8740: add PHY_RST_AFTER_CLK_EN flag 0e4ba0c6840e xsk: Fix registration of Rx-only sockets ef1fdf7f97d0 netfilter: nf_flow_table: set timeout before insertion into hashes 38521edda858 iwlwifi: pcie: 0x2720 is qu and 0x30DC is not 8560aaae6c0e iwlwifi: pcie: fix all 9460 entries for qnj bd7630c67813 iwlwifi: pcie: fix PCI ID 0x2720 configs that should be soc dbd6c9966dd8 bpf: Fix use after free in bpf_get_prog_name 86e351f38ec7 scsi: qla2xxx: Initialized mailbox to prevent driver load failure efb36f318994 scsi: lpfc: Honor module parameter lpfc_use_adisc 9bff69da3b99 net: openvswitch: free vport unless register_netdevice() succeeds 193fa1a4522a bpf: Fix use after free in subprog's jited symbol removal 1ee4522aa93c RDMA/uverbs: Prevent potential underflow 9c018cb9f15b scsi: ufs-bsg: Wake the device before sending raw upiu commands 682f81e5304b scsi: qla2xxx: fixup incorrect usage of host_byte dca864479cde selftests/bpf: More compatible nc options in test_tc_edt 7ad63e706f31 net/mlx5e: TX, Fix consumer index of error cqe dump b3c5d67904a8 net/mlx5e: Tx, Fix assumption of single WQEBB of NOP in cleanup flow de4ed191ea6a IB/core: Use rdma_read_gid_l2_fields to compare GID L2 fields b4912439edec RDMA/qedr: Fix reported firmware version 8291185a312b iw_cxgb4: fix ECN check on the passive accept fc84b384eb40 RDMA/mlx5: Clear old rate limit when closing QP c76d7b0214ee powerpc/32s: fix allow/prevent_user_access() when crossing segment boundaries. 13fecbf4a027 HID: intel-ish-hid: fix wrong error handling in ishtp_cl_alloc_tx_ring() e6d91869518a dmaengine: sprd: Fix the possible memory leak issue 55d41c0f1470 dmaengine: xilinx_dma: Fix control reg update in vdma_channel_set_config cb7318f2b0e4 dmaengine: xilinx_dma: Fix 64-bit simple AXIDMA transfer 03a1b968775d bpf: lwtunnel: Fix reroute supplying invalid dst 4903f1d1bf8b dmaengine: sprd: Fix the link-list pointer register configuration issue 556cf9124c0a HID: google: add magnemite/masterball USB ids 09e8a1ec600e usbip: Implement SG support to vhci-hcd and stub driver 065245f072da ALSA: usb-audio: Fix copy&paste error in the validator 51db18fc1b06 ALSA: usb-audio: remove some dead code eeb8753a5329 ALSA: usb-audio: Fix possible NULL dereference at create_yamaha_midi_quirk() 5159d8aab602 ALSA: usb-audio: Clean up check_input_term() 594d9d1e5e17 ALSA: usb-audio: Remove superfluous bLength checks 44db0074cd7c ALSA: usb-audio: Unify the release of usb_mixer_elem_info objects 443cff51a6bb ALSA: usb-audio: Simplify parse_audio_unit() bcc4dd818640 ALSA: usb-audio: More validations of descriptor units af26301992ac configfs: fix a deadlock in configfs_symlink() 58e23dc42be6 can: dev: add missing of_node_put() after calling of_get_child_by_name() b2b42b51675f can: rx-offload: can_rx_offload_queue_sorted(): fix error handling, avoid skb mem leak 35b90e57a289 can: peak_usb: fix a potential out-of-sync while decoding packets 6cc9a0bb94de can: c_can: c_can_poll(): only read status register after status IRQ 78aa7546e343 can: flexcan: disable completely the ECC mechanism 60eb5bed4403 can: usb_8dev: fix use-after-free on disconnect 573872be4f06 SMB3: Fix persistent handles reconnect a422197a1eab x86/apic/32: Avoid bogus LDR warnings 46279c9462f3 x86/dumpstack/64: Don't evaluate exception stacks before setup c6c6ac3c04b2 intel_th: pci: Add Jasper Lake PCH support 911ece5b25e1 intel_th: pci: Add Comet Lake PCH support 3f2a73ab3b0a intel_th: gth: Fix the window switching sequence ecb83032ecac netfilter: ipset: Fix an error code in ip_set_sockfn_get() 343ebeaf5062 netfilter: nf_tables: Align nft_expr private data to 64-bit 97d84484d0e6 cpufreq: intel_pstate: Fix invalid EPB setting 7c985c014425 ARM: sunxi: Fix CPU powerdown on A83T 43a2cca05874 iio: srf04: fix wrong limitation in distance measuring b870132ec166 iio: imu: inv_mpu6050: fix no data on MPU6050 e48c1fca5974 iio: imu: adis16480: make sure provided frequency is positive 9dca863d3b35 iio: adc: stm32-adc: fix stopping dma 8fc1bf8f2be7 ceph: don't allow copy_file_range when stripe_count != 1 8cfda9695cf9 ceph: don't try to handle hashed dentries in non-O_CREAT atomic_open 4ad07fc427d4 ceph: add missing check in d_revalidate snapdir handling ef1848480086 ceph: fix RCU case handling in ceph_d_revalidate() d97f80fd208a ceph: fix use-after-free in __ceph_remove_cap() dfe4803a9068 ASoC: rsnd: dma: fix SSI9 4/5/6/7 busif dma address 5e23235c9524 arm64: Do not mask out PTE_RDONLY in pte_same() 48c2025b2f09 blkcg: make blkcg_print_stat() print stats only for online blkgs 034d5809a5f4 soundwire: bus: set initial value to port_status 649b8fd670bc soundwire: depend on ACPI || OF 94aa8ee28648 soundwire: depend on ACPI ee8af21351c4 mm/khugepaged: fix might_sleep() warn with CONFIG_HIGHPTE=y d66df2eb6b3a HID: wacom: generic: Treat serial number and related fields as unsigned e1ffbf4ecc06 drm/radeon: fix si_enable_smc_cac() failed issue 69d06ef9e08d perf map: Use zalloc for map_groups 782163d51e60 perf tools: Fix time sorting 3067a7cc476a pinctrl: intel: Avoid potential glitches if pin is in GPIO mode b69bf236dff2 tools: gpio: Use !building_out_of_srctree to determine srctree e231278b0d22 btrfs: save i_size to avoid double evaluation of i_size_read in compress_file_range 5e162cf4feec btrfs: tree-checker: Fix wrong check on max devid 3f2943947386 dump_stack: avoid the livelock of the dump_lock 4355d417a94f mm, vmstat: hide /proc/pagetypeinfo from normal users 953014f940f5 mm: thp: handle page cache THP correctly in PageTransCompoundMap 61650775cd53 mm, meminit: recalculate pcpu batch and high limits after init completes 2dcc41fdaf8a mm: memcontrol: fix network errors from failing __GFP_ATOMIC charges aa9bf5f11454 ALSA: hda/ca0132 - Fix possible workqueue stall 3b82b35a59db ALSA: bebob: fix to detect configured source of sampling clock for Focusrite Saffire Pro i/o series e2ba23d39223 ALSA: timer: Fix incorrectly assigned timer instance 0dc0b91d07e4 vsock/virtio: fix sock refcnt holding during the shutdown 420c2d73c309 net/smc: fix ethernet interface refcounting d7b3e1639bd7 net: sched: prevent duplicate flower rules from tcf_proto destroy race 343d798fc32d net: prevent load/store tearing on sk->sk_stamp 7dae346fabf5 net: hns: Fix the stray netpoll locks causing deadlock in NAPI path d8dd70306467 ipv6: fixes rt6_probe() and fib6_nh->last_probe init 28b0701981a4 selftests/tls: add test for concurrent recv and send e35586c32b38 net/tls: add a TX lock a440797c1de5 net/tls: don't pay attention to sk_write_pending when pushing partial records d606d0d99205 net: mscc: ocelot: fix NULL pointer on LAG slave removal 0be7d0f645a9 net: mscc: ocelot: don't handle netdev events for other netdevs 7c406bd7d55b qede: fix NULL pointer deref in __qede_remove() a09ec9b4cc7d NFC: st21nfca: fix double free 0c0b3ac80ac8 nfc: netlink: fix double device reference drop 90a397f2593f NFC: fdp: fix incorrect free object cfe446854a9c net: usb: qmi_wwan: add support for DW5821e with eSIM support 8d510fd1378a net/tls: fix sk_msg trim on fallback to copy mode 55a7a495b3fe net: qualcomm: rmnet: Fix potential UAF when unregistering 756e7124cde2 net: fix data-race in neigh_event_send() 212322510b49 net: ethernet: octeon_mgmt: Account for second possible VLAN header b0855a3ad221 ipv4: Fix table id reference in fib_sync_down_addr 9dfa56e19c37 CDC-NCM: handle incomplete transfer of MTU 86e7bde87d43 bonding: fix state transition issue in link monitoring Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit b538fedff2cbd4604a7c73fdee07167f1ad3155a) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08linux-yocto/4.19/5.2/-dev: fix gcc10 buildBruce Ashfield
Integrating Khem's gcc10 build fix: [ Author: Khem Raj <raj.khem@gmail.com> Date: Fri Dec 20 17:42:02 2019 -0800 x86/boot/compressed/64: Define __force_order only when CONFIG_RANDOMIZE_BASE is unset kaslr_64.c also defines the same variable, however when both files are included into final link, linker complains about multiple definition of `__force_order' which is coming from kaslr_64.o and pgtable_64.o, its possible that kaslr_64.o is disabled via CONFIG_RANDOMIZE_BASE config option, therefore define it conditionally only when CONFIG_RANDOMIZE_BASE is not set Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Kees Cook <keescook@chromium.org> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: x86-ml <x86@kernel.org> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d3112fcf7283b9c015e77db1b0a1a78044ed2e23) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2020-01-08linux-yocto/5.2: update to v5.2.27Bruce Ashfield
Updating linux-yocto/5.2 to the latest korg -stable release that comprises the following commits: 766f754fb8ce Linux 5.2.27 2e635a05d05c ASoC: SOF: Intel: hda-stream: fix the CONFIG_ prefix missing 1708b2a269de usb: gadget: udc: core: Fix segfault if udc_bind_to_driver() for pending driver fails 52d4750e4da2 arm64: dts: ti: k3-am65-main: Fix gic-its node unit-address d7b2a7ceb695 ASoC: pcm3168a: The codec does not support S32_LE 8c9d7d01ccf0 selftests/powerpc: Fix compile error on tlbie_test due to newer gcc 532cc582af44 selftests/powerpc: Add test case for tlbie vs mtpidr ordering issue 21344b6bacda CIFS: Fix retry mid list corruption on reconnects 7249aad46eed platform/x86: pmc_atom: Add Siemens SIMATIC IPC227E to critclk_systems DMI table 48a226ebae98 net/flow_dissector: switch to siphash 27508702fe6d net: bcmgenet: reset 40nm EPHY on energy detect 8bbff985b199 net: phy: bcm7xxx: define soft_reset for 40nm EPHY 3a48c3ea0431 net: netem: correct the parent's backlog when corrupted packet was dropped 472df452d167 r8152: add device id for Lenovo ThinkPad USB-C Dock Gen 2 717fa6516e96 net: usb: lan78xx: Connect PHY before registering MAC 1d2fd4d20889 net: netem: fix error path for corrupted GSO frames 5f0d17174801 net: hns3: fix mis-counting IRQ vector numbers issue 18a577972516 net: dsa: fix switch tree list b2c233dbbdcb net: dsa: b53: Do not clear existing mirrored port mask 30f425544ea2 net: bcmgenet: don't set phydev->link from MAC 3d4a4cfb4ef7 net/mlx5e: Fix handling of compressed CQEs in case of low NAPI budget ba405f985d11 net/mlx5e: Fix ethtool self test: link speed 01284dbae3d4 r8169: fix wrong PHY ID issue with RTL8168dp 0a02e85ee175 mlxsw: core: Unpublish devlink parameters during reload 0031274acd73 net/mlx5: Fix rtable reference leak 0bb43d6b565e net/smc: fix refcount non-blocking connect() -part 2 5dca2f5212b5 net/smc: fix refcounting for non-blocking connect() 3320bb716cb3 net/mlx5: Fix flow counter list auto bits struct 0490b698de8f net/smc: keep vlan_id for SMC-R in smc_listen_work() 83577bc7531c net/smc: fix closing of fallback SMC sockets 89b1d3e8dc5e selftests: fib_tests: add more tests for metric update 52752b65dc62 ipv4: fix route update on metric change. c7525fb56257 net: add READ_ONCE() annotation in __skb_wait_for_more_packets() c7a5d3e53e0a net: use skb_queue_empty_lockless() in busy poll contexts 7648cc097d86 net: use skb_queue_empty_lockless() in poll() handlers b192ff3d10ba udp: use skb_queue_empty_lockless() 155f9ae9e73c net: add skb_queue_empty_lockless() c17ac3802036 vxlan: check tun_info options_len properly 9c154c58aa9d udp: fix data-race in udp_set_dev_scratch() b64595ce1ed4 selftests: net: reuseport_dualstack: fix uninitalized parameter fb87cd347da4 net: Zeroing the structure ethtool_wolinfo in ethtool_get_wol() 0819acecc962 net: usb: lan78xx: Disable interrupts before calling generic_handle_irq() 07e413b2fbb0 net: rtnetlink: fix a typo fbd -> fdb 0e3580cc30bf netns: fix GFP flags in rtnl_net_notifyid() 338502ee8050 net/mlx4_core: Dynamically set guaranteed amount of counters per VF df8fccdba3d1 net: hisilicon: Fix ping latency when deal with high throughput 1a3cfa10a0d7 net: fix sk_page_frag() recursion from memory reclaim b38a3703d880 net: ethernet: ftgmac100: Fix DMA coherency issue with SW checksum 7ad5a3f67946 net: dsa: bcm_sf2: Fix IMP setup for port different than 8 9f949630b4e5 net: annotate lockless accesses to sk->sk_napi_id 8f963115bff3 net: annotate accesses to sk->sk_incoming_cpu 72e16d7c131f inet: stop leaking jiffies on the wire 250e30ea064b erspan: fix the tun_info options_len check for erspan 5001418c1340 dccp: do not leak jiffies on the wire 7ed4e6ea40b4 cxgb4: request the TX CIDX updates to status page 11ccb2b93320 cxgb4: fix panic when attaching to ULD fail 95a7b64f82d0 nbd: handle racing with error'ed out commands 5d6e015cded5 nbd: protect cmd->status with cmd->lock 092a5fa02456 irqchip/sifive-plic: Skip contexts except supervisor in plic_init() 7a3552d0d993 cifs: Fix cifsInodeInfo lock_sem deadlock when reconnect occurs 81eb09eaf75b i2c: stm32f7: remove warning when compiling with W=1 29143d76b32e i2c: stm32f7: fix a race in slave mode with arbitration loss irq 433c1cb88a21 i2c: stm32f7: fix first byte to send in slave mode aef36d8fa956 i2c: mt65xx: fix NULL ptr dereference 47392944abe2 irqchip/gic-v3-its: Use the exact ITSList for VMOVP 93cfb4dcfa2c MIPS: bmips: mark exception vectors as char arrays 7639d63d6cdb ALSA: hda: Add Tigerlake/Jasperlake PCI ID 1b916a8969b6 selftests: kvm: fix sync_regs_test with newer gccs 782536b540ef selftests: kvm: vmx_set_nested_state_test: don't check for VMX support twice e7d861519b9d ARM: 8926/1: v7m: remove register save to stack before svc 6a70e11c2225 drm/komeda: Don't flush inactive pipes 2ae6a7ecd31d i2c: aspeed: fix master pending state handling db0521235e05 ARM: dts: bcm2837-rpi-cm3: Avoid leds-gpio probing issue 7d8ff5d7d0bc tracing: Fix "gfp_t" format for synthetic events 962b999c85b7 scsi: target: core: Do not overwrite CDB byte 1 14983cdea8af drm/amdgpu: fix error handling in amdgpu_bo_list_create a772698fbff7 drm/amdgpu: fix potential VM faults 7c39141a8e19 ARM: davinci: dm365: Fix McBSP dma_slave_map entry f6266068923b perf kmem: Fix memory leak in compact_gfp_flags() 39fa2e018843 8250-men-mcb: fix error checking when get_num_ports returns -ENODEV 8695a1b81da1 perf c2c: Fix memory leak in build_cl_output() c6bfe2d971a2 perf tools: Fix resource leak of closedir() on the error paths 74825b0f12f5 arm64: dts: imx8mm: Use correct clock for usdhc's ipg clk 606b1f7012c4 arm64: dts: imx8mq: Use correct clock for usdhc's ipg clk bd48cf1b8785 ARM: dts: imx7s: Correct GPT's ipg clock source 634adb5ff10d ARM: dts: vf610-zii-scu4-aib: Specify 'i2c-mux-idle-disconnect' b5e444ec8046 ARM: dts: imx6q-logicpd: Re-Enable SNVS power key 21991e6ca3a8 arm64: dts: lx2160a: Correct CPU core idle state name 0c6787a615a9 arm64: dts: rockchip: fix RockPro64 sdmmc settings 54a20ce80ef4 ARM: 8914/1: NOMMU: Fix exc_ret for XIP 65afe1bbf903 ARM: 8908/1: add __always_inline to functions called from __get_user_check() f1d2d5999a90 scsi: fix kconfig dependency warning related to 53C700_LE_ON_BE f91e21d4ec3a scsi: sni_53c710: fix compilation error 41c16b471c56 scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions 1ca65ebd2038 scsi: qla2xxx: fix a potential NULL pointer dereference d6940a823dd4 ARM: mm: fix alignment handler faults under memory pressure 2dbff99a37af ARM: dts: Use level interrupt for omap4 & 5 wlcore 1c5dfeaa70da ASoC: simple_card_utils.h: Fix potential multiple redefinition error 6c1607186a43 ASoC: msm8916-wcd-digital: add missing MIX2 path for RX1/2 3f03fb38ecb5 ARM: dts: am3874-iceboard: Fix 'i2c-mux-idle-disconnect' usage 0e688ad61baa arm64: dts: zii-ultra: fix ARM regulator states 0af649d2eb1f pinctrl: stmfx: fix null pointer on remove c4829c0de7f8 pinctrl: ns2: Fix off by one bugs in ns2_pinmux_enable() a804692693e4 arm64: dts: rockchip: fix RockPro64 sdhci settings adb1f13ec2a3 arm64: dts: rockchip: fix RockPro64 vdd-log regulator settings 3b7f40e22049 ARM: dts: logicpd-torpedo-som: Remove twl_keypad dbae4113b111 arm64: dts: rockchip: fix Rockpro64 RK808 interrupt line 35121b191493 ASoc: rockchip: i2s: Fix RPM imbalance 273687c15ca7 ASoC: wm_adsp: Don't generate kcontrols without READ flags 2a8adb4c41eb regulator: pfuze100-regulator: Variable "val" in pfuze100_regulator_probe() could be uninitialized 0b37b27e25e4 ASoC: intel: bytcr_rt5651: add null check to support_button_press f56de4455199 ASoC: intel: sof_rt5682: add remove function to disable jack f7b687159124 ASoC: rt5682: add NULL handler to set_jack function 4b6e757b6c3b ASoC: SOF: Intel: hda: Disable DMI L1 entry during capture 375b9b38fbb8 ASoC: SOF: Intel: initialise and verify FW crash dump data. 70e6d9eafbe8 ASoC: SOF: Intel: hda: fix warnings during FW load 87df87873d3f ASoC: SOF: topology: fix parse fail issue for byte/bool tuple types f0c8c58983c5 ASoC: SOF: loader: fix kernel oops on firmware boot failure d972519f0d11 pinctrl: intel: Allocate IRQ chip dynamic ceced419c570 regulator: ti-abb: Fix timeout in ti_abb_wait_txdone/ti_abb_clear_all_txdone 4934e53e51a2 arm64: dts: Fix gpio to pinmux mapping 9a61c23028d2 arm64: dts: allwinner: a64: sopine-baseboard: Add PHY regulator delay 39f4a4a170ce arm64: dts: allwinner: a64: Re-add PMU node b68dfc690d27 arm64: dts: allwinner: a64: Drop PMU node 6974df4eb790 arm64: dts: allwinner: a64: pine64-plus: Add PHY regulator delay 01a832b775a0 ASoC: topology: Fix a signedness bug in soc_tplg_dapm_widget_create() 94c31579cefb regulator: da9062: fix suspend_enable/disable preparation ece602dfdc03 ASoC: wm8994: Do not register inapplicable controls for WM1811 52cc4490b025 regulator: of: fix suspend-min/max-voltage parsing d35e9545daaa ext4: add more paranoia checking in ext4_expand_extra_isize handling Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit f558800a5cf1e59310eaacb091d75d06022ecea0) Signed-off-by: Armin Kuster <akuster808@gmail.com>