summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-09-01scripts/sync-spdx-licenses.pyjpew/sbomJoshua Watt
Adds a script to synchronize the SPDX license JSON manifest, and also update or add the local generic licenses to match the SPDX versions Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01swig: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01flac: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01font-util: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01libx11: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01libjitterentropy: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01libxfont2: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01libpam: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01libcap: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01sudo: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01shadow: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01e2fsprogs: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01glib-2.0: Use specific BSD license variantJoshua Watt
Make the license more accurate by specifying the specific variant of BSD license instead of the generic one. This helps with SPDX license attribution as "BSD" is not a valid SPDX license. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01tzdata: Remove BSD License specifierJoshua Watt
The code in question is licensed under the BSD-3-Clause license, so including the generic "BSD" license is unnecessary. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01conf/licenses: Add FreeType SPDX mappingJoshua Watt
The FreeType license maps to the FTL SPDX identifier Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Comment out placeholder license warningJoshua Watt
We don't want this warning causing problems on the AB, so leave it comment out for now Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Skip package processing for native recipesJoshua Watt
Native recipes do not produce packages and should not process them, otherwise it can trigger an error in read_subpackage_metadata Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Collect all task dependenciesJoshua Watt
Stop filtering the runtime dependencies based on do_create_sdpx (makes it only pick up things in DEPENDS) and instead include all task dependencies that are not the current PN. This allows other dependency methods to be picked up correctly, for example the dependency on the kernel used by kernel modules. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add special exception for Public Domain licenseJoshua Watt
The Public Domain license (PD) needs a special exception in the license processing since there is no common license text to be extracted for these licenses. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Fix file:// in downloadLocationJoshua Watt
file:// URIs should not be included as the downloadLocation. Instead, loop until a non-file:// URI is found, or set the location to NOASSERTION if none is found Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Speed up hash calculationsJoshua Watt
Use the bb.utils.sha* utilities to hash files since they are much faster than the loops we were rolling ourselves Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Fix up license reportingJoshua Watt
Licenses reported in the SPDX documents should be either: A) A valid SPDX identifier cross referenced from the SPDX license database B) A "LicenseRef" to a license described in the SPDX document The licensing code will now add a placeholder extracted license with corresponding "LicenseRef" for any licenses that are not matched to the SPDX database Parenthesis in the license expression are now handled correctly Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01Add SPDX licensesJoshua Watt
Adds the SPDX license database from https://github.com/spdx/license-list-data Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: extend DocumentRef to include nameSaul Wold
This will create a more uniq DocumentRef, which will allow the individual spdx files to be merged into a single SBOM file reflecting the image. Do the same with the runtime dependencies also Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Fix another creatorJoshua Watt
Fixes another creator that was missed earlier Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add NOASSERTION for unknown debug sourcesJoshua Watt
If a debug source cannot be found, mark it as NOASSERTION so that other tools at least know we were unable to locate it. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add runtime dependency mappingJoshua Watt
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add index to DEPLOYDIRJoshua Watt
Add the index to DEPLOYDIR in addition to adding it to the SPDX archive Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add SHA1 to index fileJoshua Watt
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Change creatorJoshua Watt
Update the creator name since this no longer lives in meta-doubleopen Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/create-spdx: Add classJoshua Watt
Adds a class as a first attempt to create SPDX SBoM documents during the build. This initial work was influenced by [meta-doubleopen][1], although almost completely rewritten. [1]: https://github.com/doubleopen-project/meta-doubleopen Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01classes/package: Add extended packaged dataJoshua Watt
Adds extended package data which is encoded as JSON which allows it to encode more structure than the "flat" package data files. The extended data might be much larger than the standard package data, so it is not read by default and instead requires oe.packagedata.read_subpkgdata_extended() to be called Currently, the file sizes and ELF debug sources are saved off into the extended package data Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Reviewed-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
2021-09-01distro_features_check: expand with IMAGE_FEATURESTrevor Woerner
In addition to checking DISTRO_, MACHINE_, and COMBINED_ FEATURES for required or conflicting features, extend this functionality in order to check IMAGE_FEATURES in the same way. (From OE-Core rev: 96a9702a24a73c152c8e7398c3774e63c53a92a9) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01buildhistory: Label packages providing per-file dependencies in depends.dotAndres Beltran
Currently, depends.dot includes per-file dependencies but not the packages providing those files. This makes it hard to obtain all package dependencies by just looking at depends.dot. Parse the RPROVIDES and FILERPROVIDES fields from pkgdata to map each of their values to the package providing the component. Include runtime packages as dependencies in depends.dot, together with the component provided by the package as a label. (From OE-Core rev: 2ba33093017574bbe29eeba699eb90628614d03a) Signed-off-by: Andres Beltran <abeltran@linux.microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01cpio: backport fix for CVE-2021-38185Ross Burton
(From OE-Core rev: 4accf77ea5b5810cb2330acc6773690ec1b1c71b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01rustfmt: fix SRC_URIKai Kang
(From OE-Core rev: 9f92fcb502aeae26c2e35832d5414a6096c20961) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01musl: Update to latest tip of trunkKhem Raj
Drop upstream patch This brings in following fixes * 3f701faa (upstream/master, origin/master) fix libc-internal signal blocking on mips archs * 0fbd7d66 fix broken struct shmid_ds on powerpc (32-bit) * 4f3d346b math: fix fmaf not to depend on FE_TOWARDZERO * 937822ab fix TZ parsing logic for identifying POSIX-form strings * 1f0c7cb1 riscv: rename __NR_fstatat __NR_newfstatat * d8cb888d remove return with expression in void function * b7a130e0 remove unnecessary cast for map_library return * bd3b9c4c add pthread_getname_np function * e1a51185 fix popen not to leak pipes from one child to another * e74acd59 remove spurious lock in popen * 9a40e842 define __STDC_UTF_{16,32}__ macros (From OE-Core rev: da8fcd0155f1cf3394d0886c940bee77669009d4) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01rust-common.bbclass: export RUST_TARGET_PATHTim Orling
Running 'rustc --print <foo>' in -c devshell environment the target specifications are not known, unless the RUST_TARGET_PATH (absolute path to rustlib/) is defined. (From OE-Core rev: 6d0603ffe18c1a5999db854abb668b05aff47f67) Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01tune-*: Use more specific DEFAULTTUNEJon Mason
These files are using a more generic DEFAULTTUNE in their targeted tune file. This is contrary to what is being done in other tune files, and this changes them to match. It is still possible to use the more generic DEFAULTTUNE in a machine's config file by simply specifying it. (From OE-Core rev: e35205a9803692d72eb92b86d740821c667b527e) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01rust: fix upstream version checksAlexander Kanavin
(From OE-Core rev: e2e87d82ad1ec071077f29613e2e568196912daa) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01lz4: remove rest of ptest artifactsArmin Kuster
Commit: 953f6d9a71 lz4: remove ptest changes missed removing the run-ptest file (From OE-Core rev: 28aaf1223396820f8fcd9a6aade46b5007b030a6) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01lz4: Security Fix for CVE-2021-3520Armin Kuster
Source: https://github.com/lz4/lz4 MR: 111604 Type: Security Fix Disposition: Backport from https://github.com/lz4/lz4/commit/8301a21773ef61656225e264f4f06ae14462bca7#diff-7055e9cf14c488aea9837aaf9f528b58ee3c22988d7d0d81d172ec62d94a88a7 ChangeID: 58492f950164e75954a97cf084df6f9af3d88244 Description: (From OE-Core rev: 6d6a089a2f637051333e0137d2e748c823e2aa98) Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01base/kernel: Support zstd-compressed squashfs and cpio initramfsZoltán Böszörményi
Enable zstd PACKAGECONFIG knob for squashfs-tools and add support for zstd compressed initramfs and squashfs. (From OE-Core rev: fa146049eec5f9730781830270cc9dc55a2146f7) Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-01kernel: Use unexpanded EXTENDPKGVRichard Purdie
EXTENDPKGV can contain AUTOINC so use an expanded form in the variables allowing for later expansion during packaging to avoid race issues over the variable and the build failures that can result. (From OE-Core rev: 1f93d2426d22c74893e8daec9bb939133c5737c2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-31glibc: fix create thread failed in unprivileged processHongxu Jia
Since upstream commit [d8ea0d0168 Add an internal wrapper for clone, clone2 and clone3] applied, start a unprivileged container (docker run without --privileged), it creates a thread failed in container. In commit d8ea0d0168, it calls __clone3 if HAVE_CLONE3_WAPPER is defined. If __clone3 returns -1 with ENOSYS, fall back to clone or clone2. As known from [1], cloneXXX fails with EPERM if CLONE_NEWCGROUP, CLONE_NEWIPC, CLONE_NEWNET, CLONE_NEWNS, CLONE_NEWPID, or CLONE_NEWUTS was specified by an unprivileged process (process without CAP_SYS_ADMIN) [1] https://man7.org/linux/man-pages/man2/clone3.2.html So if __clone3 returns -1 with EPERM, fall back to clone or clone2 could fix the issue. (From OE-Core rev: 234a3e84640c1bb6df5fa4d3d7089a854b19d108) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-27bitbake: providers: Use new override syntax when handling pn- "override"Peter Kjellerstedt
Make versionVariableMatch() support pn-foo overrides using the new override syntax. (Bitbake rev: 653df4bc413d595d5611d5fa678e7f2e30bb7431) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-27buildhistory: Add output file listing package informationAndres Beltran
Currently, buildhistory does not produce a single file combining relevant information of installed packages. Produce an output file "installed-package-info.txt" listing a package's runtime name, buildtime name, its recipe, version, and size to avoid having to look up each package externally. Leave the existing package list files as-is for backwards compatibility. In order to support this efficiently, extend oe-pkgdata-util to accept multiple keys for its read-value argument. (From OE-Core rev: 1e18b514bf1f960d324a21db608c8e8e5af007ef) Signed-off-by: Andres Beltran <abeltran@linux.microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-27parselogs.py: ignore intermittent CD/DVDROM identification failureBruce Ashfield
We don't use the CD/DVD ROM drive in any of our tests, but it periodically fails discovery and that leads to a QA error: [ 6.403477] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4) The only way to disable the optical ROM drive in qemu is to use the '-nodefaults' option, which disables the CDROM (among other things). We can't be sure that none of our tests, or extended users are relying on default devices, so using that option is more of a risk than adding the message to our ignore list. To date, no one has sent a patch to just disable the optical drive (either in qemu or the BIOS), but that is something we could consider in the future. [YOCTO #14528] (From OE-Core rev: 143fc5504539c69752ca87717507c197a8920ce5) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-27linux-yocto/5.10: update to v5.10.60Bruce Ashfield
Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 2c5bd949b1df Linux 5.10.60 3a24e121304a net: dsa: microchip: ksz8795: Use software untagging on CPU port 1e78179d75fb net: dsa: microchip: ksz8795: Fix VLAN untagged flag change on deletion 5033d5e23155 net: dsa: microchip: ksz8795: Reject unsupported VLAN configuration 60c007b52779 net: dsa: microchip: ksz8795: Fix PVID tag insertion f365d53c8687 net: dsa: microchip: Fix probing KSZ87xx switch with DT node for host port 3dc5666baf2a KVM: nSVM: always intercept VMLOAD/VMSAVE when nested (CVE-2021-3656) c0883f693187 KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl (CVE-2021-3653) b5f05bdfda28 vmlinux.lds.h: Handle clang's module.{c,d}tor sections 2fe07584a623 ceph: take snap_empty_lock atomically with snaprealm refcount change a23aced54c2c ceph: clean up locking annotation for ceph_get_snap_realm and __lookup_snap_realm b0efc93271ca ceph: add some lockdep assertions around snaprealm handling dcdb587ac470 vboxsf: Add support for the atomic_open directory-inode op 7cd14c1a7fed vboxsf: Add vboxsf_[create|release]_sf_handle() helpers 433f0b31ebec KVM: nVMX: Use vmx_need_pf_intercept() when deciding if L0 wants a #PF 0ab67e3dfc4d KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation 4a948c579ed6 efi/libstub: arm64: Double check image alignment at entry fc7da433fa16 powerpc/smp: Fix OOPS in topology_init() 312730cd15e0 PCI/MSI: Protect msi_desc::masked for multi-MSI 724d0a985086 PCI/MSI: Use msi_mask_irq() in pci_msi_shutdown() 923368751866 PCI/MSI: Correct misleading comments e42fb8e6161e PCI/MSI: Do not set invalid bits in MSI mask 042e03c9cdab PCI/MSI: Enforce MSI[X] entry updates to be visible 0b2509d7a90c PCI/MSI: Enforce that MSI-X table entry is masked for update aa8092c1d1f1 PCI/MSI: Mask all unused MSI-X entries 7e90e81a4b59 PCI/MSI: Enable and mask MSI-X early 2d2c66848027 genirq/timings: Prevent potential array overflow in __irq_timings_store() 355754194b48 genirq/msi: Ensure deactivation on teardown f0736bed18fb x86/resctrl: Fix default monitoring groups reporting 25216ed97da8 x86/ioapic: Force affinity setup before startup 19fb5dabedca x86/msi: Force affinity setup before startup 4e52a4fe6f44 genirq: Provide IRQCHIP_AFFINITY_PRE_STARTUP 2a28b52306f2 x86/tools: Fix objdump version check again 4acc0d987141 powerpc/kprobes: Fix kprobe Oops happens in booke 015e2c900b5d efi/libstub: arm64: Relax 2M alignment again for relocatable kernels feb4a01d3ece efi/libstub: arm64: Force Image reallocation if BSS was not reserved afcb84e6cf8c arm64: efi: kaslr: Fix occasional random alloc (and boot) failure e0ee8d9c31b5 nbd: Aovid double completion of a request f5cefe9a52a6 vsock/virtio: avoid potential deadlock when vsock device remove dff830e5e723 xen/events: Fix race in set_evtchn_to_irq 65395b053d03 drm/i915: Only access SFC_DONE when media domain is not fused off 4344440d91b3 net: igmp: increase size of mr_ifc_count 696afe28dc51 tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B packets 8976606ca347 net: linkwatch: fix failure to restore device state across suspend/resume 4c2af90119ea net: bridge: fix memleak in br_add_if() f333a5ca71c3 net: bridge: fix flags interpretation for extern learn fdb entries e3b949b86d09 net: bridge: validate the NUD_PERMANENT bit when adding an extern_learn FDB entry 1cad01aca1fa net: dsa: sja1105: fix broken backpressure in .port_fdb_dump 56cc3408ff2a net: dsa: lantiq: fix broken backpressure in .port_fdb_dump f7720b35cd32 net: dsa: lan9303: fix broken backpressure in .port_fdb_dump 24e1b7dbb174 net: igmp: fix data-race in igmp_ifc_timer_expire() 69b13167a636 net: Fix memory leak in ieee802154_raw_deliver dbfaf7a6a23a net: dsa: microchip: ksz8795: Fix VLAN filtering ccc1fe82c878 net: dsa: microchip: Fix ksz_read64() 558092b8ed31 drm/meson: fix colour distortion from HDR set during vendor u-boot 6e1886465dea net/mlx5: Fix return value from tracer initialization 303ba011f5e1 net/mlx5: Synchronize correct IRQ when destroying CQ 00a0c11ddd72 bareudp: Fix invalid read beyond skb's linear data 30b1fc47f765 psample: Add a fwd declaration for skbuff b3f0b170842c iavf: Set RSS LUT and key in reset handle path a6192bae12e4 ice: don't remove netdev->dev_addr from uc sync list bae5b521feaa ice: Prevent probing virtual functions 059238c52c61 net: sched: act_mirred: Reset ct info when mirror/redirect skb f15f7716b047 net/smc: fix wait on already cleared link 51f4965d775e ppp: Fix generating ifname when empty IFLA_IFNAME is specified 046579c9fc28 net: phy: micrel: Fix link detection on ksz87xx switch" e95620c3bdff bpf: Fix integer overflow involving bucket_size 1960c3ac5268 libbpf: Fix probe for BPF_PROG_TYPE_CGROUP_SOCKOPT a3e9a3e22844 platform/x86: pcengines-apuv2: Add missing terminating entries to gpio-lookup tables 53ebbfdd0e37 net: mvvp2: fix short frame size on s390 784320edb6c5 net: dsa: mt7530: add the missing RxUnicast MIB counter 20a80319028c ASoC: cs42l42: Fix LRCLK frame start edge 750503aecf4e pinctrl: tigerlake: Fix GPIO mapping for newer version of software be49d5437d1a netfilter: nf_conntrack_bridge: Fix memory leak when error aa6b17bfefbc ASoC: cs42l42: Remove duplicate control for WNF filter frequency b268f9f6b73f ASoC: cs42l42: Fix inversion of ADC Notch Switch control 2386a8cde18e ASoC: SOF: Intel: hda-ipc: fix reply size checking 0e47f99e8680 ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J 576939671f74 ASoC: cs42l42: Correct definition of ADC Volume control a21963c35f16 pinctrl: mediatek: Fix fallback behavior for bias_set_combo 27188a938291 ieee802154: hwsim: fix GPF in hwsim_new_edge_nl 528f17c02db9 ieee802154: hwsim: fix GPF in hwsim_set_edge_lqi 95de3592f87e drm/amdgpu: don't enable baco on boco platforms in runpm bd80d11a516c drm/amd/display: use GFP_ATOMIC in amdgpu_dm_irq_schedule_work ae311a7418f1 drm/amd/display: Remove invalid assert for ODM + MPC case c2351e5faa3e libnvdimm/region: Fix label activation vs errors 366de90ccfa2 ACPI: NFIT: Fix support for virtual SPA ranges f3fcf9d1b759 ceph: reduce contention in ceph_check_delayed_caps() ca6dea44bd8c ARC: fp: set FPU_STATUS.FWE to enable FPU_STATUS update on context switch 4716a2145bbf net: ethernet: ti: cpsw: fix min eth packet size for non-switch use-cases 561d13128bb8 seccomp: Fix setting loaded filter count during TSYNC 54916988a0fb scsi: lpfc: Move initialization of phba->poll_list earlier to avoid crash 3db5cb922800 cifs: create sd context must be a multiple of 8 d1398e3715b1 i2c: dev: zero out array used for i2c reads from userspace b8bceace43dd ASoC: intel: atom: Fix reference to PCM buffer address 261613ef340b ASoC: tlv320aic31xx: Fix jack detection after suspend 7e5a7fa68b27 ASoC: uniphier: Fix reference to PCM buffer address 209eb62b45fe ASoC: xilinx: Fix reference to PCM buffer address c419c4c91b30 ASoC: amd: Fix reference to PCM buffer address 0c9adae11701 iio: adc: Fix incorrect exit of for-loop 632279e5057c iio: humidity: hdc100x: Add margin to the conversion time 45de224b1332 iio: adis: set GPIO reset pin direction d0532ed064d1 iio: adc: ti-ads7950: Ensure CS is deasserted after reading channels (From OE-Core rev: 94fef82258d02285009d08b7a1791de124ff8f45) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-27linux-yocto/5.13: update to v5.13.12Bruce Ashfield
Updating linux-yocto/5.13 to the latest korg -stable release that comprises the following commits: f428e49b8cb1 Linux 5.13.12 639a033fd765 KVM: nSVM: always intercept VMLOAD/VMSAVE when nested (CVE-2021-3656) a0949ee63cf9 KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl (CVE-2021-3653) 874213144352 kasan, slub: reset tag when printing address ac0e79584d41 ceph: take snap_empty_lock atomically with snaprealm refcount change dcd02a1248cc ceph: clean up locking annotation for ceph_get_snap_realm and __lookup_snap_realm 36b361cb1966 ceph: add some lockdep assertions around snaprealm handling 90d215367156 KVM: x86/mmu: Protect marking SPs unsync when using TDP MMU with spinlock 0f4bf029494d KVM: x86/mmu: Don't leak non-leaf SPTEs when zapping all SPTEs bd043e754f4d KVM: nVMX: Use vmx_need_pf_intercept() when deciding if L0 wants a #PF 1163cd462e1f KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation a3040e7e9ff2 locking/rtmutex: Use the correct rtmutex debugging config option b636a0d1e5c8 efi/libstub: arm64: Double check image alignment at entry 0e1d1392f381 powerpc/32: Fix critical and debug interrupts on BOOKE 4ce6f022df43 powerpc/xive: Do not skip CPU-less nodes when creating the IPIs 3b1700551dee powerpc/smp: Fix OOPS in topology_init() 115ff78c3a03 powerpc/32s: Fix napping restore in data storage interrupt (DSI) 3eda59bcee6e powerpc/pseries: Fix update of LPAR security flavor after LPM 33971cedf1d9 powerpc/interrupt: Do not call single_step_exception() from other exceptions 11aa5db61e9b PCI/MSI: Protect msi_desc::masked for multi-MSI b82047e5d807 PCI/MSI: Use msi_mask_irq() in pci_msi_shutdown() 849b6a5bde32 PCI/MSI: Correct misleading comments ea6cc94e8807 PCI/MSI: Do not set invalid bits in MSI mask 78225ed700df PCI/MSI: Enforce MSI[X] entry updates to be visible 0b51d4c16a27 PCI/MSI: Enforce that MSI-X table entry is masked for update 6c971252f090 PCI/MSI: Mask all unused MSI-X entries f800bb380fea PCI/MSI: Enable and mask MSI-X early 73d8b5769514 powerpc/interrupt: Fix OOPS by not calling do_IRQ() from timer_interrupt() 9dac5f65caaf genirq/timings: Prevent potential array overflow in __irq_timings_store() 0c081d4a6a13 genirq/msi: Ensure deactivation on teardown 0abb63311246 x86/resctrl: Fix default monitoring groups reporting 55cd80f4928c x86/ioapic: Force affinity setup before startup 067ef0204880 x86/msi: Force affinity setup before startup 24ed8f291d59 genirq: Provide IRQCHIP_AFFINITY_PRE_STARTUP 560051d8f439 x86/tools: Fix objdump version check again d8f9d8c4be6e i2c: iproc: fix race between client unreg and tasklet daf371e74d36 powerpc/kprobes: Fix kprobe Oops happens in booke 2bfb303470e0 efi/libstub: arm64: Relax 2M alignment again for relocatable kernels bfc48d02d915 efi/libstub: arm64: Force Image reallocation if BSS was not reserved f3409e925da2 KVM: arm64: Fix off-by-one in range_is_memory 14034883d058 arm64: efi: kaslr: Fix occasional random alloc (and boot) failure 98f73989055f nbd: Aovid double completion of a request 09625c5badd2 vsock/virtio: avoid potential deadlock when vsock device remove 128e480afe78 xen/events: Fix race in set_evtchn_to_irq 950429a4d346 drm/i915: Only access SFC_DONE when media domain is not fused off 9977d0baadc8 net: igmp: increase size of mr_ifc_count 4391389526a1 tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B packets 53201f2902ee net: linkwatch: fix failure to restore device state across suspend/resume 59cabc513b8a net: bridge: fix memleak in br_add_if() ff6c9aad3599 net: bridge: fix flags interpretation for extern learn fdb entries c7c9cc4a6016 pinctrl: sunxi: Don't underestimate number of functions 735e90f3efa6 net: dsa: sja1105: fix broken backpressure in .port_fdb_dump 8398aab49ba3 net: dsa: lantiq: fix broken backpressure in .port_fdb_dump c6cbf5672cc0 net: dsa: lan9303: fix broken backpressure in .port_fdb_dump 22ecb3423f9c net: dsa: hellcreek: fix broken backpressure in .port_fdb_dump 52133524d807 net: igmp: fix data-race in igmp_ifc_timer_expire() 44c8aa996911 net: Fix memory leak in ieee802154_raw_deliver 74b264b342a5 net: dsa: microchip: ksz8795: Don't use phy_port_cnt in VLAN table lookup 1c4f28207fab net: dsa: microchip: ksz8795: Fix VLAN filtering 3cc015794dab net: dsa: microchip: ksz8795: Use software untagging on CPU port 9674dc6724c5 net: dsa: microchip: ksz8795: Fix VLAN untagged flag change on deletion 159948c423aa net: dsa: microchip: ksz8795: Reject unsupported VLAN configuration 3149f9edddf9 net: dsa: microchip: ksz8795: Fix PVID tag insertion 8154453a4be5 net: dsa: microchip: Fix ksz_read64() 037570c9adab bpf: Fix potentially incorrect results with bpf_get_local_storage() 1d1808fae2e0 ovl: fix deadlock in splice write 75004b47fba4 drm/meson: fix colour distortion from HDR set during vendor u-boot 11e249ce5e3e net/mlx5: Fix return value from tracer initialization 436f4a1c6d17 net/mlx5: Synchronize correct IRQ when destroying CQ 9b0b9c9da810 net/mlx5e: TC, Fix error handling memory leak 89163e392e57 net/mlx5: Block switchdev mode while devlink traps are active 09ab613d4996 net/mlx5e: Destroy page pool after XDP SQ to fix use-after-free c0cb7d8be945 net/mlx5e: Avoid creating tunnel headers for local route 3f20768c9fdc net/mlx5: DR, Add fail on error check on decap df712c5d591a net/mlx5: Don't skip subfunction cleanup in case of error in module init f49d457950b9 io-wq: fix IO_WORKER_F_FIXED issue in create_io_worker() 815a0fe3f415 io-wq: fix bug of creating io-wokers unconditionally 3cedeb691b74 bareudp: Fix invalid read beyond skb's linear data ed277fbd3053 psample: Add a fwd declaration for skbuff 792e7591d308 iavf: Set RSS LUT and key in reset handle path f2b15898012a ice: don't remove netdev->dev_addr from uc sync list 8a0814243362 ice: Stop processing VF messages during teardown e266d4c43b95 ice: Prevent probing virtual functions 00735401c918 net: sched: act_mirred: Reset ct info when mirror/redirect skb e04669e14c5a net/smc: Correct smc link connection counter in case of smc client 9b8f136b88f3 net/smc: fix wait on already cleared link 6a4b92821135 io_uring: clear TIF_NOTIFY_SIGNAL when running task work 1e19d18189fe ppp: Fix generating ifname when empty IFLA_IFNAME is specified 2a4a96afa7b5 net: phy: micrel: Fix link detection on ksz87xx switch" d8431e3fa7b3 net: dsa: qca: ar9331: make proper initial port defaults ada7135e6d99 bpf: Fix integer overflow involving bucket_size 621d81cfbb0c libbpf: Do not close un-owned FD 0 on errors 51f19580f5f4 libbpf: Fix probe for BPF_PROG_TYPE_CGROUP_SOCKOPT 466f5509f62a drm/amd/pm: Fix a memory leak in an error handling path in 'vangogh_tables_init()' fd0b94e6b1c7 perf/x86/intel: Apply mid ACK for small core 736e0445f921 platform/x86: pcengines-apuv2: Add missing terminating entries to gpio-lookup tables a4de486958ff net: mvvp2: fix short frame size on s390 f67f34a86375 net: dsa: mt7530: add the missing RxUnicast MIB counter 141af64cf768 ASoC: cs42l42: Fix mono playback d57b00645556 ASoC: cs42l42: Fix LRCLK frame start edge 6e61f4d51d38 ASoC: cs42l42: PLL must be running when changing MCLK_SRC_SEL 22af0d2a5e5e pinctrl: tigerlake: Fix GPIO mapping for newer version of software deff14bdcc54 netfilter: nf_conntrack_bridge: Fix memory leak when error 71805c36336a ASoC: cs42l42: Remove duplicate control for WNF filter frequency 9c272596189c ASoC: cs42l42: Fix inversion of ADC Notch Switch control 710490222c69 ASoC: SOF: Intel: hda-ipc: fix reply size checking ba216b210f26 ASoC: SOF: Intel: Kconfig: fix SoundWire dependencies d82c88a44bb6 selftests/sgx: Fix Q1 and Q2 calculation in sigstruct.c 67488f5c9613 ASoC: cs42l42: Fix bclk calculation for mono b4f870447de1 ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J 918bbb32c823 ASoC: cs42l42: Correct definition of ADC Volume control 676b96483576 pinctrl: mediatek: Fix fallback behavior for bias_set_combo 73e81f7219aa drm/mediatek: Fix cursor plane no update 30df59b45cac ieee802154: hwsim: fix GPF in hwsim_new_edge_nl bb0c87658dd1 ieee802154: hwsim: fix GPF in hwsim_set_edge_lqi 73248a01ae14 drm/amdgpu: handle VCN instances when harvesting (v2) 7e73eac2bd90 drm/amdgpu: don't enable baco on boco platforms in runpm fcd957aa8b32 drm/amdgpu: Add preferred mode in modeset when freesync video mode's enabled. 7b69bee4817c drm/amd/display: use GFP_ATOMIC in amdgpu_dm_irq_schedule_work 164759f4070e drm/amd/display: Remove invalid assert for ODM + MPC case 3565f42dc8e2 drm/i915/display: Fix the 12 BPC bits for PIPE_MISC reg 01478e251732 drm/i915/gvt: Fix cached atomics setting for Windows VM 21fcf2f1ced4 vmlinux.lds.h: Handle clang's module.{c,d}tor sections 33d2301ad61b riscv: kexec: do not add '-mno-relax' flag if compiler doesn't support it 1579656b0141 libnvdimm/region: Fix label activation vs errors 4debaa9f577a ACPI: NFIT: Fix support for virtual SPA ranges fbe28d4afbda pinctrl: k210: Fix k210_fpioa_probe() 3d33960c8d66 ceph: reduce contention in ceph_check_delayed_caps() 01b2ec534d38 ARC: fp: set FPU_STATUS.FWE to enable FPU_STATUS update on context switch 30a5d06dc3dd net: ethernet: ti: cpsw: fix min eth packet size for non-switch use-cases 2bb154128d14 net: wwan: mhi_wwan_ctrl: Fix possible deadlock 8610d75c4db6 seccomp: Fix setting loaded filter count during TSYNC bf77f479cd4c cgroup: rstat: fix A-A deadlock on 32bit around u64_stats_sync 5028bdb679c4 scsi: lpfc: Move initialization of phba->poll_list earlier to avoid crash 3e35c7dbf706 io_uring: fix ctx-exit io_rsrc_put_work() deadlock e1c5046e341d io_uring: drop ctx->uring_lock before flushing work item 000cb600dabf cifs: use the correct max-length for dentry_path_raw() 0ca6ac8a2691 cifs: Call close synchronously during unlink/rename/lease break. 10290043f377 cifs: create sd context must be a multiple of 8 3c420ec43971 cifs: Handle race conditions during rename cc3a5a27e811 i2c: dev: zero out array used for i2c reads from userspace 2693a747960b ASoC: intel: atom: Fix reference to PCM buffer address 145951900b76 ASoC: kirkwood: Fix reference to PCM buffer address 8e4a0581e288 ASoC: tlv320aic31xx: Fix jack detection after suspend 3380a37484eb ASoC: uniphier: Fix reference to PCM buffer address 4cf1b08e6889 ASoC: xilinx: Fix reference to PCM buffer address c43e0f97f5fc ASoC: amd: Fix reference to PCM buffer address b37adfb2c760 iio: adc: Fix incorrect exit of for-loop 88f5acc1f2af iio: humidity: hdc100x: Add margin to the conversion time 29ccbb4684e9 iio: adis: set GPIO reset pin direction 51289a499dd1 iio: adc: ti-ads7950: Ensure CS is deasserted after reading channels c7ee0c9854fd Revert "usb: dwc3: gadget: Use list_replace_init() before traversing lists" 95f4fb3ef0b9 lib: use PFN_PHYS() in devmem_is_allowed() (From OE-Core rev: c89d577e1c447d1be72720aa499408a9e988fdab) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>