summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux
AgeCommit message (Collapse)Author
2019-09-07linux-yocto: drop 5.0 recipesBruce Ashfield
The 5.2 reference kernels replace the EOL 5.0 series. So we drop the named recipes. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-09-06linux-yocto/5.2: config tweaks and kallsyms fixBruce Ashfield
Integrating some 5.2 configuration changes (for new board supprt), and the following fix: kallsyms: Don't let kallsyms_lookup_size_offset() fail on retrieving the first symbol With this fix, we no longer see: [ 0.032677] kprobes: failed to populate blacklist: -22 during boot on arm/mips Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-30linux-yocto-dev: Mark qemuriscv64 as compatibleAlistair Francis
Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-30linux-yocto/5.2: update qemuriscv64 SRCREVBruce Ashfield
The scripts that update my SRCREVs were missing the qemuriscv64. This SRCREV bump moves it to match the rest of the 5.2 qemu BSPs. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-30linux-yocto: introduce 5.2 recipesBruce Ashfield
Introducing the 5.2 linux-yocto reference kernels. 5.0 is EOL and will be removed, leaving 4.19 (LTS) and 5.2 as the reference kernels. This has been build/boot tested on all qemu architectures for core-image-kernel-dev, and graphics tesed via core-image-sato. No blocking issues have been found. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-30devsrc: update arm64 scripts/prepare for kernels 5.3+Bruce Ashfield
We need to include a few more small files for on target module builds for 5.3+ kernels. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-30kernel-devsrc: remove python2 dependencyBruce Ashfield
Witht the approaching EOL of python2, the kernel packages need to be updated to depend on python3. The core kernel scripts are now python3 safe, making the RDEPENDS change relatively simple. but There are some scripts that are captured in the devsrc files that are not used, but reference /usr/bin/python. The python3 package does not provide /usr/bin/python so any package managers with automatic dependency detection will fail to assemble a rootfs due to the missing intepreter. We could drop the scripts from the source capture, but that risks dropping something that we need in certain operations and we'd miss when they are updated in tree to explicitly call python3 (since they won't be revisited often). Light testing shows that the scripts do run with python3, so rather than removing them, we change the interpreter once they are copied, and automatic dependency detection won't cause us rootfs assembly issues. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-27linux-dtb.inc: RemoveAdrian Bunk
It only printed a warning since Yocto 2.4, documented to be removed in a future release. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-15linux-yocto: add drm-bochs supportAlexander Kanavin
This allows better modesetting support for the '-vga std' emulated hardware provided by Qemu, which we want to standardize on. See here for background: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13466 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-15linux-yocto/4.19: make drm-bochs feature availableBruce Ashfield
The other active kernel versions have this feature available. To consistently enable the same video output for qemu, we can cherry pick the feature to 4.19. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-14kernel-yocto: import security fragments from meta-securityBruce Ashfield
Adding the following fragments from meta-security to make them centrally available and easier to maintain: 283939d5c9e kernel-cache: add yama security fragments 0b86f3fa241 kernel-cache: add ima fragments 731b466654d kernel-cache: add smack 813afe8ff47 kernel-cache: add apparmor fragments Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-14linux-yocto: arch/x86/boot: use prefix map to avoid embedded pathsBruce Ashfield
>From the kernel patch: [ It was observed that the kernel embeds the path in the x86 boot artifacts. From https://bugzilla.yoctoproject.org/show_bug.cgi?id=13458: [ If you turn on the buildpaths QA test, or try a reproducible build, you discover that the kernel image contains build paths. $ strings bzImage-5.0.19-yocto-standard |grep tmp/ out of pgt_buf in /data/poky-tmp/reproducible/tmp/work-shared/qemux86-64/kernel-source/arch/x86/boot/compressed/kaslr_64.c!? But what's this in the top-level Makefile: $ git grep prefix-map Makefile:KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=) So the __FILE__ shouldn't be using the full path. However arch/x86/boot/compressed/Makefile has this: KBUILD_CFLAGS := -m$(BITS) -O2 So that clears KBUILD_FLAGS, removing the -fmacro-prefix-map option. ] Other architectures do not clear the flags, but instead prune before adding boot or specific options. There's no obvious reason why x86 isn't doing the same thing (pruning vs clearing) and no build or boot issues have been observed. So we make x86 can do the same thing, and we no longer have embedded paths. ] This issue has been reported upstream, and a patch submission is pending, but for now, we'll soak the proposed patch in linux-yocto to see if any issues are found [YOCTO: #13458] Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-14kernel-devsrc: tweak for v5.3+Bruce Ashfield
The 5.3 kernel has two changes that require tweaks to the minimal kernel-devsrc package. - 4ce97317f [x86/purgatory: Do not use __builtin_memcpy and __builtin_memset] This change removes the need for arch/x86/purgatory/string.c and instead reuses a copy in arch/x86/boot/compressed/, so we can't copy the file anymore. To support older kernels, we make the copy survive the non-existence of the file. - b1663d7e [docs: Kbuild/Makefile: allow check for missing docs at build time] This change adds the sourceing of Documentation/Kbuild to the top level Kbuild file. So we now leave the copy of Documention/'s Kbuild in the devsrc. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-03linux-yocto-dev: bump to 5.3-rcXBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-08-03linux-yocto/4.19: update to v4.19.61Bruce Ashfield
Integrating the korg -stable commits that comprise the following changes: 7250956f6eaf Linux 4.19.61 025eb12bb4b0 dm bufio: fix deadlock with loop device 404f59e265ac dt-bindings: allow up to four clocks for orion-mdio 03e6a668ea1f net: mvmdio: allow up to four clocks to be specified for orion-mdio dd87cc633ba5 blkcg: update blkcg_print_stat() to handle larger outputs 73efdc5d7d3b blk-iolatency: clear use_delay when io.latency is set to zero 1ab644bd02ab blk-throttle: fix zero wait time for iops throttled group 91da712ff592 usb: Handle USB3 remote wakeup for LPM enabled devices correctly 152ddf9f0458 Bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug 98318cd31b95 intel_th: msu: Fix single mode with disabled IOMMU d6328d7c1a71 mtd: spinand: read returns badly if the last page has bitflips 94f1db42a968 mtd: rawnand: mtk: Correct low level time calculation of r/w cycle 30c6b34759f6 eCryptfs: fix a couple type promotion bugs 92e23f5fc049 mmc: sdhci-msm: fix mutex while in spinlock 01982f7bcc9d powerpc/pseries: Fix oops in hotplug memory notifier e725502b8548 powerpc/powernv/npu: Fix reference leak 1e3b61cbc30d powerpc/watchpoint: Restore NV GPRs while returning from exception 237ac0d73b55 powerpc/32s: fix suspend/resume when IBATs 4-7 are used 7961981718d6 parisc: Fix kernel panic due invalid values in IAOQ0 or IAOQ1 a6a0daa775e8 parisc: Ensure userspace privilege for ptraced processes in regset functions ef5c2e165ab0 crypto: caam - limit output IV to CBC to work around CTR mode DMA issue 376b80276d84 gpu: ipu-v3: ipu-ic: Fix saturation bit offset in TPMEM ef30c0739439 xfs: abort unaligned nowait directio early 669c867972c0 xfs: serialize unaligned dio writes against all other dio writes d61d885b17b0 xfs: fix reporting supported extra file attributes for statx() f614ef7a34b0 xfs: reserve blocks for ifree transaction during log recovery 424543a53ae0 xfs: don't ever put nlink > 0 inodes on the unlinked list 3a895cc066c0 xfs: rename m_inotbt_nores to m_finobt_nores 2ab62234e823 xfs: don't overflow xattr listent buffer 1dc8b13cc66d xfs: flush removing page cache in xfs_reflink_remap_prep 788920d12b95 xfs: fix pagecache truncation prior to reflink 41f64437f030 include/asm-generic/bug.h: fix "cut here" for WARN_ON for __WARN_TAINT architectures afa3e571cde3 coda: pass the host file in vma->vm_file on mmap 2c0222b48e77 libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields 656d06dab4d6 HID: wacom: correct touch resolution x/y typo 1c871b4006b2 HID: wacom: generic: Correct pad syncing 46f71a15abe7 HID: wacom: generic: only switch the mode on devices with LEDs cb4c2b94f629 IB/mlx5: Report correctly tag matching rendezvous capability 4bd953241d81 Btrfs: add missing inode version, ctime and mtime updates when punching hole fffedf5cf67e Btrfs: fix fsync not persisting dentry deletions due to inode evictions 110850fffeb0 Btrfs: fix data loss after inode eviction, renaming it, and fsync it 6b71c62ea9da PCI: qcom: Ensure that PERST is asserted for at least 100 ms 529e71cae929 PCI: Do not poll for PME if the device is in D3cold 4d8504004c86 PCI: hv: Fix a use-after-free bug in hv_eject_device_work() f0ff76a42ef5 intel_th: pci: Add Ice Lake NNPI support 66a13b5e4e9c drm/edid: parse CEA blocks embedded in DisplayID 9854e06842bc perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs 82c46f7b0918 perf/x86/amd/uncore: Do not set 'ThreadMask' and 'SliceMask' for non-L3 PMCs a847a5225432 perf/x86/intel: Fix spurious NMI on fixed counter 0d4c0bb70665 x86/boot: Fix memory leak in default_get_smp_config() b52807e607f1 9p/virtio: Add cleanup path in p9_virtio_init 1253882d64d0 9p/xen: Add cleanup path in p9_trans_xen_init 007e5aaf287c xen/events: fix binding user event channels to cpus e380170b3b3a dm zoned: fix zone state management race 1e4247d7958b padata: use smp_mb in padata_reorder to avoid orphaned padata jobs 0489d808a5f2 drm/nouveau/i2c: Enable i2c pads & busses during preinit c77cbc873586 kconfig: fix missing choice values in auto.conf 2c7b50c7b1d0 fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes. ba271659ad42 arm64: tegra: Fix AGIC register range ba27a25df6df KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed 87bae91a0fe9 media: videobuf2-dma-sg: Prevent size from overflowing cb2e2b0ae554 media: videobuf2-core: Prevent size alignment wrapping buffer size to 0 deb78bd24e0c media: coda: Remove unbalanced and unneeded mutex unlock fc0232e24541 media: v4l2: Test type instead of cfg->type in v4l2_ctrl_new_custom() a4c4c06f1755 ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine 8ba78e4d564e ALSA: hda/realtek - Fixed Headphone Mic can't record on Dell platform c92212a81617 ALSA: seq: Break too long mutex context in the write loop eb6c84e4b4f2 raid5-cache: Need to do start() part job after adding journal device 3f42c0000b23 ASoC: dapm: Adapt for debugfs API change 677b2aa3be5c lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE 0b174bac4e43 pnfs: Fix a problem where we gratuitously start doing I/O through the MDS f64ff5914f00 pNFS: Fix a typo in pnfs_update_layout 603e7497bf27 pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error 5347e61954fc NFSv4: Handle the special Linux file open access mode 6825ff011c7c iwlwifi: fix RF-Kill interrupt while FW load for gen2 devices a32e2ceca0ef iwlwifi: don't WARN when calling iwl_get_shared_mem_conf with RF-Kill d9ce0788da91 iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X 04c52c105a38 iwlwifi: pcie: don't service an interrupt that was masked 7ebddd5fe217 arm64: tegra: Update Jetson TX1 GPU regulator timings 042451b921b1 regulator: s2mps11: Fix buck7 and buck8 wrong voltages 8da63aa46e26 Input: alps - fix a mismatch between a condition check and its comment 81368a9a98d9 Input: synaptics - whitelist Lenovo T580 SMBus intertouch cfb9250619c8 Input: alps - don't handle ALPS cs19 trackpoint-only device d657077eda7b Input: gtco - bounds check collection indent level f11ba9df8eed bcache: destroy dc->writeback_write_wq if failed to create dc->writeback_thread 2ab14861d2eb bcache: fix mistaken sysfs entry for io_error counter 3c466df8fc59 bcache: ignore read-ahead request failure on backing device 4fc48cd21a31 bcache: Revert "bcache: free heap cache_set->flush_btree in bch_journal_free" ab966241d59a bcache: Revert "bcache: fix high CPU occupancy during journal" 58169c189bd6 Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" c3b7d27f3746 crypto: crypto4xx - fix a potential double free in ppc4xx_trng_probe a9fd1795fee6 crypto: ccp/gcm - use const time tag comparison. 561c4424f1e3 crypto: ccp - memset structure fields to zero before reuse 13805a5df489 crypto: crypto4xx - block ciphers should only accept complete blocks 17e63172d536 crypto: crypto4xx - fix blocksize for cfb and ofb 4598094d24c7 crypto: crypto4xx - fix AES CTR blocksize value 1c9b0a766513 crypto: chacha20poly1305 - fix atomic sleep when using async algorithm eb99c084da28 crypto: arm64/sha2-ce - correct digest for empty data in finup 4230e09e61e6 crypto: arm64/sha1-ce - correct digest for empty data in finup 52f07c1ac70e crypto: ccp - Validate the the error value used to index error messages bed97f646997 crypto: ghash - fix unaligned memory access in ghash_setkey() ce7ec07abaf7 scsi: mac_scsi: Fix pseudo DMA implementation, take 2 de769c762626 scsi: mac_scsi: Increase PIO/PDMA transfer length threshold 3e9534fa5046 scsi: megaraid_sas: Fix calculation of target ID 1334a3e2d6d0 scsi: core: Fix race on creating sense cache 58f59f6072ab Revert "scsi: ncr5380: Increase register polling limit" 7cfded7a705c scsi: NCR5380: Always re-enable reselection interrupt d91baba81a6e scsi: NCR5380: Reduce goto statements in NCR5380_select() e73db096691e xen: let alloc_xenballooned_pages() fail if not enough memory free ff54c44f1038 floppy: fix out-of-bounds read in copy_buffer a9444d9d0f6f floppy: fix invalid pointer dereference in drive_name 5b565f3276f3 floppy: fix out-of-bounds read in next_valid_format 6e34fd07484a floppy: fix div-by-zero in setup_format_params 7c16c5eae41a iavf: fix dereference of null rx_buffer pointer e9896b29d010 net: mvmdio: defer probe of orion-mdio if a clock is not ready 5f6c5f5ae25e gtp: fix use-after-free in gtp_newlink() 141222216438 gtp: fix use-after-free in gtp_encap_destroy() 0a5eca2c949c gtp: fix Illegal context switch in RCU read-side critical section. e117a04133c6 gtp: fix suspicious RCU usage 202de90df2b7 Bluetooth: validate BLE connection interval updates ca33af18b5fc gtp: add missing gtp_encap_disable_sock() in gtp_encap_enable() 0fdb922d0ef0 Bluetooth: Check state in l2cap_disconnect_rsp 3b57b7a3a82a perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 c814f618b799 Bluetooth: 6lowpan: search for destination address in all peers c82c4910e9e6 Bluetooth: Add new 13d3:3501 QCA_ROME device 1cbce19bd697 Bluetooth: Add new 13d3:3491 QCA_ROME device 578658df21d5 Bluetooth: hci_bcsp: Fix memory leak in rx_skb 9d47bd217539 tools: bpftool: Fix json dump crash on powerpc 2ad04d31bb3e gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants 157d1c7a1a00 bonding: validate ip header before check IPPROTO_IGMP 88f751b066f2 selftests: bpf: fix inlines in test_lwt_seg6local ef5b204336b3 bpf, libbpf, smatch: Fix potential NULL pointer dereference 0f2f2cebe64d rxrpc: Fix oops in tracepoint ca37b9a74689 net: usb: asix: init MAC address buffers 51216937c319 bnx2x: Prevent ptp_task to be rescheduled indefinitely e358d2ab42f8 perf stat: Fix group lookup for metric group a64e018be77a perf stat: Make metric event lookup more robust 7343178ccf7d bpf: fix uapi bpf_prog_info fields alignment af3790a46a55 iwlwifi: mvm: Drop large non sta frames 036184af23e0 igb: clear out skb->tstamp after reading the txtime 0024b12b776c net: mvpp2: prs: Don't override the sign bit in SRAM parser shift 05592b9b7f25 ath10k: destroy sdio workqueue while remove sdio module 26d86b29e806 net: hns3: add some error checking in hclge_tm module ddfdbcccd71a net: hns3: fix a -Wformat-nonliteral compile warning 95d084809495 bcache: fix potential deadlock in cached_def_free() 4b7758e9c4ed bcache: check c->gc_thread by IS_ERR_OR_NULL in cache_set_flush() 81b88c05bc45 bcache: acquire bch_register_lock later in cached_dev_free() d81080a0bcf8 bcache: check CACHE_SET_IO_DISABLE bit in bch_journal() 57cfb755c356 bcache: check CACHE_SET_IO_DISABLE in allocator code e78d1d234469 EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec e54cc89e6f0a wil6210: drop old event after wmi_call timeout 0388597d0627 crypto: asymmetric_keys - select CRYPTO_HASH where needed 1dea395c9e12 crypto: serpent - mark __serpent_setkey_sbox noinline b346070c72cd ixgbe: Check DDM existence in transceiver before access 0340c621eca8 rslib: Fix handling of of caller provided syndrome 8ba93c59441a rslib: Fix decoding of shortened codes dad0b17e4a4e xsk: Properly terminate assignment in xskq_produce_flush_desc e69fac59c493 clocksource/drivers/exynos_mct: Increase priority over ARM arch timer 12e20eca894b libata: don't request sense data on !ZAC ATA devices 6e6bc34f8570 ASoC: Intel: hdac_hdmi: Set ops to NULL on remove 1182ff224847 perf tools: Increase MAX_NR_CPUS and MAX_CACHES 7201cc227d4a ath10k: fix PCIE device wake up failed 8a808fadc9f7 ath10k: add missing error handling fe2ceeb4cffc ipvs: fix tinfo memory leak in start_sync_thread 20de38d282b3 mt7601u: fix possible memory leak when the device is disconnected 033577880135 x86/build: Add 'set -e' to mkcapflags.sh to delete broken capflags.c 3f7952b275c8 mt7601u: do not schedule rx_tasklet when the device has been disconnected 6f6e126e1995 rtlwifi: rtl8192cu: fix error handle when usb probe failed 41864adfee2e net: stmmac: sun8i: force select external PHY when no internal one bce037abc29f media: hdpvr: fix locking and a missing msleep 43b9fdc48377 media: vimc: cap: check v4l2_fill_pixfmt return value d562537dbf0d media: coda: increment sequence offset for the last returned frame 3697c12c4425 media: coda: fix last buffer handling in V4L2_ENC_CMD_STOP 6fd3e9f65db9 media: coda: fix mpeg2 sequence number handling c647c00f28af acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 b9f547b7bdd9 timer_list: Guard procfs specific code d86c0b73f75b ntp: Limit TAI-UTC offset 8d8f0b9009d0 media: i2c: fix warning same module names 6439110fbeee media: s5p-mfc: Make additional clocks optional 57de3c78f0b7 ipvs: defer hook registration to avoid leaks 06a3cd416224 ipsec: select crypto ciphers for xfrm_algo 723ba7938492 arm64: Do not enable IRQs for ct_user_exit 010bfbc93424 lightnvm: pblk: fix freeing of merged pages 762bba1b7ee7 nvme-pci: set the errno on ctrl state change error c876a66553d7 nvme-pci: properly report state change failure in nvme_reset_work f0c83dd15ee1 nvme: fix possible io failures when removing multipathed ns 10cc3a65a55b EDAC/sysfs: Fix memory leak when creating a csrow object f6502ce4f050 ACPICA: Clear status of GPEs on first direct enable 3ae98dc2db1e blk-iolatency: only account submitted bios a952f7c384aa x86/cacheinfo: Fix a -Wtype-limits warning 3252b29ea41b ipoib: correcly show a VF hardware address 0e2af9b06c00 vhost_net: disable zerocopy by default 4c57957ed6c8 perf evsel: Make perf_evsel__name() accept a NULL argument 9e0bcb59b6c0 x86/atomic: Fix smp_mb__{before,after}_atomic() dd0260fd1e3a perf/x86/intel/uncore: Handle invalid event coding for free-running counter 7fc96cd2b0de sched/fair: Fix "runnable_avg_yN_inv" not used warnings d8b7db6c5004 sched/core: Add __sched tag for io_schedule() 930655b01367 xfrm: fix sa selector validation b7d66bbc8ad3 blkcg, writeback: dead memcgs shouldn't contribute to writeback ownership arbitration c8f75e753784 block: null_blk: fix race condition for null_del_dev 1a3706d8f800 net: hns3: fix for skb leak when doing selftest 6a47a42f51cf qed: iWARP - Fix tc for MPA ll2 connection 670fb965da03 x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS 366ae49ed78c rcu: Force inlining of rcu_read_lock() 1fb3ce14f28d ASoC: meson: axg-tdm: fix sample clock inversion 32df4043aed4 x86/cpu: Add Ice Lake NNPI to Intel family 914026d58100 selinux: fix empty write to keycreate file 10e3788e6575 media: s5p-mfc: fix reading min scratch buffer size on MFC v6/v7 7c10f8941b95 bpf: silence warning messages in core b01bf44c363d regmap: fix bulk writes on paged registers 544cd592ca72 gpio: omap: ensure irq is enabled before wakeup ddeef7a00050 gpio: omap: fix lack of irqstatus_raw0 for OMAP4 79644b600850 iommu: Fix a leak in iommu_insert_resv_region f2a4624be8f3 media: fdp1: Support M3N and E3 platforms 63e53991d791 media: uvcvideo: Fix access to uninitialized fields on probe error c844f4da9b92 irqchip/meson-gpio: Add support for Meson-G12A SoC eac8b39d089a perf report: Fix OOM error in TUI mode on s390 be32a9dc3f62 perf test 6: Fix missing kvm module load for s390 3662d8bca087 perf cs-etm: Properly set the value of 'old' and 'head' in snapshot mode ac510285d40b ipset: Fix memory accounting for hash types on resize c7bf2df45044 net: sfp: add mutex to prevent concurrent state checks fa4059c5497e RAS/CEC: Fix pfn insertion 99dcd701465f s390/qdio: handle PENDING state for QEBSM devices a76f32cbd38c net: axienet: Fix race condition causing TX hang 9d643358386d net: fec: Do not use netdev messages too early 403c43921479 crypto: inside-secure - do not rely on the hardware last bit for result descriptors 50331c64f3dd net: stmmac: modify default value of tx-frames 1a0a837afc41 net: stmmac: dwmac4: fix flow control issue 713737cac327 perf jvmti: Address gcc string overflow warning for strncpy() fb83987cbe6b arm64: mm: make CONFIG_ZONE_DMA32 configurable c360eb592938 cpupower : frequency-set -r option misses the last cpu in related cpu list cac3032062e5 net: hns3: set ops to null when unregister ad_dev 35407917b0bc media: wl128x: Fix some error handling in fm_v4l2_init_video_device() 2fbde2746597 locking/lockdep: Fix merging of hlocks with non-zero references 909034b8ac64 batman-adv: Fix duplicated OGMs on NETDEV_UP aa2ad8b6fb2f tua6100: Avoid build warnings. 9072450736d0 crypto: talitos - Align SEC1 accesses to 32 bits boundaries. 9d25aedef08f crypto: talitos - properly handle split ICV. fc25cfb03ea2 net: phy: Check against net_device being NULL ef10d46d04a5 media: staging: media: davinci_vpfe: - Fix for memory leak if decoder initialization fails. e36f25627362 media: saa7164: fix remove_proc_entry warning ea904c9f6a33 media: mc-device.c: don't memset __user pointer contents a6dd4862b98f perf annotate TUI browser: Do not use member from variable within its own initialization 71b029a5d908 fscrypt: clean up some BUG_ON()s in block encryption/decryption 2c6acf7478aa xfrm: Fix xfrm sel prefix length validation 0544b64ceb64 af_key: fix leaks in key_pol_get_resp and dump_sp. b397462a010d signal/pid_namespace: Fix reboot_pid_ns to use send_sig not force_sig 1c8e736115cd qed: Set the doorbell address correctly df6680de7a20 net: stmmac: dwmac4/5: Clear unused address entries d3969670cb5a net: stmmac: dwmac1000: Clear unused address entries 810441651a8a media: media_device_enum_links32: clean a reserved field 6fb470ace862 media: vpss: fix a potential NULL pointer dereference 70da38e80509 media: marvell-ccic: fix DMA s/g desc number calculation add712b63185 media: ov7740: avoid invalid framesize setting b0e199e13495 crypto: talitos - fix skcipher failure due to wrong output IV 6452712f95e3 media: spi: IR LED: add missing of table registration 94f2b518a788 media: dvb: usb: fix use after free in dvb_usb_device_exit 8f855c09e2af batman-adv: fix for leaked TVLV handler. 83d133c96aad regmap: debugfs: Fix memory leak in regmap_debugfs_init 2b5b12c0c1b7 ath: DFS JP domain W56 fixed pulse type 3 RADAR detection da153c0c5746 wil6210: fix spurious interrupts in 3-msi a4bf4fecff16 ath10k: add peer id check in ath10k_peer_find_by_id 83c911f4bd68 ath6kl: add some bounds checking 42dcbf20e182 ath9k: Check for errors when reading SREV register 7e19e658e535 ath10k: Do not send probe response template for mesh 009edc622bba wil6210: fix potential out-of-bounds read 09593c25b975 dmaengine: imx-sdma: fix use-after-free on probe error path 06e15cf5aead scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported 37cb02da44dc arm64/efi: Mark __efistub_stext_offset as an absolute symbol explicitly 73ebefc814ef MIPS: fix build on non-linux hosts 7202df6be6ec MIPS: ath79: fix ar933x uart parity mode be9b6782a9eb Linux 4.19.60 d173ce091c1a x86/entry/32: Fix ENDPROC of common_spurious 466bdfc6c4d6 drm/udl: move to embedding drm device inside udl device. af48f7d79fae drm/udl: Replace drm_dev_unref with drm_dev_put cfd99eccede5 drm/udl: introduce a macro to convert dev to udl. 8f14cf159e9f regmap-irq: do not write mask register if mask_base is zero 820b010743ee crypto/NX: Set receive window credits to max number of CRBs in RxFIFO b24c6403633d crypto: talitos - fix hash on SEC1. ff1ce8ef1f88 crypto: talitos - move struct talitos_edesc into talitos.h b578b87bcab6 s390/qdio: don't touch the dsci in tiqdio_add_input_queues() b1d52630b12a s390/qdio: (re-)initialize tiqdio list entries 02eb533e940a s390: fix stfle zero padding 9db915738e40 ARC: hide unused function unw_hdr_alloc fc6975ee932b x86/irq: Seperate unused system vectors from spurious entry again 9494cd392885 x86/irq: Handle spurious interrupt after shutdown gracefully 7897f5a443fb x86/ioapic: Implement irq_get_irqchip_state() callback 6074f6043c49 genirq: Add optional hardware synchronization for shutdown 3f10ccc29780 genirq: Fix misleading synchronize_irq() documentation 578db1aa595b genirq: Delay deactivation in free_irq() 2656ee5a5ad5 linux/kernel.h: fix overflow for DIV_ROUND_UP_ULL 9c875e8556d4 pinctrl: mediatek: Update cur_mask in mask/mask ops f6e01328cb0e cpu/hotplug: Fix out-of-bounds read when setting fail state fa99487a43cf pinctrl: mediatek: Ignore interrupts that are wake only during resume cd2646e57ec5 HID: multitouch: Add pointstick support for ALPS Touchpad 9ea3b131441e HID: chicony: add another quirk for PixArt mouse 94968c37b6d3 x86/boot/64: Add missing fixup_pointer() for next_early_pgt access 729d25f43b64 x86/boot/64: Fix crash if kernel image crosses page table boundary 136847140cc8 dm verity: use message limit for data block corruption message 042be78692ae dm table: don't copy from a NULL pointer in realloc_argv() 0fc080bc9a72 pinctrl: mcp23s08: Fix add_data and irqchip_add_nested call order 00640eb0eafa ARM: dts: imx6ul: fix PWM[1-4] interrupts a8cc2a2c2841 sis900: fix TX completion 3232bccddeba ppp: mppe: Add softdep to arc4 5ec7753c7c9e be2net: fix link failure after ethtool offline test 2a6ee36917f0 x86/apic: Fix integer overflow on 10 bit left shift of cpu_khz fdfff855cd36 afs: Fix uninitialised spinlock afs_volume::cb_break_lock d47f06ab0c0e ARM: omap2: remove incorrect __init annotation 5d3c45538151 ARM: dts: gemini Fix up DNS-313 compatible string afda29dc5ac6 perf/core: Fix perf_sample_regs_user() mm check 627fdcc9b718 efi/bgrt: Drop BGRT status field reserved bits check cf4deb2d4de6 clk: ti: clkctrl: Fix returning uninitialized data ff232a47567f irqchip/gic-v3-its: Fix command queue pointer comparison bug 244db54441a1 firmware: improve LSM/IMA security behaviour 079d7f16a973 drivers: base: cacheinfo: Ensure cpu hotplug work is done before Intel RDT 68048dce650e nilfs2: do not use unexported cpu_to_le32()/le32_to_cpu() in uapi header 86859ef10d25 Input: synaptics - enable SMBUS on T480 thinkpad trackpad 438a3dc6f2c3 e1000e: start network tx queue only when link is up 8020568b404b Revert "e1000e: fix cyclic resets at link up with active tx" 3bd837bfe431 Linux 4.19.59 70bae382b3dc staging: rtl8712: reduce stack usage, again b46475ecd930 staging: bcm2835-camera: Handle empty EOS buffers whilst streaming 0ee144effcc3 staging: bcm2835-camera: Remove check of the number of buffers supplied fcbc6ddcd624 staging: bcm2835-camera: Ensure all buffers are returned on disable 4502c43d7f3b staging: bcm2835-camera: Replace spinlock protecting context_map with mutex 22a20b9f6d9f staging: fsl-dpaa2/ethsw: fix memory leak of switchdev_work cc396afa1959 MIPS: Remove superfluous check for __linux__ d202b5adccfb VMCI: Fix integer overflow in VMCI handle arrays 486c32325caa carl9170: fix misuse of device driver API 524ad00e80b7 binder: fix memory leak in error path 294b893a41cd lkdtm: support llvm-objcopy 5c90a2ecd08a HID: Add another Primax PIXART OEM mouse quirk c04c751bef87 staging: comedi: amplc_pci230: fix null pointer deref on interrupt 4e49c6c91c18 staging: comedi: dt282x: fix a null pointer deref on interrupt 8419fd562a09 drivers/usb/typec/tps6598x.c: fix 4CC cmd write 63b3028cd590 drivers/usb/typec/tps6598x.c: fix portinfo width 57e16e0d8c68 usb: renesas_usbhs: add a workaround for a race condition of workqueue aa9a8038ea8b usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() cac4a04202fb usb: gadget: ether: Fix race between gether_disconnect and rx_submit 449a8d08a4bc p54usb: Fix race between disconnect and firmware loading 135d9ba3b285 Revert "serial: 8250: Don't service RX FIFO if interrupts are disabled" 0891268f36a2 USB: serial: option: add support for GosunCn ME3630 RNDIS mode 0a1c811bf033 USB: serial: ftdi_sio: add ID for isodebug v1 bb902b6c87ff mwifiex: Don't abort on small, spec-compliant vendor IEs ffbbd626e1ce mwifiex: Abort at too short BSS descriptor element a2a24b57c27a Documentation/admin: Remove the vsyscall=native documentation 8a815007f5fe Documentation: Add section about CPU vulnerabilities for Spectre bd9604022eb3 x86/tls: Fix possible spectre-v1 in do_get_thread_area() 68ff28291a4f x86/ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() d8e26651ce8d perf pmu: Fix uncore PMU alias list for ARM64 018524b75852 block, bfq: NULL out the bic when it's no longer valid ff75e5f41e88 ALSA: hda/realtek - Headphone Mic can't record after S3 87c3262b00d8 ALSA: usb-audio: Fix parse of UAC2 Extension Units ef374f5a2731 media: stv0297: fix frequency range limit 5db079eb0acd udf: Fix incorrect final NOT_ALLOCATED (hole) extent length 0fc3e9b9b603 fscrypt: don't set policy for a dead directory e9f76b954336 net :sunrpc :clnt :Fix xps refcount imbalance on the error path 810cfc3d9d2e NFS4: Only set creation opendata if O_CREAT 7075654ce7d0 net: dsa: mv88e6xxx: fix shift of FID bits in mv88e6185_g1_vtu_loadpurge() 606561e16186 quota: fix a problem about transfer quota 5ad566af08c1 scsi: qedi: Check targetname while finding boot target information 37232abb6ea3 net: lio_core: fix potential sign-extension overflow on large shift 740b2ac49518 ip6_tunnel: allow not to count pkts on tstats by passing dev as NULL a02ac12d2d48 drm: return -EFAULT if copy_to_user() fails 4c938a635fc3 bnx2x: Check if transceiver implements DDM before access 270ae00a0346 md: fix for divide error in status_resync 5533d9ed4112 mmc: core: complete HS400 before checking status 2da80536f629 qmi_wwan: extend permitted QMAP mux_id value range dc84e98393f7 qmi_wwan: avoid RCU stalls on device disconnect when in QMAP mode dbc6a83cf2bc qmi_wwan: add support for QMAP padding in the RX path 292ba5b1faf4 bpf, x64: fix stack layout of JITed bpf code 4c2ce7addda8 bpf, devmap: Add missing RCU read lock on flush ab44f8bcf2e5 bpf, devmap: Add missing bulk queue free 8d09e862103b bpf, devmap: Fix premature entry free on destroying map ba0afe520ee9 mac80211: do not start any work during reconfigure flow de8cf2c0bc64 mac80211: only warn once on chanctx_conf being NULL 9c2dd6d47131 ARM: davinci: da8xx: specify dma_coherent_mask for lcdc 3bbcc8b9ad37 ARM: davinci: da850-evm: call regulator_has_full_constraints() 443250665388 mlxsw: spectrum: Disallow prio-tagged packets when PVID is removed 512bbb114b99 KVM: arm/arm64: vgic: Fix kvm_device leak in vgic_its_destroy 41420ac584d7 Input: imx_keypad - make sure keyboard can always wake up system b71f312e9bf7 riscv: Fix udelay in RV32. 122c6a71c08d drm/vmwgfx: fix a warning due to missing dma_parms d3861d4ca94c drm/vmwgfx: Honor the sg list segment size limitation c0b12abd1828 s390/boot: disable address-of-packed-member warning e71daed5176f ARM: dts: am335x phytec boards: Fix cd-gpios active level 822c2ee81c63 ibmvnic: Fix unchecked return codes of memory allocations 0f06004d16be ibmvnic: Refresh device multicast list after reset e65dd528bb8e ibmvnic: Do not close unopened driver during reset 374180b11b29 net: phy: rename Asix Electronics PHY driver 473a75c7fab5 can: af_can: Fix error path of can_init() 486954277fc1 can: m_can: implement errata "Needless activation of MRAF irq" 270149f78b9c can: mcp251x: add support for mcp25625 33672c74b484 dt-bindings: can: mcp251x: add mcp25625 support 07c96e8e8021 soundwire: intel: set dai min and max channels correctly c7e427e28a3a mwifiex: Fix heap overflow in mwifiex_uap_parse_tail_ies() 8e115a079940 iwlwifi: Fix double-free problems in iwl_req_fw_callback() d4c0f752c1d2 mwifiex: Fix possible buffer overflows at parsing bss descriptor b8588a0981b7 mac80211: free peer keys before vif down in mesh acc42e5c2322 mac80211: mesh: fix RCU warning e3868c1a462f staging:iio:ad7150: fix threshold mode config bit 6b1ce3971e05 soundwire: stream: fix out of boundary access on port properties 6be857082611 bpf: sockmap, fix use after free from sleep in psock backlog workqueue bc84982f977d mac80211: fix rate reporting inside cfg80211_calculate_bitrate_he() 3c24a931e972 samples, bpf: suppress compiler warning e7779115bbd9 samples, bpf: fix to change the buffer size for read() fe01e93c3fd1 Input: elantech - enable middle button support on 2 ThinkPads 2883fc1ece69 soc: bcm: brcmstb: biuctrl: Register writes require a barrier 2f1c962a7416 soc: brcmstb: Fix error path for unsupported CPUs e8250f730410 crypto: talitos - rename alternative AEAD algos. 7a6bfa08b938 Linux 4.19.58 f37de75cb8eb dmaengine: imx-sdma: remove BD_INTR for channel0 018c968de710 dmaengine: qcom: bam_dma: Fix completed descriptors count 870de1499505 MIPS: have "plain" make calls build dtbs for selected platforms 8957895b35de MIPS: Add missing EHB in mtc0 -> mfc0 sequence. 2b8f8a80ca8b MIPS: Fix bounds check virt_addr_valid 80b25628ff26 svcrdma: Ignore source port when computing DRC hash 8129a10ce78f nfsd: Fix overflow causing non-working mounts on 1 TB machines f25c06955f8d KVM: LAPIC: Fix pending interrupt in IRR blocked by software disable LAPIC f6472f50fbfc KVM: x86: degrade WARN to pr_warn_ratelimited ac0024baf073 netfilter: ipv6: nf_defrag: accept duplicate fragments again 54e8cf41b20b bpf: fix bpf_jit_limit knob for PAGE_SIZE >= 64K e6c288f7307e net: hns: fix unsigned comparison to less than zero 4f24801ef50b sc16is7xx: move label 'err_spi' to correct section 318244f3641a netfilter: ipv6: nf_defrag: fix leakage of unqueued fragments a8891c5e2251 ip6: fix skb leak in ip6frag_expire_frag_queue() 382bc84da904 rds: Fix warning. 7e6af1fa80b8 ALSA: hda: Initialize power_state field properly c8c88293bf72 net: hns: Fixes the missing put_device in positive leg for roce reset 6bf9677300f3 x86/boot/compressed/64: Do not corrupt EDX on EFER.LME=1 setting b91ec6ae14da selftests: fib_rule_tests: Fix icmp proto with ipv6 e2851c3ee0be scsi: tcmu: fix use after free 04096b3beace mac80211: mesh: fix missing unlock on error in table_path_del() e2379b044d67 f2fs: don't access node/meta inode mapping after iput e9fde78c3a4f drm/fb-helper: generic: Don't take module ref for fbcon 7821bcce20aa media: s5p-mfc: fix incorrect bus assignment in virtual child device 3ddc2a100706 net/smc: move unhash before release of clcsock cd54dc4cd37d mlxsw: spectrum: Handle VLAN device unlinking a8a296abee36 tty: rocket: fix incorrect forward declaration of 'rp_init()' fb814f215013 btrfs: Ensure replaced device doesn't have pending chunk allocation 27ce6c2675f6 mm/vmscan.c: prevent useless kswapd loops c854d9b6ef8d ftrace/x86: Remove possible deadlock between register_kprobe() and ftrace_run_update_code() 2e716c3b562d drm/imx: only send event on crtc disable if kept disabled 8ec242fd431b drm/imx: notify drm core before sending event during crtc disable d2d061351d64 drm/etnaviv: add missing failure path to destroy suballoc ec5d99e18d30 drm/amdgpu/gfx9: use reset default for PA_SC_FIFO_SIZE ec6d8c9e6687 drm/amd/powerplay: use hardware fan control if no powerplay fan table b6d56f4f6a49 arm64: kaslr: keep modules inside module region when KASAN is enabled 7cab3dfa6d74 ARM: dts: armada-xp-98dx3236: Switch to armada-38x-uart serial node c8790d7f76be tracing/snapshot: Resize spare buffer if size changed 052b31810085 fs/userfaultfd.c: disable irqs for fault_pending and event locks ea38007107d6 lib/mpi: Fix karactx leak in mpi_powm 7df1e2f59bde ALSA: hda/realtek - Change front mic location for Lenovo M710q 899377c50e60 ALSA: hda/realtek: Add quirks for several Clevo notebook barebones d9b6936b134e ALSA: usb-audio: fix sign unintended sign extension on left shifts 7f52af5e9baa ALSA: line6: Fix write on zero-sized buffer 3663bf2baa97 ALSA: firewire-lib/fireworks: fix miss detection of received MIDI messages 9d2ac58c1ef9 ALSA: seq: fix incorrect order of dest_client/dest_ports arguments ae3fa28f0938 crypto: cryptd - Fix skcipher instance memory leak 015c20532ace crypto: user - prevent operating on larval algorithms 54435b7fff7b ptrace: Fix ->ptracer_cred handling for PTRACE_TRACEME 600d3712ae12 drm/i915/dmc: protect against reading random memory 2b39351e3844 ftrace: Fix NULL pointer dereference in free_ftrace_func_mapper() 938044171949 module: Fix livepatch/ftrace module text permissions race 220adcc0e0ca tracing: avoid build warning with HAVE_NOP_MCOUNT 79fccb9815db mm/mlock.c: change count_mm_mlocked_page_nr return type 4fce0a79e985 scripts/decode_stacktrace.sh: prefix addr2line with $CROSS_COMPILE b7747ecb82be cpuset: restore sanity to cpuset_cpus_allowed_fallback() e33aeb9a7c0a i2c: pca-platform: Fix GPIO lookup code 7cf431edfb71 platform/mellanox: mlxreg-hotplug: Add devm_free_irq call to remove flow c241f3fbfa1a platform/x86: mlx-platform: Fix parent device in i2c-mux-reg device registration f853112772b0 platform/x86: intel-vbtn: Report switch events when event wakes device 2ac96173bee0 platform/x86: asus-wmi: Only Tell EC the OS will handle display hotkeys from asus_nb_wmi 027e043f9c78 drm: panel-orientation-quirks: Add quirk for GPD MicroPC 2446563dd6d7 drm: panel-orientation-quirks: Add quirk for GPD pocket2 8be5629b9622 scsi: hpsa: correct ioaccel2 chaining c1bef204c70a SoC: rt274: Fix internal jack assignment in set_jack callback 1023af0c069d ALSA: hdac: fix memory release for SST and SOF drivers 26a6acde2a42 usb: gadget: udc: lpc32xx: allocate descriptor with GFP_ATOMIC 9be058f5dd70 usb: gadget: fusb300_udc: Fix memory leak of fusb300->ep[i] 5284327f4e17 x86/CPU: Add more Icelake model numbers 74929087384f ASoC: sun4i-i2s: Add offset to RX channel select 32475634e8a8 ASoC: sun4i-i2s: Fix sun8i tx channel offset mask 7b7486398a32 ASoC: max98090: remove 24-bit format support if RJ is 0 3b60f98ef496 drm/mediatek: call mtk_dsi_stop() after mtk_drm_crtc_atomic_disable() 34e5e1c4874f drm/mediatek: clear num_pipes when unbind driver a8a86e9a5533 drm/mediatek: call drm_atomic_helper_shutdown() when unbinding driver 79e095d234bb drm/mediatek: unbind components in mtk_drm_unbind() 319f4699bcaa drm/mediatek: fix unbind functions dbd94f4938c6 spi: bitbang: Fix NULL pointer dereference in spi_unregister_master 3f8d3c9506a5 ASoC: ak4458: rstn_control - return a non-zero on error only 3c3dd68c48e8 ASoC: soc-pcm: BE dai needs prepare when pause release after resume 4c31b4b4ba65 ASoC: ak4458: add return value for ak4458_probe 0c19bcdb0db9 ASoC : cs4265 : readable register too low c549680ed59b netfilter: nft_flow_offload: IPCB is only valid for ipv4 family 041c181e6ba0 netfilter: nft_flow_offload: don't offload when sequence numbers need adjustment 48f611ecea0e netfilter: nft_flow_offload: set liberal tracking mode for tcp 3b2734bc839d netfilter: nf_flow_table: ignore DF bit setting 869eec894663 md/raid0: Do not bypass blocking queue entered for raid0 bios c9d8d3e9d7a0 block: Fix a NULL pointer dereference in generic_make_request() 5dd6139a0aa2 Bluetooth: Fix faulty expression for minimum encryption key size check Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-07-11linux-yocto/4.19: update to 4.19.57 and -rt22Bruce Ashfield
Updating the linux-yocto 4.19 recipe to the latest -stable and -rt releases. We also integrate a configuration change to support ptests on scsci targets: scsi-debug: include core scsi support for standalone inclusion The -stable changes comprise the following commits: 1a0592436669 Linux 4.19.57 3919d91f4d36 arm64: insn: Fix ldadd instruction encoding 9c423fd89a2b usb: dwc3: Reset num_trbs after skipping 2bbb6b547fbe tipc: pass tunnel dev as NULL to udp_tunnel(6)_xmit_skb 89c49e7b6b0a RDMA: Directly cast the sockaddr union to sockaddr a319c8ff4f09 futex: Update comments and docs about return values of arch futex code 4423a82cbde3 bpf, arm64: use more scalable stadd over ldxr / stxr loop in xadd 436869e0cd6d arm64: futex: Avoid copying out uninitialised stack in failed cmpxchg() ba6340a7297f bpf: udp: ipv6: Avoid running reuseport's bpf_prog from __udp6_lib_err 79c6a8c09978 bpf: udp: Avoid calling reuseport's bpf_prog from udp_gro 613bc37f74c9 bpf: fix unconnected udp hooks a7177b94aff4 bpf: fix nested bpf tracepoints with per-cpu data 4992d4af5881 bpf: lpm_trie: check left child of last leftmost node for NULL 5e558f9a6d7b bpf: simplify definition of BPF_FIB_LOOKUP related flags 7d2c0ec20cb2 tun: wake up waitqueues after IFF_UP is set a08b915457d6 tipc: check msg->req data len in tipc_nl_compat_bearer_disable fdf3e98e1fd9 tipc: change to use register_pernet_device 32b711f57ce7 team: Always enable vlan tx offload eeb770d6ab77 sctp: change to hold sk after auth shkey is created successfully 9b7b0aab4750 net: stmmac: set IC bit when transmitting frames with HW timestamp a373bf728188 net: stmmac: fixed new system time seconds value calculation 7d76fc211609 net: remove duplicate fetch in sock_getsockopt 05dceb60e5dd net/packet: fix memory leak in packet_set_ring() 7c92f3efbad0 ipv4: Use return value of inet_iif() for __raw_v4_lookup in the while loop 0f3451723ddc bonding: Always enable vlan tx offload a4709127e5dd af_packet: Block execution of tasks waiting for transmit to complete in AF_PACKET 64032e2d9ba8 eeprom: at24: fix unexpected timeout under high load c22cea5a21b2 irqchip/mips-gic: Use the correct local interrupt map registers dd9f2fb59e01 SUNRPC: Clean up initialisation of the struct rpc_rqst b78ad2169282 cpu/speculation: Warn on unsupported mitigations= parameter 27380331755f NFS/flexfiles: Use the correct TCP timeout for flexfiles I/O 01a02a98ab1c KVM: x86/mmu: Allocate PAE root array when using SVM's 32-bit NPT 327460322c7c x86/resctrl: Prevent possible overrun during bitmap operations 1746dc529104 x86/microcode: Fix the microcode load on CPU hotplug for real 690049eddb0c x86/speculation: Allow guests to use SSBD even if host does not ee71e97285c2 scsi: vmw_pscsi: Fix use-after-free in pvscsi_queue_lck() 2ba0a5009607 dm log writes: make sure super sector log updates are written in order 87cf811ab6fb mm/page_idle.c: fix oops because end_pfn is larger than max_pfn 1192fb703d09 mm: hugetlb: soft-offline: dissolve_free_huge_page() return zero on !PageHuge aab629188848 mm: soft-offline: return -EBUSY if set_hwpoison_free_buddy_page() fails bcfed145e583 clk: socfpga: stratix10: fix divider entry for the emac clocks 75f5d78d9fbe fs/binfmt_flat.c: make load_flat_shared_library() work 49e9b499a34d mm/mempolicy.c: fix an incorrect rebind node in mpol_rebind_nodemask 6a811c099186 fs/proc/array.c: allow reporting eip/esp for all coredumping threads 385cacd953b9 usb: dwc3: gadget: Clear req->needs_extra_trb flag on cleanup 6edcdd0e6d8f usb: dwc3: gadget: remove wait_end_transfer d7ff2e3ff0e0 usb: dwc3: gadget: move requests to cancelled_list bba5f9878f67 usb: dwc3: gadget: introduce cancelled_list 65e1f3403108 usb: dwc3: gadget: extract dwc3_gadget_ep_skip_trbs() 56092bd50eb9 usb: dwc3: gadget: use num_trbs when skipping TRBs on ->dequeue() 2a2b1c4dc510 usb: dwc3: gadget: track number of TRBs per request 420b1237c79f usb: dwc3: gadget: combine unaligned and zero flags 62805d31969b Revert "usb: dwc3: gadget: Clear req->needs_extra_trb flag on cleanup" 3726d8d0b60f qmi_wwan: Fix out-of-bounds read cfbe930c7142 net/9p: include trans_common.h to fix missing prototype warning. 6518b4126b3f 9p/trans_fd: put worker reqs on destroy 6fad469c84fc 9p/trans_fd: abort p9_read_work if req status changed 39bf142ae0ca 9p: potential NULL dereference 6490cdf9d29d 9p: p9dirent_read: check network-provided name length e48e7e27e4df 9p/rdma: remove useless check in cm_event_handler fb0cbbd8dec7 9p: acl: fix uninitialized iattr access 3dc511c9ccb9 9p: Rename req to rreq in trans_fd 04ee7e7b4795 9p/rdma: do not disconnect on down_interruptible EAGAIN 3665a4d9dca1 9p: Add refcount to p9_req_t fa3625794f1a 9p: rename p9_free_req() function be87f21e6b25 9p: add a per-client fcall kmem_cache 1555583b63b3 9p: embed fcall in req to round down buffer allocs 3ea4cf422323 9p: Use a slab for allocating requests f8bc5f1a3aba 9p/xen: fix check for xenbus_read error in front_probe a8782ce02687 IB/hfi1: Close PSM sdma_progress sleep window fec1a13bdfa9 Revert "x86/uaccess, ftrace: Fix ftrace_likely_update() vs. SMAP" 85a3b1ef969b arm64: Don't unconditionally add -Wno-psabi to KBUILD_CFLAGS 6461a4543b34 perf header: Fix unchecked usage of strncpy() 0bf5d53b53c8 perf help: Remove needless use of strncpy() 6e75d9272c92 perf ui helpline: Use strlcpy() as a shorter form of strncpy() + explicit set nul aec3002d07fd Linux 4.19.56 cd3e49394cb0 powerpc/mm/64s/hash: Reallocate context ids on fork 8c4fe20091cd x86/resctrl: Don't stop walking closids when a locksetup group is found d451b505b676 mac80211: Do not use stack memory with scatterlist for GMAC 72dc6786d77a nl80211: fix station_info pertid memory leak 1e1007ac47d8 mac80211: handle deauthentication/disassociation from TDLS peer ccf6a155844b {nl,mac}80211: allow 4addr AP operation on crypto controlled devices 0e879ef1cb5b mac80211: drop robust management frames from unknown TA 17d941dc3033 cfg80211: fix memory leak of wiphy device name 5293c79c6f60 SMB3: retry on STATUS_INSUFFICIENT_RESOURCES instead of failing write db7f1076c0bd Bluetooth: Fix regression with minimum encryption key size alignment 5e9a6c68de0f Bluetooth: Align minimum encryption key size for LE and BR/EDR connections 64e370233a07 staging: erofs: add requirements field in superblock e6803ce36d49 drm/vmwgfx: Use the backdoor port if the HB port is not available 7499528bb078 arm64: ssbd: explicitly depend on <linux/prctl.h> 3e16b5c25466 arm64/sve: <uapi/asm/ptrace.h> should not depend on <uapi/linux/prctl.h> 2296fd59eb30 ARM: dts: am57xx-idk: Remove support for voltage switching for SD card cc87ab841bb1 ARM: dts: dra76x: Update MMC2_HS200_MANUAL1 iodelay values 03426208d1f9 ARM: imx: cpuidle-imx6sx: Restrict the SW2ISO increase to i.MX6SX 48ee85dc9c52 powerpc/bpf: use unsigned division instruction for 64-bit operations a96ac5cb8a56 riscv: mm: synchronize MMU after pte change 5ad9a23e6dae can: purge socket error queue on sock destruct 4ea81cc49c59 can: flexcan: fix timeout when set small bitrate f6a2c8b3c24a can: xilinx_can: use correct bittiming_const for CAN FD core c592b1c3a994 btrfs: start readahead also in seed devices 17f1dca21d16 nvme: Fix u32 overflow in the number of namespace list calculation 71d019a6dae9 arm64: Silence gcc warnings about arch ABI drift d72a4c78c124 hwmon: (pmbus/core) Treat parameters as paged if on multiple pages 6029e5818805 hwmon: (core) add thermal sensors only if dev->of_node is present 153f2d97d0d7 s390/qeth: fix VLAN attribute in bridge_hostnotify udev event cedb209bfa5a net: ipvlan: Fix ipvlan device tso disabled while NETIF_F_IP_CSUM is set 5327e985e61e scsi: smartpqi: unlock on error in pqi_submit_raid_request_synchronous() 04ceb1348973 scsi: ufs: Check that space was properly alloced in copy_query_response e1a101a9dae9 scripts/checkstack.pl: Fix arm64 wrong or unknown architecture 1f74977c2740 nvmet: fix data_len to 0 for bdev-backed write_zeroes 8388af891e0e drm/arm/hdlcd: Allow a bit of clock tolerance 7c7c88deb14d drm/arm/hdlcd: Actually validate CRTC modes 1fcb0e389538 drm/arm/mali-dp: Add a loop around the second set CVAL and try 5 times 377958c3ff2c net: ethernet: mediatek: Use NET_IP_ALIGN to judge if HW RX_2BYTE_OFFSET is enabled ee2f9878bc04 net: ethernet: mediatek: Use hw_feature to judge if HWLRO is supported 16cdab63987c sparc: perf: fix updated event period in response to PERF_EVENT_IOC_PERIOD 7b460a9bb13d mdesc: fix a missing-check bug in get_vdev_port_node_info() 6bf97a6cb6ce net: hns: Fix loopback test failed at copper ports 4336ba249b7d net: dsa: mv88e6xxx: avoid error message on remove from VLAN 0 bf51ec92a35e selftests: vm: install test_vmalloc.sh for run_vmtests a0e8215eb9f8 kselftest/cgroup: fix incorrect test_core skip 59243d6fb45c kselftest/cgroup: fix unexpected testing failure on test_core 9c2eebe31d75 kselftest/cgroup: fix unexpected testing failure on test_memcontrol ae0d1c08843d xtensa: Fix section mismatch between memblock_reserve and mem_reserve 3089c0ea8a1f MIPS: uprobes: remove set but not used variable 'epc' 63542eb24ab9 IB/hfi1: Validate page aligned for a given virtual address 4d61fc383bb5 IB/{qib, hfi1, rdmavt}: Correct ibv_devinfo max_mr value 830991121773 IB/hfi1: Insure freeze_work work_struct is canceled on shutdown 3fe551cc9e4e IB/rdmavt: Fix alloc_qpn() WARN_ON() 3333e0409424 parisc: Fix compiler warnings in float emulation code f9dd0f0928a3 parport: Fix mem leak in parport_register_dev_model 4c950c8bb31a fpga: dfl: Add lockdep classes for pdata->lock 505de32ea952 fpga: dfl: afu: Pass the correct device to dma_mapping_error() 7b2145e22247 ARC: [plat-hsdk]: Add missing FIFO size entry in GMAC node 15004afd9845 ARC: [plat-hsdk]: Add missing multicast filter bins number to GMAC node 8f3793bfa3ea dmaengine: sprd: Fix block length overflow e478abd4ebf7 dmaengine: dw-axi-dmac: fix null dereference when pointer first is null 4c21b761b40e ARC: fix build warnings d64f99ef010d brcmfmac: sdio: Don't tune while the card is off 0ad82f2eb3f6 brcmfmac: sdio: Disable auto-tuning around commands expected to fail 31c99580687a apparmor: enforce nullbyte at end of tag string eb2b0bf5c4a4 apparmor: fix PROFILE_MEDIATES for untrusted input 1d08fe254fd6 Input: silead - add MSSL0017 to acpi_device_id ebd7dda84ec2 Input: uinput - add compat ioctl number translation for UI_*_FF_UPLOAD 9f3559e4f6cd Input: synaptics - enable SMBus on ThinkPad E480 and E580 e61e41ffcfeb iio: temperature: mlx90632 Relax the compatibility check 303386b31bfb IB/hfi1: Silence txreq allocation warnings 7cc9c9930947 IB/hfi1: Validate fault injection opcode user input 17027034a47b usb: xhci: Don't try to recover an endpoint if port is in error state. d606a82ccc0a xhci: detect USB 3.2 capable host controllers correctly e6563039674d usb: chipidea: udc: workaround for endpoint conflict issue 0746b2f50142 scsi: ufs: Avoid runtime suspend possibly being blocked forever 98467b8fda41 mmc: core: Prevent processing SDIO IRQs when the card is suspended 0349dbebbb0b mmc: core: Add sdio_retune_hold_now() and sdio_retune_release() 7ed49e1bf5b3 mmc: core: API to temporarily disable retuning for SDIO CRC errors 4b6d290cc1c1 mmc: sdhci: sdhci-pci-o2micro: Correctly set bus width when tuning 4c15ded55979 s390/ap: rework assembler functions to use unions for in/out register variables fb48fb155e1b s390/jump_label: Use "jdd" constraint on gcc9 0319ef1d40ff ovl: fix bogus -Wmaybe-unitialized warning 639e8c2f0910 ovl: don't fail with disconnected lower NFS f1c5aa5eda08 ovl: detect overlapping layers a00f405e133f ovl: make i_ino consistent with st_ino in more cases d6623379d895 ovl: fix wrong flags check in FS_IOC_FS[SG]ETXATTR ioctls 3cb5d7fa8f7d ovl: support the FS_IOC_FS[SG]ETXATTR ioctls 76343a1363f8 gcc-9: silence 'address-of-packed-member' warning 6a997c3a239a objtool: Support per-function rodata sections c493ead38adb tracing: Silence GCC 9 array bounds warning 78778071092e Linux 4.19.55 dad3a9314ac9 tcp: refine memory limit test in tcp_fragment() 63bbbcd8ed53 Linux 4.19.54 e8e448b08450 Abort file_remove_privs() for non-reg. files 465ce9a50f8a coredump: fix race condition between collapse_huge_page() and core dumping c7fb6b75def2 ocfs2: fix error path kobject memory leak fedb1b9c9191 mlxsw: spectrum: Prevent force of 56G 114e8135ae00 scsi: libsas: delete sas port if expander discover failed 89ede9d8b5b8 scsi: scsi_dh_alua: Fix possible null-ptr-deref cb7c6c33d3bb scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask 214c5933ffcf scsi: libcxgbi: add a check for NULL pointer in cxgbi_check_route() 7b9e10944f0d net: phy: dp83867: Set up RGMII TX delay 7698ad8c14c7 net: phylink: ensure consistent phy interface mode 8fb2c7969009 net: sh_eth: fix mdio access in sh_eth_close() for R-Car Gen2 and RZ/A1 SoCs 467f902643f5 arm64: use the correct function type for __arm64_sys_ni_syscall 98fd62e0a157 arm64: use the correct function type in SYSCALL_DEFINE0 c5fdfaedecc2 arm64: fix syscall_fn_t type df6384e0f42e KVM: PPC: Book3S HV: Don't take kvm->lock around kvm_for_each_vcpu b376683f6ab1 KVM: PPC: Book3S: Use new mutex to synchronize access to rtas token list 4acce744284c xenbus: Avoid deadlock during suspend due to open transactions 66f33b2bd2d8 xen/pvcalls: Remove set but not used variable d92ebe0c1d26 ia64: fix build errors by exporting paddr_to_nid() 60a3e3b9e5ec perf record: Fix s390 missing module symbol and warning for non-root users be0e62666da1 perf namespace: Protect reading thread's namespace 7d523e33f4b6 perf data: Fix 'strncat may truncate' build failure with recent gcc e9fcebe01822 configfs: Fix use-after-free when accessing sd->s_dentry ab7a3d9accae ALSA: hda - Force polling mode on CNL for fixing codec communication 7bea5618eaf9 i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr 197501af7ff3 net: aquantia: fix LRO with FCS error 388534d45f04 net: aquantia: tx clean budget logic error b7ca3f331d57 drm/etnaviv: lock MMU while dumping core ee61fb4de955 ACPI/PCI: PM: Add missing wakeup.flags.valid checks bc19b50b80ca net: tulip: de4x5: Drop redundant MODULE_DEVICE_TABLE() 9a3208b66cc1 net: stmmac: update rx tail pointer register to fix rx dma hang issue. 3fbcef3350ab gpio: fix gpio-adp5588 build errors 991ea848a5c9 perf/ring-buffer: Always use {READ,WRITE}_ONCE() for rb->user_page data c133c9db233d perf/ring_buffer: Add ordering to rb->nest increment cca19ab29a1a perf/ring_buffer: Fix exposing a temporarily decreased data_head a35e78220a9f x86/CPU/AMD: Don't force the CPB cap when running under a hypervisor 8e5666cdb36b mISDN: make sure device name is NUL terminated f3885eecd253 usb: xhci: Fix a potential null pointer dereference in xhci_debugfs_create_endpoint() 930d31a6f344 powerpc/powernv: Return for invalid IMC domain 00ed897d618e clk: ti: clkctrl: Fix clkdm_clk handling ef4ffa0f0b67 selftests: netfilter: missing error check when setting up veth interface 61c83de6e622 ipvs: Fix use-after-free in ip_vs_in 883ce78cded5 netfilter: nf_queue: fix reinject verdict handling 5a9c29cc2140 perf/x86/intel/ds: Fix EVENT vs. UEVENT PEBS constraints dd9b6de79b67 Staging: vc04_services: Fix a couple error codes 97605ba68790 net: mvpp2: prs: Use the correct helpers when removing all VID filters b6a1eabf72a0 net: mvpp2: prs: Fix parser range for VID filtering 4642a659ab96 net/mlx5: Avoid reloading already removed devices 1b201b63b647 vsock/virtio: set SOCK_DONE on peer shutdown b86a5ccda5c3 tipc: purge deferredq list for each grp member in tipc_group_delete e1b0c311b790 sunhv: Fix device naming inconsistency between sunhv_console and sunhv_reg d7fcb54ed2a9 sctp: Free cookie before we memdup a new one 4bb4ba362cc1 nfc: Ensure presence of required attributes in the deactivate_target handler 7530c3f3d5b9 net: openvswitch: do not free vport if register_netdevice() is failed. fc762c999768 net: dsa: rtl8366: Fix up VLAN filtering 103835df6821 neigh: fix use-after-free read in pneigh_get_next 2980196db6c1 lapb: fixed leak of control-blocks. 7eadfacd2be2 ipv6: flowlabel: fl6_sock_lookup() must use atomic_inc_not_zero a5ae5920426e hv_netvsc: Set probe mode to sync 674dc77bd3ec be2net: Fix number of Rx queues used for flow hashing 10faaa359b41 ax25: fix inconsistent lock state in ax25_destroy_timer 9f31eb60d7a2 Linux 4.19.53 90fc261d509e rtc: pcf8523: don't return invalid date when battery is low 04757d0e3789 drm: add fallback override/firmware EDID modes workaround 29a6026624cd drm/edid: abstract override/firmware EDID retrieval e93ce57f60ca x86/resctrl: Prevent NULL pointer dereference when local MBM is disabled 0257fc9aa53f x86/mm/KASLR: Compute the size of the vmemmap section properly 5e3d10d9375d x86/kasan: Fix boot with 5-level paging and KASAN ecec31ce4f33 x86/microcode, cpuhotplug: Add a microcode loader CPU hotplug callback fa982c692b2f RAS/CEC: Fix binary search function e40db40e45cc RAS/CEC: Convert the timer callback to a workqueue ca4c34037bb9 timekeeping: Repair ktime_get_coarse*() granularity 0fcd1432f8b0 USB: serial: option: add Telit 0x1260 and 0x1261 compositions 5080fb4b3828 USB: serial: option: add support for Simcom SIM7500/SIM7600 RNDIS mode d5f20ee10ac0 USB: serial: pl2303: add Allied Telesis VT-Kit3 c00cd066a024 USB: usb-storage: Add new ID to ums-realtek 3c7439e2eab9 USB: Fix chipmunk-like voice when using Logitech C270 for recording audio. f05b0bf073ef usb: dwc2: host: Fix wMaxPacketSize handling (fix webcam regression) 63feb7e69fdc usb: dwc2: Fix DMA cache alignment issues 15bc8e8d4dad drm/vmwgfx: NULL pointer dereference from vmw_cmd_dx_view_define() 328648ac6aa5 drm/vmwgfx: integer underflow in vmw_cmd_dx_set_shader() leading to an invalid read 2399b2ac2be7 tools/kvm_stat: fix fields filter for child events f69f5679ff8f KVM: s390: fix memory slot handling for KVM_SET_USER_MEMORY_REGION 9d8f338c92cc KVM: x86/pmu: do not mask the value that is written to fixed PMUs 04d2a113a283 KVM: x86/pmu: mask the result of rdpmc according to the width of the counters 60b300975e5f KVM: arm/arm64: Move cc/it checks under hyp's Makefile to avoid instrumentation 9366f5dc8409 usbnet: ipheth: fix racing condition 86895090621c tracing: Prevent hist_field_var_ref() from accessing NULL tracing_map_elts b64df8133c2e selftests/timers: Add missing fflush(stdout) calls 3e1d7417b4d6 selftests: fib_rule_tests: fix local IPv4 address typo 90a564549b4a libnvdimm: Fix compilation warnings with W=1 ccc9ba8d2508 scsi: bnx2fc: fix incorrect cast to u64 on shift operation d7a32c8a1ce1 platform/x86: pmc_atom: Add several Beckhoff Automation boards to critclk_systems DMI table 1a80d9ff8253 platform/x86: pmc_atom: Add Lex 3I380D industrial PC to critclk_systems DMI table c0d3e166e16a nvme: fix memory leak for power latency tolerance ddda7e850bf1 nvme: release namespace SRCU protection before performing controller ioctls 3188fcebbcbd nvme: merge nvme_ns_ioctl into nvme_ioctl 54261634bdf8 nvme: remove the ifdef around nvme_nvm_ioctl a6515af9b839 nvme: fix srcu locking on error return in nvme_get_ns_from_disk c4e97af6bff4 arm64/mm: Inhibit huge-vmap with ptdump 0e50da1e7ced scsi: lpfc: add check for loss of ndlp when sending RRQ 334d1a2373af scsi: lpfc: correct rcu unlock issue in lpfc_nvme_info_show 32d3f7d9dec1 scsi: qedi: remove set but not used variables 'cdev' and 'udev' f3a7a1137ffc scsi: qedi: remove memset/memcpy to nfunc and use func instead ae3787d433f7 f2fs: fix to avoid accessing xattr across the boundary 32f26da4b769 Drivers: misc: fix out-of-bounds access in function param_set_kgdbts_var fcc1ce5b4f42 s390/kasan: fix strncpy_from_user kasan checks eddfe9672ed2 Revert "ALSA: seq: Protect in-kernel ioctl calls with mutex" 731ebeeda51f ALSA: seq: Fix race of get-subscription call vs port-delete ioctls b52fd8af8db3 ALSA: seq: Protect in-kernel ioctl calls with mutex 82055ad3d3ed x86/uaccess, kcov: Disable stack protector b08ec06c94fc drm/i915/sdvo: Implement proper HDMI audio support for SDVO b7398f45e3d6 ASoC: fsl_asrc: Fix the issue about unsupported rate d7d15ac38ba6 ASoC: cs42xx8: Add regcache mask dirty c3b85bda41f0 cgroup: Use css_tryget() instead of css_tryget_online() in task_get_css() e599bfe54305 bcache: only set BCACHE_DEV_WB_RUNNING when cached device attached 973fc2b3434b bcache: fix stack corruption by PRECEDING_KEY() da3b915a57c3 i2c: acorn: fix i2c warning d3e58022c017 iommu/arm-smmu: Avoid constant zero in TLBI writes 31e216cf9dc2 ptrace: restore smp_rmb() in __ptrace_may_access() 662b831dde61 signal/ptrace: Don't leak unitialized kernel memory with PTRACE_PEEK_SIGINFO 54a20289cbfb mm/vmscan.c: fix trying to reclaim unevictable LRU page 6b9aa7ac48d7 fs/ocfs2: fix race in ocfs2_dentry_attach_lock() 553a1f0d3c69 mm/list_lru.c: fix memory leak in __memcg_init_list_lru_node b7f8bbbbb973 libata: Extend quirks for the ST1000LM024 drives with NOLPM quirk 88fe03076062 ALSA: firewire-motu: fix destruction of data for isochronous resources 786b1b40dfb9 ALSA: hda/realtek - Update headset mode for ALC256 27effeff4533 ALSA: oxfw: allow PCM capture for Stanton SCS.1m b59c93226489 Revert "ALSA: hda/realtek - Improve the headset mic for Acer Aspire laptops" 9fbd67c56529 HID: wacom: Sync INTUOSP2_BT touch state after each frame if necessary dd1d71ad57a4 HID: wacom: Correct button numbering 2nd-gen Intuos Pro over Bluetooth 529013533d73 HID: wacom: Send BTN_TOUCH in response to INTUOSP2_BT eraser contact 3e9c0eb15932 HID: wacom: Don't report anything prior to the tool entering range 52a7d604615a HID: wacom: Don't set tool type until we're in range fa212dd5a604 HID: multitouch: handle faulty Elo touch device 9ae306d8dbc8 nouveau: Fix build with CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT disabled d54e1b848e99 drm/nouveau: add kconfig option to turn off nouveau legacy contexts. (v3) 6500aa436df4 Linux 4.19.52 59222807fcc9 tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() 7f9f8a37e563 tcp: add tcp_min_snd_mss sysctl ec83921899a5 tcp: tcp_fragment() should apply sane memory limits c09be31461ed tcp: limit payload size of sacked skbs 7aa823a959e1 Linux 4.19.51 b323914cd033 ALSA: seq: Cover unsubscribe_port() in list_mutex 3af96f3497b7 drm/vc4: fix fb references in async update afec706807cd ovl: support stacked SEEK_HOLE/SEEK_DATA 22dac6cc9549 ovl: check the capability before cred overridden b616b9dbc5f6 Revert "drm/nouveau: add kconfig option to turn off nouveau legacy contexts. (v3)" 8e5483aeae0d Revert "Bluetooth: Align minimum encryption key size for LE and BR/EDR connections" 526972e95ef9 percpu: do not search past bitmap when allocating an area d4d5dce6d329 gpio: vf610: Do not share irq_chip 28229df6ad13 soc: renesas: Identify R-Car M3-W ES1.3 db54e08c5832 usb: typec: fusb302: Check vconn is off when we start toggling ce183fad3aa8 ARM: exynos: Fix undefined instruction during Exynos5422 resume 384642ff6465 pwm: Fix deadlock warning when removing PWM device 7905b2331338 ARM: dts: exynos: Always enable necessary APIO_1V8 and ABB_1V8 regulators on Arndale Octa 78002e383be7 pwm: tiehrpwm: Update shadow register for disabling PWMs 9fdcb04e80e1 dmaengine: idma64: Use actual device for DMA transfers da00c89fce7a ice: Add missing case in print_link_msg for printing flow control 456e3563725a gpio: gpio-omap: add check for off wake capable gpios 47d281bbbff9 PCI: xilinx: Check for __get_free_pages() failure b5a185ee30d7 block, bfq: increase idling for weight-raised queues e06d7a92796c video: imsttfb: fix potential NULL pointer dereferences 1f2611af4581 video: hgafb: fix potential NULL pointer dereference 5957f6f5aaa6 scsi: qla2xxx: Reset the FCF_ASYNC_{SENT|ACTIVE} flags c2c7b6fee389 PCI: rcar: Fix 64bit MSI message address handling dd54e70c47de PCI: rcar: Fix a potential NULL pointer dereference 272f8c3ddd31 net: hns3: return 0 and print warning when hit duplicate MAC 5a286ced4911 power: supply: max14656: fix potential use-before-alloc 901daed2f173 platform/x86: intel_pmc_ipc: adding error handling 613752b3a8fb ARM: OMAP2+: pm33xx-core: Do not Turn OFF CEFUSE as PPA may be using it 668440f6ee3f drm/amd/display: Use plane->color_space for dpp if specified 671fc9007c48 PCI: rpadlpar: Fix leaked device_node references in add/remove paths b531acbd86d2 ARM: dts: imx6qdl: Specify IMX6QDL_CLK_IPG as "ipg" clock to SDMA 584cabc69aee ARM: dts: imx6sx: Specify IMX6SX_CLK_IPG as "ipg" clock to SDMA 02936545fbea ARM: dts: imx6ul: Specify IMX6UL_CLK_IPG as "ipg" clock to SDMA 36a7fda0595b ARM: dts: imx7d: Specify IMX7D_CLK_IPG as "ipg" clock to SDMA c84911bb39d1 ARM: dts: imx6sll: Specify IMX6SLL_CLK_IPG as "ipg" clock to SDMA a2e661f99c4d ARM: dts: imx6sx: Specify IMX6SX_CLK_IPG as "ahb" clock to SDMA 461f4183926c ARM: dts: imx53: Specify IMX5_CLK_IPG as "ahb" clock to SDMA 998860d0384d ARM: dts: imx50: Specify IMX5_CLK_IPG as "ahb" clock to SDMA 70465bbbaeae ARM: dts: imx51: Specify IMX5_CLK_IPG as "ahb" clock to SDMA 57f89084a7e1 soc: rockchip: Set the proper PWM for rk3288 b16594860a30 clk: rockchip: Turn on "aclk_dmac1" for suspend on rk3288 8e9dd864d6a7 soc: mediatek: pwrap: Zero initialize rdata in pwrap_init_cipher f7c0e67054d8 PCI: keystone: Prevent ARM32 specific code to be compiled for ARM64 a357310a5774 platform/chrome: cros_ec_proto: check for NULL transfer function b78a9b2818d5 i40e: Queues are reserved despite "Invalid argument" error aeb743dbe936 x86/PCI: Fix PCI IRQ routing table memory leak 47e6a354e248 net: thunderbolt: Unregister ThunderboltIP protocol handler when suspending 31aa2a7a8566 switchtec: Fix unintended mask of MRPC event 4b19a45eed4d iommu/arm-smmu-v3: Don't disable SMMU in kdump kernel f7883f9b5a67 vfio: Fix WARNING "do not call blocking ops when !TASK_RUNNING" 806e83958482 nfsd: avoid uninitialized variable warning b4330e4a7c12 nfsd: allow fh_want_write to be called twice ae35c325d8fd fuse: retrieve: cap requested size to negotiated max_write 1c2e974628d1 nvmem: sunxi_sid: Support SID on A83T and H5 0412a8857198 nvmem: core: fix read buffer in place 962ce4023178 ALSA: hda - Register irq handler after the chip initialization 028b3d8d549e netfilter: nf_flow_table: fix netdev refcnt leak 650a4b7c5d66 netfilter: nf_flow_table: check ttl value in flow offload data path 52d7b067fadf nvme-pci: shutdown on timeout during deletion 6ce2ad24ae9c nvme-pci: unquiesce admin queue on shutdown e9db931283fd PCI: designware-ep: Use aligned ATU window for raising MSI interrupts a7f27994b207 misc: pci_endpoint_test: Fix test_reg_bar to be updated in pci_endpoint_test ed6efdb74438 iommu/vt-d: Set intel_iommu_gfx_mapped correctly 525b5265fd75 blk-mq: move cancel of requeue_work into blk_mq_release d6c80b609d81 watchdog: fix compile time error of pretimeout governors 0f50c30c8470 watchdog: imx2_wdt: Fix set_timeout for big timeout values dc58e4027430 netfilter: nf_tables: fix base chain stat rcu_dereference usage 2d433cc9bd31 mips: Make sure dt memory regions are valid 2aed9dfe1e5d netfilter: nf_conntrack_h323: restore boundary check correctness d0941980fd81 netfilter: nf_flow_table: fix missing error check for rhashtable_insert_fast 217ec4a6e4ef mmc: mmci: Prevent polling for busy detection in IRQ context 06382ad6cf31 ovl: do not generate duplicate fsnotify events for "fake" path 5fbe39bfd1e0 PCI: dwc: Free MSI IRQ page in dw_pcie_free_msi() a6b79e2c7c02 PCI: dwc: Free MSI in dw_pcie_host_init() error path a4aa02826701 uml: fix a boot splat wrt use of cpu_all_mask 4dc146d47fea configfs: fix possible use-after-free in configfs_register_group 5329dcafead2 percpu: remove spurious lock dependency between percpu and sched 8d7ebdd109b4 f2fs: fix to do checksum even if inode page is uptodate 640248545436 f2fs: fix to do sanity check on valid block count of segment 101e48feb661 f2fs: fix to use inline space only if inline_xattr is enable 45624f0e8142 f2fs: fix to avoid panic in dec_valid_block_count() 47a92acf9ebf f2fs: fix to clear dirty inode in error path of f2fs_iget() ca9fcbc5a5f5 f2fs: fix to do sanity check on free nid f3aa313d0d4f f2fs: fix to avoid panic in f2fs_remove_inode_page() 0325c5cce544 f2fs: fix to avoid panic in f2fs_inplace_write_data() 8490bf2d6176 f2fs: fix to avoid panic in do_recover_data() 0b50d08c5d85 ntp: Allow TAI-UTC offset to be set to zero 102f6e1249fb mailbox: stm32-ipcc: check invalid irq c5b2c8249ff3 pwm: meson: Use the spin-lock only to protect register modifications 689fe88d51aa EDAC/mpc85xx: Prevent building as a module f9ee13ce21db bpf: fix undefined behavior in narrow load handling 991b51048c49 drm/nouveau/kms/gv100-: fix spurious window immediate interlocks 20e1a16702d9 objtool: Don't use ignore flag for fake jumps 124c23dca3ac drm/bridge: adv7511: Fix low refresh rate selection 2a3f2b43a9e3 drm/nouveau/kms/gf119-gp10x: push HeadSetControlOutputResource() mthd when encoders change f9706dd945e9 perf/x86/intel: Allow PEBS multi-entry in watermark mode 5540d0146151 mfd: twl6040: Fix device init errors for ACCCTL register 3b8892bea9eb drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration e9a8c9805f58 mfd: intel-lpss: Set the device in reset state when init 12c57327a128 mfd: tps65912-spi: Add missing of table registration 1196b79a20f7 drivers: thermal: tsens: Don't print error message on -EPROBE_DEFER fd77a5117721 thermal: rcar_gen3_thermal: disable interrupt in .remove c50c4fb0cb62 kernel/sys.c: prctl: fix false positive in validate_prctl_map() 515d18ced8e1 mm/slab.c: fix an infinite loop in leaks_show() 13e1ea0881da mm/cma_debug.c: fix the break condition in cma_maxchunk_get() 38c5fce7fc48 mm: page_mkclean vs MADV_DONTNEED race 77a01e33570c mm/cma.c: fix the bitmap status to show failed allocation reason 25511676362d initramfs: free initrd memory if opening /initrd.image fails e5f8857ea972 mm/cma.c: fix crash on CMA allocation if bitmap allocation fails 5094a85d6d93 mem-hotplug: fix node spanned pages when we have a node with only ZONE_MOVABLE ffaafd27b067 hugetlbfs: on restore reserve error path retain subpool reservation 85e1a6c4b3e5 mm/hmm: select mmu notifier when selecting HMM e0c3fc1f8fe3 ARM: prevent tracing IPI_CPU_BACKTRACE 4d3811a60e10 drm/pl111: Initialize clock spinlock early 20de754a7d88 ipc: prevent lockup on alloc_msg and free_msg 91ae202e2c88 sysctl: return -EINVAL if val violates minmax 5b6619b4d206 fs/fat/file.c: issue flush after the writeback of FAT 2a89e4c5ee2e rapidio: fix a NULL pointer dereference when create_workqueue() fails 768292d05361 Linux 4.19.50 51dc284e2a87 ethtool: check the return value of get_regs_len 645fa685bb20 ipv4: Define __ipv4_neigh_lookup_noref when CONFIG_INET is disabled ec8a9eb2a6c1 TTY: serial_core, add ->install 6bdc692f5c9e drm/i915/gvt: Initialize intel_gvt_gtt_entry in stack fbb7e114e6e6 drm: don't block fb changes for async plane updates 6600ec2600d6 drm/i915: Maintain consistent documentation subsection ordering 360e00e290a3 drm/i915/fbc: disable framebuffer compression on GeminiLake 554f4253700e drm/i915: Fix I915_EXEC_RING_MASK f3dcc88d531f drm/amdgpu: remove ATPX_DGPU_REQ_POWER_FOR_DISPLAYS check when hotplug-in 84c82ab8f133 drm/radeon: prefer lower reference dividers 748a97ec6c15 drm/amdgpu/psp: move psp version specific function pointers to early_init 98a8cb0282ab drm: add non-desktop quirks to Sensics and OSVR headsets. 610382337557 drm/nouveau: add kconfig option to turn off nouveau legacy contexts. (v3) 490290b0415f drm: add non-desktop quirk for Valve HMDs ac222e8a50af drm/msm: fix fb references in async update 6470aa05ae15 drm/gma500/cdv: Check vbt config bits when detecting lvds panels 7fbcb7d1031d test_firmware: Use correct snprintf() limit 67bdeb0c6f5c genwqe: Prevent an integer overflow in the ioctl 221c44d2d7fa Revert "MIPS: perf: ath79: Fix perfcount IRQ assignment" 2d9d3ab541a6 MIPS: pistachio: Build uImage.gz by default eee609635076 MIPS: Bounds check virt_addr_valid b9b75a460076 xen-blkfront: switch kcalloc to kvcalloc for large array allocation 7aad9269a6e8 s390/mm: fix address space detection in exception handling 7737eff01711 i2c: xiic: Add max_read_len quirk b598ddc7b9fc x86/insn-eval: Fix use-after-free access to LDT entry 4d166206cf41 x86/power: Fix 'nosmt' vs hibernation triple fault during resume f4d0227ff170 pstore/ram: Run without kernel crash dump region aa73a3b205a4 pstore: Set tfm to NULL on free_buf_for_compression d4128a1b580c pstore: Convert buf_lock to semaphore c63ce7166daf pstore: Remove needless lock during console writes a3b8b4ad6db7 fuse: fallocate: fix return with locked inode 56e3f73e838a NFSv4.1: Fix bug only first CB_NOTIFY_LOCK is handled ea0327b47754 NFSv4.1: Again fix a race where CB_NOTIFY_LOCK fails to wake a waiter 384c1d931b5e parisc: Use implicit space register selection for loading the coherence index of I/O pdirs 6726307d2008 rcu: locking and unlocking need to always be at least barriers 39e597d283b0 mtd: spinand: macronix: Fix ECC Status Read 2488b9f9afde ipv6: fix EFAULT on sendto with icmpv6 and hdrincl 0b16d956ee5b ipv6: use READ_ONCE() for inet->hdrincl as in ipv4 d769853dbdaa Revert "fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied" 396244b6ecf0 pktgen: do not sleep with the thread lock held. da096fe1a6a4 packet: unconditionally free po->rollover be0343af1291 net/tls: replace the sleeping lock around RX resync with a bit lock 9740f4ff1a66 net: sfp: read eeprom in maximum 16 byte increments 7700d5afff30 net: rds: fix memory leak in rds_ib_flush_mr_pool c6a020e0117f net: mvpp2: Use strscpy to handle stat strings d305d61fcf96 net/mlx4_en: ethtool, Remove unsupported SFP EEPROM high pages query 831d6d077874 net: ethernet: ti: cpsw_ethtool: fix ethtool ring param set 893e2a5f5cf6 neighbor: Call __ipv4_neigh_lookup_noref in neigh_xmit 9fd19a3b4f61 ipv6: fix the check before getting the cookie in rt6_get_cookie daa11cc841d6 ipv4: not do cache for local delivery if bc_forwarding is enabled 05b933f25a83 Fix memory leak in sctp_process_init d6782b8c5c18 ethtool: fix potential userspace buffer overflow bb7b450e61a1 Linux 4.19.49 9861e2cd4616 media: uvcvideo: Fix uvc_alloc_entity() allocation alignment b52ca352489b of: overlay: set node fields from properties when add new overlay node 15151d0013c9 of: overlay: validate overlay properties #address-cells and #size-cells 26dace362e7f scsi: lpfc: Fix backport of faf5a744f4f8 ("scsi: lpfc: avoid uninitialized variable warning") ca309fef7a69 x86/kprobes: Set instruction page as executable b49ca4bf1b9c x86/ftrace: Set trampoline pages as executable 6fa953c94882 x86/ftrace: Do not call function graph from dynamic trampolines 9d57cfd4e9d8 binder: fix race between munmap() and direct reclaim 137c838f177b Revert "binder: fix handling of misaligned binder object" 385dab299c8a Revert "x86/build: Move _etext to actual end of .text" 9468870f7cbd include/linux/module.h: copy __init/__exit attrs to init/cleanup_module 2a0f719db71c Compiler Attributes: add support for __copy (gcc >= 9) 390a0fd31b02 drm/lease: Make sure implicit planes are leased 699f0e9d24c8 drm/rockchip: shutdown drm subsystem on shutdown 1ca811507e41 drm/sun4i: Fix sun8i HDMI PHY configuration for > 148.5 MHz 1f1372206e0b drm/sun4i: Fix sun8i HDMI PHY clock initialization 3a20515c3c44 drm/vmwgfx: Don't send drm sysfs hotplug events on initial master set 1715a46322fa drm/tegra: gem: Fix CPU-cache maintenance for BO's allocated using get_pages() 132137d1bfa1 gcc-plugins: Fix build failures under Darwin host 873041930dab Revert "lockd: Show pid of lockd for remote locks" 297a251062c0 CIFS: cifs_read_allocate_pages: don't iterate through whole page array on ENOMEM 32d57c0c063c cifs: fix memory leak of pneg_inbuf on -EOPNOTSUPP ioctl case f6a39f877feb staging: wlan-ng: fix adapter initialization failure 27a4b6c8c1cf staging: vc04_services: prevent integer overflow in create_pagelist() 3078e80b03c8 serial: sh-sci: disable DMA for uart_console ff818b449a5b vt/fbcon: deinitialize resources in visual_init() after failed memory allocation 6e322a9e42cd evm: check hash algorithm passed to init_desc() f85b87a9a2a8 ima: show rules with IMA_INMASK correctly 21158982f6b7 doc: Cope with Sphinx logging deprecations c0742228bba6 doc: Cope with the deprecation of AutoReporter 301b18edbf56 docs: Fix conf.py for Sphinx 2.0 871953434bd9 arm64: Fix the arm64_personality() syscall wrapper redirection 6f8d26270ce3 kernel/signal.c: trace_signal_deliver when signal_group_exit 8b057ad846c5 memcg: make it work on sparse non-0-node systems 4e29e2ecf186 tty: max310x: Fix external crystal register setup a071517b85cc tty: serial: msm_serial: Fix XON/XOFF bb03290431bc i2c: synquacer: fix synquacer_i2c_doxfer() return value d2d8f6401254 i2c: mlxcpld: Fix wrong initialization order in probe 88ad86b80782 drm/nouveau/i2c: Disable i2c bus access after ->fini() 6a2fbec70766 KVM: s390: Do not report unusabled IDs via KVM_CAP_MAX_VCPU_ID 3834630ef4d3 ALSA: hda/realtek - Improve the headset mic for Acer Aspire laptops 9cfd6c36759b ALSA: hda/realtek - Set default power save node to 0 eb2eeec920fb ALSA: line6: Assure canceling delayed work at disconnection ca221cf9ab6f powerpc/perf: Fix MMCRA corruption by bhrb_filter 55a94d81f536 KVM: PPC: Book3S HV: XIVE: Do not clear IRQ data of passthrough interrupts badbe1abbd59 s390/crypto: fix possible sleep during spinlock aquired 83c874cf6861 s390/crypto: fix gcm-aes-s390 selftest failures 5dede5c9e605 iio: adc: ti-ads8688: fix timestamp is not updated in buffer 06c5ec6fd0b1 iio: dac: ds4422/ds4424 fix chip verification 8a652fd142c3 Btrfs: incremental send, fix file corruption when no-holes feature is enabled a81071110d25 Btrfs: fix fsync not persisting changed attributes of a directory 37fe038328a2 Btrfs: fix race updating log root item during fsync 7301bbeae98f Btrfs: fix wrong ctime and mtime of a directory after log replay da32e0303d5f tracing: Avoid memory leak in predicate_parse() 9756c7e0cdc7 scsi: zfcp: fix to prevent port_remove with pure auto scan LUNs (only sdevs) e8bd0dffe816 scsi: zfcp: fix missing zfcp_port reference put on -EBUSY from port_remove c18a0ecc411a brcmfmac: fix NULL pointer derefence during USB disconnect 1f64751af190 media: smsusb: better handle optional alignment e6df98cafc9c media: usb: siano: Fix false-positive "uninitialized variable" warning 35b104456652 media: usb: siano: Fix general protection fault in smsusb b4c1b4a61f78 USB: rio500: fix memory leak in close after disconnect d2d93077bac3 USB: rio500: refuse more than one device at a time d8c1703932bc USB: Add LPM quirk for Surface Dock GigE adapter d27ea5e9eb4a USB: sisusbvga: fix oops in error path of sisusb_probe a43bb9e83155 USB: Fix slab-out-of-bounds write in usb_get_bos_descriptor 2fc485b0008e usbip: usbip_host: fix stub_dev lock context imbalance regression e3724d69b732 usbip: usbip_host: fix BUG: sleeping function called from invalid context 9690202da222 usb: xhci: avoid null pointer deref when bos field is NULL 8e30ba04a20a xhci: Convert xhci_handshake() to use readl_poll_timeout_atomic() 32adfa3d92e7 xhci: Use %zu for printing size_t type eebcff780603 xhci: update bounce buffer with correct sg num 759766bf2aec include/linux/bitops.h: sanitize rotate primitives 89156c1005d2 sparc64: Fix regression in non-hypervisor TLB flush xcall e109a984cf38 Linux 4.19.48 ca75a9fc5ba4 tipc: fix modprobe tipc failed after switch order of device registration ab69a2304210 Revert "tipc: fix modprobe tipc failed after switch order of device registration" 99dcf4a4dd2e xen/pciback: Don't disable PCI_COMMAND on PCI device reset. 0276ebf16675 jump_label: move 'asm goto' support test to Kconfig 753328727cab compiler.h: give up __compiletime_assert_fallback() fd45cd4530eb include/linux/compiler*.h: define asm_volatile_goto 2bb9c7e42836 crypto: vmx - ghash: do nosimd fallback manually fb6cf4f3704b net/tls: don't ignore netdev notifications if no TLS features fb69403ec2ff net/tls: fix state removal with feature flags off 27d8ad1d8ea9 bnxt_en: Fix aggregation buffer leak under OOM condition. a1a926fc68c7 net: stmmac: dma channel control register need to be init first 1db0bcc27c78 net/mlx5e: Disable rxhash when CQE compress is enabled e0d95806b05d net/mlx5: Allocate root ns memory using kzalloc to match kfree 4421d31753ec tipc: Avoid copying bytes beyond the supplied data 06442f45e5cf net/mlx5: Avoid double free in fs init error unwinding path fb836d014e37 usbnet: fix kernel crash after disconnect 191989817df9 net: stmmac: fix reset gpio free missing 6ab968473140 net: sched: don't use tc_action->order during action dump 33f737a4307d net: phy: marvell10g: report if the PHY fails to boot firmware c2d4b2feb057 net: mvpp2: fix bad MVPP2_TXQ_SCHED_TOKEN_CNTR_REG queue value de9d6a730cc0 net: mvneta: Fix err code path of probe 39fd0dc4a556 net-gro: fix use-after-free read in napi_gro_frags() 4294c3475035 net: fec: fix the clk mismatch in failed_reset path 566dc17b993d net: dsa: mv88e6xxx: fix handling of upper half of STATS_TYPE_PORT 2d04f32c8861 llc: fix skb leak in llc_build_and_send_ui_pkt() 442176668ecf ipv6: Fix redirect with VRF ed753b394321 ipv6: Consider sk_bound_dev_if when binding a raw socket to an address 46702dd5d504 ipv4/igmp: fix build error if !CONFIG_IP_MULTICAST e9f94e480f3e ipv4/igmp: fix another memory leak in igmpv3_del_delrec() 07480da0c8a1 inet: switch IP ID generator to siphash 9c9144e78996 cxgb4: offload VLAN flows regardless of VLAN ethtype 3cde0a250845 bonding/802.3ad: fix slave link initialization transition states 0df021b2e841 Linux 4.19.47 26433652f0e4 NFS: Fix a double unlock from nfs_match,get_client 1a686177acde drm/sun4i: dsi: Enforce boundaries on the start delay 6956c0e3cf33 vfio-ccw: Prevent quiesce function going into an infinite loop 476e87eb7f78 drm/sun4i: dsi: Change the start delay calculation 00734a9e7329 drm: Wake up next in drm_read() chain if we are forced to putback the event d6dea92a4862 drm/drv: Hold ref on parent device during drm_device lifetime 473bc1af7a22 drm/v3d: Handle errors from IRQ setup. b9c8f86f50ac ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM cc211863ac79 spi: Fix zero length xfer bug 8f7f333af9f6 spi: imx: stop buffer overflow in RX FIFO flush 3ae1817a29e7 spi: rspi: Fix sequencer reset during initialization 676aec9b8f11 drm/omap: dsi: Fix PM for display blank with paired dss_pll calls bdc095631d50 spi : spi-topcliff-pch: Fix to handle empty DMA buffers 98eb1b80fea7 scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices 755dc83020a5 media: saa7146: avoid high stack usage with clang 584e06c0ed20 scsi: lpfc: Fix fc4type information for FDMI aecb245fdd90 scsi: lpfc: Fix FDMI manufacturer attribute value 4192c77f50dc media: vimc: zero the media_device on probe fd1ade15f299 media: go7007: avoid clang frame overflow warning with KASAN 6d16d2e130e4 media: gspca: do not resubmit URBs when streaming has stopped acf41fb8df45 media: vimc: stream: fix thread state before sleep aeea87865aa7 scsi: ufs: fix a missing check of devm_reset_control_get 62e79f4c6bc0 drm/amd/display: Set stream->mode_changed when connectors change fc5293ab6c48 drm/amd/display: Fix Divide by 0 in memory calculations 91435fce9b24 media: staging: davinci_vpfe: disallow building with COMPILE_TEST f51db48c1220 media: m88ds3103: serialize reset messages in m88ds3103_set_frontend e93677055a5a media: dvbsky: Avoid leaking dvb frontend ab934f0ac158 media: si2165: fix a missing check of return value 561bd5615604 igb: Exclude device from suspend direct complete optimization b6bc20249423 tinydrm/mipi-dbi: Use dma-safe buffers for all SPI transfers 5ec9ba494db2 e1000e: Disable runtime PM on CNP+ 495e34e62c3b thunderbolt: property: Fix a NULL pointer dereference 70611b1b81c4 drm/amd/display: fix releasing planes when exiting odm 988dab7f5778 thunderbolt: Fix to check for kmemdup failure 877a202f9b27 thunderbolt: Fix to check return value of ida_simple_get b9291078edce hwrng: omap - Set default quality 6b2d1934d1f9 dmaengine: tegra210-adma: use devm_clk_*() helpers 25204fe6a3f8 batman-adv: allow updating DAT entry timeouts on incoming ARP Replies a2ace9b24387 selinux: avoid uninitialized variable warning c7595096daf9 scsi: lpfc: avoid uninitialized variable warning ac9149bc1402 scsi: qla4xxx: avoid freeing unallocated dma memory 239156e0c04a usb: core: Add PM runtime calls to usb_hcd_platform_shutdown 506b28fb9982 rcuperf: Fix cleanup path for invalid perf_type strings 75a96196d4c4 x86/mce: Handle varying MCA bank counts aa7919e37fee rcutorture: Fix cleanup path for invalid torture_type strings 3d036cbaab92 x86/mce: Fix machine_check_poll() tests for error types 3c2b1ae4410c overflow: Fix -Wtype-limits compilation warnings 19ae270d1ce0 tty: ipwireless: fix missing checks for ioremap 3392cc5f3ce3 virtio_console: initialize vtermno value for ports e819d4a13688 scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check dc0f37b780e9 timekeeping: Force upper bound for setting CLOCK_REALTIME ee40c8a3efc2 thunderbolt: Fix to check the return value of kmemdup c8eecd658220 thunderbolt: property: Fix a missing check of kzalloc 1de8f9653585 efifb: Omit memory map check on legacy boot 356f05fdd490 media: gspca: Kill URBs on USB device disconnect 2a9331ced525 media: wl128x: prevent two potential buffer overflows 6b5693f20dd8 media: video-mux: fix null pointer dereferences bc75207a54dd kobject: Don't trigger kobject_uevent(KOBJ_REMOVE) twice. ba906246e38b spi: tegra114: reset controller on probe 2cd236c27157 HID: logitech-hidpp: change low battery level threshold from 31 to 30 percent fb2c65b4a279 cxgb3/l2t: Fix undefined behaviour 71efe4c70afc ASoC: fsl_utils: fix a leaked reference by adding missing of_node_put b6b7a78cf997 ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put 69f67200cfd6 HID: core: move Usage Page concatenation to Main item 256f63c6806d sh: sh7786: Add explicit I/O cast to sh7786_mm_sel() 8ea279184619 RDMA/hns: Fix bad endianess of port_pd variable 65ec64f28a88 chardev: add additional check for minor range overlap fc242af86d07 x86/uaccess: Fix up the fixup 5007453c7144 x86/ia32: Fix ia32_restore_sigcontext() AC leak 4614b0bb8f65 x86/uaccess, signal: Fix AC=1 bloat 1a3188d737ce x86/uaccess, ftrace: Fix ftrace_likely_update() vs. SMAP da30c277c4fd wil6210: fix return code of wmi_mgmt_tx and wmi_mgmt_tx_ext e667aef54f8a arm64: cpu_ops: fix a leaked reference by adding missing of_node_put e3980dbef43a drm/panel: otm8009a: Add delay at the end of initialization cb5946e5c86a scsi: ufs: Avoid configuring regulator with undefined voltage range 31318d4ae3ae scsi: ufs: Fix regulator load and icc-level configuration c9e44a1a734a rtlwifi: fix potential NULL pointer dereference bd2ab045df4a rtc: xgene: fix possible race condition e29aba14e8db brcmfmac: fix Oops when bringing up interface during USB disconnect 8a412ed97184 brcmfmac: fix race during disconnect when USB completion is in progress ce55a5941ed4 brcmfmac: fix WARNING during USB disconnect in case of unempty psq 4b2f0ebc306b brcmfmac: convert dev_init_lock mutex to completion 59ec3ad30ab8 b43: shut up clang -Wuninitialized variable warning 7c9d97f3b11d brcmfmac: fix missing checks for kmemdup a27ce4840f89 mwifiex: Fix mem leak in mwifiex_tm_cmd 7be8d4251bf7 rtlwifi: fix a potential NULL pointer dereference f8f54929bd23 selftests/bpf: ksym_search won't check symbols exists ef8e5a78406d iio: adc: ti-ads7950: Fix improper use of mlock 36a59a036896 iio: common: ssp_sensors: Initialize calculated_time in ssp_common_process_data dd106d198dee iio: hmc5843: fix potential NULL pointer dereferences d7c773412f4b iio: ad_sigma_delta: Properly handle SPI bus locking vs CS assertion ce59174d4e69 drm/pl111: fix possible object reference leak e758471be038 x86/build: Keep local relocations with ld.lld 2b18febc8cdc block: sed-opal: fix IOC_OPAL_ENABLE_DISABLE_MBR 9d8b1d5db780 cpufreq: kirkwood: fix possible object reference leak f9ead9f4d145 cpufreq: pmac32: fix possible object reference leak 513a7f8e8929 cpufreq/pasemi: fix possible object reference leak 9612f4040f05 cpufreq: ppc_cbe: fix possible object reference leak f8a91441b2a1 qmi_wwan: Add quirk for Quectel dynamic config 1b6141cd052b selftests: cgroup: fix cleanup path in test_memcg_subtree_control() 9c594cae285c s390: cio: fix cio_irb declaration c3c614380548 s390/mm: silence compiler warning when compiling without CONFIG_PGSTE a07de9b98fbf x86/microcode: Fix the ancient deprecated microcode loading method a3713f2cebdc s390: zcrypt: initialize variables before_use e91146984939 clk: rockchip: Make rkpwm a critical clock on rk3288 c9aa87e5f345 extcon: arizona: Disable mic detect if running when driver is removed 822342658459 clk: rockchip: Fix video codec clocks on rk3288 cbaab786ee67 PM / core: Propagate dev->power.wakeup_path when no callbacks d8a36f841803 drm/amdgpu: fix old fence check in amdgpu_fence_emit e107bc69cc59 mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support 019ca0bf8d91 mmc: sdhci-of-esdhc: add erratum A-009204 support 80118cba1f78 mmc: sdhci-of-esdhc: add erratum eSDHC5 support fa291e89997a mmc_spi: add a status check for spi_sync_locked 059c2f5326a0 mmc: core: make pwrseq_emmc (partially) support sleepy GPIO controllers aa06e61237ab scsi: libsas: Do discovery on empty PHY to update PHY info 4e98f3b11a7a hwmon: (f71805f) Use request_muxed_region for Super-IO accesses 8cfe000d0a69 hwmon: (pc87427) Use request_muxed_region for Super-IO accesses 48b31e8a025f hwmon: (smsc47b397) Use request_muxed_region for Super-IO accesses e7dbe597ea55 hwmon: (smsc47m1) Use request_muxed_region for Super-IO accesses fbdce79e7c3b hwmon: (vt1211) Use request_muxed_region for Super-IO accesses 1cd4902d9088 perf/x86/intel/cstate: Add Icelake support ea6ff1bb3d00 perf/x86/intel/rapl: Add Icelake support 3a9a1fd14b27 perf/x86/msr: Add Icelake support 9754bab2057e RDMA/cxgb4: Fix null pointer dereference on alloc_skb failure b0f6ac8c81e0 arm64: vdso: Fix clock_getres() for CLOCK_REALTIME 9082058b549a ACPI/IORT: Reject platform device creation on NUMA node mapping failure 4a9c84499e11 i40e: don't allow changes to HW VLAN stripping on active port VLANs e3e8cdacdcce i40e: Able to add up to 16 MAC filters on an untrusted VF 267b3c6b3f45 phy: mapphone-mdm6600: add gpiolib dependency 3ecda6884660 phy: sun4i-usb: Make sure to disable PHY0 passby for peripheral mode 63b4f89d03c2 drm: etnaviv: avoid DMA API warning when importing buffers f843f848c567 x86/irq/64: Limit IST stack overflow check to #DB stack 97abdfa81f1c USB: core: Don't unbind interfaces following device reset failure 3711c9885278 s390/qeth: handle error from qeth_update_from_chp_desc() 5d5652b51c87 thunderbolt: Take domain lock in switch sysfs attribute callbacks afee27f38253 irq_work: Do not raise an IPI when queueing work on the local CPU dee2faf0ac0c drm/msm: a5xx: fix possible object reference leak e0b75a798651 staging: vc04_services: handle kzalloc failure 355673f80835 sched/core: Handle overflow in cpu_shares_write_u64 7053046e350f sched/rt: Check integer overflow at usec to nsec conversion 925275d0cc5d sched/core: Check quota and period overflow at usec to nsec conversion 4e4d5cea79a7 cgroup: protect cgroup->nr_(dying_)descendants by css_set_lock 944c58523731 random: add a spinlock_t to struct batched_entropy 6fa6381a2da0 random: fix CRNG initialization when random.trust_cpu=1 fec8a09f79ec powerpc/64: Fix booting large kernels with STRICT_KERNEL_RWX f488832c2099 powerpc/numa: improve control of topology updates ad393793794e block: fix use-after-free on gendisk 30f8da71c730 iio: adc: stm32-dfsdm: fix unmet direct dependencies detected 11ad52770a42 media: pvrusb2: Prevent a buffer overflow a90ce66af211 media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() 2096b3ba3274 media: stm32-dcmi: fix crash when subdev do not expose any formats 6c21fa849a5a audit: fix a memory leak bug 9fcfaab61420 media: ov2659: make S_FMT succeed even if requested format doesn't match e3a9d646ecf2 media: au0828: stop video streaming only when last user stops 3ccd89123b67 media: ov6650: Move v4l2_clk_get() to ov6650_video_probe() helper 81a0b6ff0209 media: coda: clear error return value before picture run 83544b04a406 dmaengine: at_xdmac: remove BUG_ON macro in tasklet bfb9e836cf26 perf/arm-cci: Remove broken race mitigation 2d1df7fada2d clk: rockchip: undo several noc and special clocks as critical on rk3288 86a1de9c8d76 pinctrl: samsung: fix leaked of_node references c3933fd4a8ee pinctrl: pistachio: fix leaked of_node references 12e7faac49e2 HID: logitech-hidpp: use RAP instead of FAP to get the protocol version 1eafabe144f4 Bluetooth: hci_qca: Give enough time to ROME controller to bootup. 189b396a2580 mm/uaccess: Use 'unsigned long' to placate UBSAN warnings on older GCC versions f46ae1cd7cec x86/mm: Remove in_nmi() warning from 64-bit implementation of vmalloc_fault() 3dc1e338ae5f smpboot: Place the __percpu annotation correctly 0fcb3cd5af98 x86/build: Move _etext to actual end of .text 58a0c2194bac vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev 8c1c78109a74 vfio-ccw: Do not call flush_workqueue while holding the spinlock e0d25d17841a RDMA/cma: Consider scope_id while binding to ipv6 ll address 06740892db92 bcache: avoid clang -Wunintialized warning 330b67980381 bcache: add failure check to run_cache_set() for journal replay cd83c78897d5 bcache: fix failure in journal relplay 29b166da7a4e bcache: return error immediately in bch_journal_replay() 8034a6b89990 bcache: avoid potential memleak of list of journal_replay(s) in the CACHE_SYNC branch of run_cache_set e82df5f1e54a crypto: sun4i-ss - Fix invalid calculation of hash end 213e152316ed nvme-rdma: fix a NULL deref when an admin connect times out c24860f40b66 nvme: set 0 capacity if namespace block size exceeds PAGE_SIZE 31de7f1d07b5 net: cw1200: fix a NULL pointer dereference eacec4367998 rsi: Fix NULL pointer dereference in kmalloc 9d54cca8f939 mwifiex: prevent an array overflow c2582f213897 ASoC: fsl_sai: Update is_slave_mode with correct value 67d812fbe303 slimbus: fix a potential NULL pointer dereference in of_qcom_slim_ngd_register 0cbef22f67ba libbpf: fix samples/bpf build failure due to undefined UINT32_MAX ca5b9d63e9b1 mac80211/cfg80211: update bss channel on channel switch 1d057fefa045 dmaengine: pl330: _stop: clear interrupt status cadb16d9e0f3 s390: qeth: address type mismatch warning 99079ceefb7c w1: fix the resume command API 07da741d48c4 sched/nohz: Run NOHZ idle load balancer on HK_FLAG_MISC CPUs 216155aab507 s390/kexec_file: Fix detection of text segment in ELF loader 6697d0b3f5b5 scsi: qedi: Abort ep termination if offload not scheduled bc90af686912 rtc: stm32: manage the get_irq probe defer case 7fd0d9d10e5d rtc: 88pm860x: prevent use-after-free on device remove 0ea8b7cf9436 iwlwifi: pcie: don't crash on invalid RX interrupt bd3d8f4cb956 btrfs: Don't panic when we can't find a root key 431cbaec1287 btrfs: fix panic during relocation after ENOSPC before writeback happens 1084fc9afbe3 Btrfs: fix data bytes_may_use underflow with fallocate due to failed quota reserve 8715ce033eb3 x86/modules: Avoid breaking W^X while loading modules 34f3a58f06da scsi: qla2xxx: Fix hardirq-unsafe locking 6ce116871011 scsi: qla2xxx: Avoid that lockdep complains about unsafe locking in tcm_qla2xxx_close_session() 55b95ce89ce7 scsi: qla2xxx: Fix abort handling in tcm_qla2xxx_write_pending() de3cd35f5195 scsi: qla2xxx: Fix a qla24xx_enable_msix() error path 73026db866db sched/cpufreq: Fix kobject memleak 0fe8ed038e88 powerpc/watchdog: Use hrtimers for per-CPU heartbeat efa336f785df arm64: Fix compiler warning from pte_unmap() with -Wunused-but-set-variable 9152b0815430 ARM: vdso: Remove dependency with the arch_timer driver internals 2d2017675b1a media: stm32-dcmi: return appropriate error codes during probe 5744fd7fa1d1 drm/nouveau/bar/nv50: ensure BAR is mapped 07bb9a71ee27 ACPI / property: fix handling of data_nodes in acpi_get_next_subnode() c00f0fbd2e85 brcm80211: potential NULL dereference in brcmf_cfg80211_vndr_cmds_dcmd_handler() 57667dc86bef spi: pxa2xx: fix SCR (divisor) calculation 5cf668cf1110 ASoC: imx: fix fiq dependencies b8bd069f855f powerpc/perf: Fix loop exit condition in nest_imc_event_init 1a6767f5f152 powerpc/boot: Fix missing check of lseek() return value 741853944fea powerpc/perf: Return accordingly on invalid chip-id in 49c0fa1f35c1 ASoC: hdmi-codec: unlock the device on startup errors 663411719895 usb: dwc3: move synchronize_irq() out of the spinlock protected block 1a7be0fe0777 usb: dwc2: gadget: Increase descriptors count for ISOC's fc8c5907d8fc ASoC: Intel: kbl_da7219_max98357a: Map BTN_0 to KEY_PLAYPAUSE b676f6c0b552 pinctrl: zte: fix leaked of_node references 8603d49906b2 Bluetooth: Ignore CC events not matching the last HCI command 6d9cfab853ca hv_netvsc: fix race that may miss tx queue wakeup 83eaba87e73e net: ena: gcc 8: fix compilation warning 19c2dd5025bb dmaengine: tegra210-dma: free dma controller in remove() 7ffd692bfce7 bpftool: exclude bash-completion/bpftool from .gitignore pattern 6d9f8909e540 selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c f3ed010f2bfe tools/bpf: fix perf build error with uClibc (seen on ARC) d96a6c31e42e mmc: core: Verify SD bus width c4b51dbcccfc gfs2: Fix occasional glock use-after-free fa4aaa09d17e IB/hfi1: Fix WQ_MEM_RECLAIM warning 36296b0034ae NFS: make nfs_match_client killable 506961a7a4ef cxgb4: Fix error path in cxgb4_init_module bac852089281 gfs2: Fix lru_count going negative 06a67c0f4abb Revert "btrfs: Honour FITRIM range constraints during free space trim" 7c2bcb3cca03 acct_on(): don't mess with freeze protection 7d562a90a88b at76c50x-usb: Don't register led_trigger if usb_register_driver failed 363aa80a51c9 batman-adv: mcast: fix multicast tt/tvlv worker locking 003e2d74c554 bpf: devmap: fix use-after-free Read in __dev_map_entry_free 3de79cb0ceb2 ssb: Fix possible NULL pointer dereference in ssb_host_pcmcia_exit c8275cbe2bd8 media: vivid: use vfree() instead of kfree() for dev->bitmap_cap 0595e0d173f0 media: vb2: add waiting_in_dqbuf flag aec118ecf579 media: serial_ir: Fix use-after-free in serial_ir_init_module bdf3da72ae79 media: cpia2: Fix use-after-free in cpia2_exit de2d09ebff2f fbdev: fix WARNING in __alloc_pages_nodemask bug 86c43c40fe05 ovl: relax WARN_ON() for overlapping layers use case 9c0339dd381d btrfs: honor path->skip_locking in backref code 2eefb4a3894e arm64: errata: Add workaround for Cortex-A76 erratum #1463225 8783c4128c37 brcmfmac: add subtype check for event handling in data path cc240e057c1d brcmfmac: assure SSID length from firmware is limited 43caa29c99db bpf: add bpf_jit_limit knob to restrict unpriv allocations cc1afc1050a9 NFSv4.1 fix incorrect return value in copy_file_range e1eed6928b3e NFSv4.2 fix unnecessary retry in nfs4_copy_file_range 0bad28e92ced fbdev: fix divide error in fb_var_to_videomode b8304d918c02 udlfb: fix some inconsistent NULL checking 94e1f96667b4 btrfs: sysfs: don't leak memory when failing add fsid 946ad2ecef61 btrfs: sysfs: Fix error path kobject memory leak 92f907d7d63b Btrfs: fix race between ranged fsync and writeback of adjacent ranges 4f9a774dda97 Btrfs: avoid fallback to transaction commit during fsync of files with holes 7ec747c811ab Btrfs: do not abort transaction at btrfs_update_root() after failure to COW path ce21e6586eec btrfs: don't double unlock on error in btrfs_punch_hole fdc78eedc54d gfs2: Fix sign extension bug in gfs2_update_stats 53cd8ae3eeb1 arm64/iommu: handle non-remapped addresses in ->mmap and ->get_sgtable 9c15fff28194 arm64/kernel: kaslr: reduce module randomization range to 2 GB ee6d3eb31112 libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead 709a93054118 kvm: svm/avic: fix off-by-one in checking host APIC ID 5b69ceee2196 mmc: sdhci-iproc: Set NO_HISPD bit to fix HS50 data hold time problem 227e01537baf mmc: sdhci-iproc: cygnus: Set NO_HISPD bit to fix HS50 data hold time problem 792d65fc49a7 crypto: vmx - CTR: always increment IV as quadword 136b8cef4e4f Revert "scsi: sd: Keep disk read-only when re-reading partition" ac7480a5b504 sbitmap: fix improper use of smp_mb__before_atomic() b78255d6cffb bio: fix improper use of smp_mb__before_atomic() 432ec4fa6cd2 KVM: x86: fix return value for reserved EFER 70d33cce97f0 f2fs: Fix use of number of devices 5220582c427b ext4: wait for outstanding dio during truncate in nojournal mode 71e430fd593b ext4: do not delete unlinked inode from orphan list on failed truncate 1d84eb87efce x86: Hide the int3_emulate_call/jmp functions from UML 8b2fc0058255 Linux 4.19.46 fcac71697a15 fbdev: sm712fb: fix memory frequency by avoiding a switch/case fallthrough 107e215c2962 bpf, lru: avoid messing with eviction heuristics upon syscall lookup 2bb3c5470aaf bpf: add map_lookup_elem_sys_only for lookups from syscall side 3ded3aaa4aa8 bpf: relax inode permission check for retrieving bpf program c33563e9ec87 Revert "selftests/bpf: skip verifier tests for unsupported program types" 90110ffd86ae driver core: Postpone DMA tear-down until after devres release for probe failure 430908054540 md/raid: raid5 preserve the writeback action after the parity check 3d25b7f5c3be Revert "Don't jump to compute_result state from check_result state" a0b1dde1e686 perf/x86/intel: Fix race in intel_pmu_disable_event() 7aea2f94cc64 perf bench numa: Add define for RUSAGE_THREAD if not present a06fdd99a339 ufs: fix braino in ufs_get_inode_gid() for solaris UFS flavour f037116fe05b x86/mm/mem_encrypt: Disable all instrumentation for early SME setup 290da8e79c83 sched/cpufreq: Fix kobject memleak 2da19da7abb8 iwlwifi: mvm: check for length correctness in iwl_mvm_create_skb() 7341daa0548e qmi_wwan: new Wistron, ZTE and D-Link devices c1528193f643 bpf: Fix preempt_enable_no_resched() abuse aea54f613534 power: supply: sysfs: prevent endless uevent loop with CONFIG_POWER_SUPPLY_DEBUG a1251522a522 KVM: arm/arm64: Ensure vcpu target is unset on reset failure 36ae546a0046 net: ieee802154: fix missing checks for regmap_update_bits 9c045d8c9739 mac80211: Fix kernel panic due to use of txq after free a0a49d8712de x86: kvm: hyper-v: deal with buggy TLB flush requests from WS2012 a469646862aa PCI: Fix issue with "pci=disable_acs_redir" parameter being ignored b21ca2769b0f apparmorfs: fix use-after-free on symlink traversal 9a0467e1f671 securityfs: fix use-after-free on symlink traversal 900bf351dd84 power: supply: cpcap-battery: Fix division by zero b7771cb0143b clk: sunxi-ng: nkmp: Avoid GENMASK(-1, 0) a654a73de29f xfrm4: Fix uninitialized memory read in _decode_session4 6faa62060624 xfrm: Honor original L3 slave device in xfrmi policy lookup 3716c2625099 esp4: add length check for UDP encapsulation d410ef75886a xfrm: clean up xfrm protocol checks 159269cc6456 vti4: ipip tunnel deregistration fixes. 64f214ce563f xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module c9516503fe53 xfrm: policy: Fix out-of-bound array accesses in __xfrm_policy_unlink fea685000caf fuse: Add FOPEN_STREAM to use stream_open() f9eccf6ca1e0 dm mpath: always free attached_handler_name in parse_path() 9407680a7bb7 dm integrity: correctly calculate the size of metadata area 3b92ff729cb3 dm delay: fix a crash when invalid device is specified 90cc71127a3c dm zoned: Fix zone report handling ff0699a5e5d0 dm cache metadata: Fix loading discard bitset d5c352305d42 PCI: Work around Pericom PCIe-to-PCI bridge Retrain Link erratum b51a033317cd PCI: Factor out pcie_retrain_link() function 7bc992e215c8 PCI: rcar: Add the initialization of PCIe link in resume_noirq() 2e7574982502 PCI/AER: Change pci_aer_init() stub to return void 8c30e1499335 PCI: Init PCIe feature bits for managed host bridge alloc 29d031402718 PCI: Mark Atheros AR9462 to avoid bus reset f4be6b7ee294 PCI: Mark AMD Stoney Radeon R7 GPU ATS as broken 2cf1dce1bfa5 fbdev: sm712fb: fix crashes and garbled display during DPMS modesetting 27968d821368 fbdev: sm712fb: use 1024x768 by default on non-MIPS, fix garbled display f1c97f633375 fbdev: sm712fb: fix support for 1024x768-16 mode b415308ae49a fbdev: sm712fb: fix crashes during framebuffer writes by correctly mapping VRAM 02f89dd99c83 fbdev: sm712fb: fix boot screen glitch when sm712fb replaces VGA 7e1b9659a43a fbdev: sm712fb: fix white screen of death on reboot, don't set CR3B-CR3F b0f08070903d fbdev: sm712fb: fix VRAM detection, don't set SR70/71/74/75 d30768975973 fbdev: sm712fb: fix brightness control on reboot, don't set SR30 702156cd1a9a fbdev/efifb: Ignore framebuffer memmap entries that lack any memory types e738fb38cf2e objtool: Allow AR to be overridden with HOSTAR 9ae0f86ceaa7 MIPS: perf: Fix build with CONFIG_CPU_BMIPS5000 enabled 05fab3457210 perf intel-pt: Fix sample timestamp wrt non-taken branches ba86f8f84fd5 perf intel-pt: Fix improved sample timestamp 3ed850ab2a9c perf intel-pt: Fix instructions sampling rate 5e011f3319fe memory: tegra: Fix integer overflow on tick value calculation fb8c9c900d4e tracing: Fix partial reading of trace event's id file 07b487eb5762 ftrace/x86_64: Emulate call function while updating in breakpoint handler ba246f64b0a5 x86_64: Allow breakpoints to emulate call instructions 01b6fdcecd5a x86_64: Add gap to int3 to allow for call emulation 77ca91441696 ceph: flush dirty inodes before proceeding with remount b18339bc1d05 iommu/tegra-smmu: Fix invalid ASID bits on Tegra30/114 a9676c96e7e0 ovl: fix missing upper fs freeze protection on copy up for ioctl 979d2433b873 fuse: honor RLIMIT_FSIZE in fuse_file_fallocate a452f733f93e fuse: fix writepages on 32bit 42f59b83f0cf udlfb: introduce a rendering mutex fb36a97654a7 udlfb: fix sleeping inside spinlock 1b8c955691d4 udlfb: delete the unused parameter for dlfb_handle_damage 3487804cf6dc clk: rockchip: fix wrong clock definitions for rk3328 fe082b99d57b clk: mediatek: Disable tuner_en before change PLL rate 5bfba9529cea clk: tegra: Fix PLLM programming on Tegra124+ when PMC overrides divider 1a7adc2edb98 clk: hi3660: Mark clk_gate_ufs_subsys as critical 04f34b76368f PNFS fallback to MDS if no deviceid found d3dd6057d2d6 NFS4: Fix v4.0 client state corruption when mount 5e7f9e905ff8 media: imx: Clear fwnode link struct for each endpoint iteration ef12f5b54da4 media: imx: csi: Allow unknown nearest upstream entities 77e178708136 media: ov6650: Fix sensor possibly not detected on probe 86d67dbdf0a0 phy: ti-pipe3: fix missing bit-wise or operator when assigning val 939db6fdbea6 cifs: fix strcat buffer overflow and reduce raciness in smb21_set_oplock_level() a29b8829291e of: fix clang -Wunsequenced for be32_to_cpu() a36430769ee5 p54: drop device reference count if fails to enable device 88cfd822f9d0 intel_th: msu: Fix single mode with IOMMU c939121b5435 dcache: sort the freeing-without-RCU-delay mess for good. 10cb519c3e34 md: add mddev->pers to avoid potential NULL pointer dereference 3deaa1dc2f70 md: batch flush requests. 7f6b9285cada Revert "MD: fix lock contention for flush bios" 7928396df91e proc: prevent changes to overridden credentials bbd559ad3ca7 brd: re-enable __GFP_HIGHMEM in brd_insert_page() d9ec75d048d7 stm class: Fix channel bitmap on 32-bit systems 44bc4e8815a4 stm class: Fix channel free in stm output free path 85b94de88046 parisc: Rename LEVEL to PA_ASM_LEVEL to avoid name clash with DRBD code e5621f7e13f6 parisc: Use PA_ASM_LEVEL in boot code 615260c947b4 parisc: Skip registering LED when running in QEMU 9aabffe8c2a6 parisc: Export running_on_qemu symbol for modules b11efd3262ef net/mlx5e: Fix ethtool rxfh commands when CONFIG_MLX5_EN_RXNFC is disabled 79742133aff2 net/mlx5: Imply MLXFW in mlx5_core 9f12f4c922d4 vsock/virtio: Initialize core virtio vsock before registering the driver 4b900077784f tipc: fix modprobe tipc failed after switch order of device registration 4af8a327aeba vsock/virtio: free packets during the socket release 2f7025b0a3b3 tipc: switch order of device registration to fix a crash 2636da604e76 rtnetlink: always put IFLA_LINK for links with a link-netnsid c73ed24c385a ppp: deflate: Fix possible crash in deflate_init e4a6df16b441 nfp: flower: add rcu locks when accessing netdev for tunnels 948cd616504c net: usb: qmi_wwan: add Telit 0x1260 and 0x1261 compositions 3620e546b177 net: test nouarg before dereferencing zerocopy pointers 0495c8b03545 net/mlx4_core: Change the error print to info print 746f8cd570ba net: avoid weird emergency message 466cadba6013 net: Always descend into dsa/ 6bc3240adde5 ipv6: prevent possible fib6 leaks 81a61a95812e ipv6: fix src addr routing with the exception table c3a072597748 Linux 4.19.45 e8816d3bc595 ext4: don't update s_rev_level if not required 6172ae55a187 ext4: fix compile error when using BUFFER_TRACE 953e826e8d0f pstore: Refactor compression initialization fea8b84765a1 pstore: Allocate compression during late_initcall() f4bf101be366 pstore: Centralize init/exit routines 627bb2d93b4d iov_iter: optimize page_copy_sane() 866f011181ff libnvdimm/namespace: Fix label tracking error 756eda9bc8b7 xen/pvh: set xen_domain_type to HVM in xen_pvh_init 98bdd33883db kbuild: turn auto.conf.cmd into a mandatory include file 38f114887ca4 KVM: lapic: Busy wait for timer to expire when using hv_timer 3b5ea2df6cf6 KVM: x86: Skip EFER vs. guest CPUID checks for host-initiated writes 5b8567682489 jbd2: fix potential double free 95482af27161 ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug e0e1dc65bb13 ALSA: hda/realtek - Fixup headphone noise via runtime suspend ae3155123704 ALSA: hda/realtek - Corrected fixup for System76 Gazelle (gaze14) 316063bf7d11 ext4: avoid panic during forced reboot due to aborted journal c19db366c0a8 ext4: fix use-after-free in dx_release() 0db24122bd7f ext4: fix data corruption caused by overlapping unaligned and aligned IO 25d010f4e0ec ext4: zero out the unused memory region in the extent tree block c907ce3fd552 tty: Don't force RISCV SBI console as preferred console 986d3453bee4 fs/writeback.c: use rcu_barrier() to wait for inflight wb switches going into workqueue when umount a80da82d0840 crypto: ccm - fix incompatibility between "ccm" and "ccm_base" f6de0a3b1e66 ipmi:ssif: compare block number correctly for multi-part return messages 88681649ed8c bcache: never set KEY_PTRS of journal key to 0 in journal_reclaim() ecfc882f6441 bcache: fix a race between cache register and cacheset unregister 8a8f671b3dad Btrfs: do not start a transaction at iterate_extent_inodes() 0388d45afc50 Btrfs: do not start a transaction during fiemap 74ca0a7671cc Btrfs: send, flush dellaloc in order to avoid data loss 8b13bb911f0c btrfs: Honour FITRIM range constraints during free space trim 87dcf0c61985 btrfs: Correctly free extent buffer in case btree_read_extent_buffer_pages fails d8925a1fee71 btrfs: Check the first key and level for cached extent buffer 45123ae534e0 ext4: fix ext4_show_options for file systems w/o journal f795247578aa ext4: actually request zeroing of inode table after grow 2a18c9c76718 ext4: fix use-after-free race with debug_want_extra_isize b12a8d80a46e ext4: avoid drop reference to iloc.bh twice f0f805f8b9e7 ext4: ignore e_value_offs for xattrs with value-in-ea-inode 71478ef67d7c ext4: make sanity check in mballoc more strict 001fe0dab4ea jbd2: check superblock mapped prior to committing 0fd2df64f142 tty/vt: fix write/write race in ioctl(KDSKBSENT) handler d90824ecb887 tty: vt.c: Fix TIOCL_BLANKSCREEN console blanking if blankinterval == 0 6a01793e0763 mtd: spi-nor: intel-spi: Avoid crossing 4K address boundary on read/write dc6d69bde829 mfd: max77620: Fix swapped FPS_PERIOD_MAX_US values 5185672f2acf mfd: da9063: Fix OTP control register names to match datasheets for DA9063/63L 770e46b38ebe ACPI: PM: Set enable_for_wake for wakeup GPEs during suspend-to-idle 8bae43985571 userfaultfd: use RCU to free the task struct when fork fails 3574bc98e2fe ocfs2: fix ocfs2 read inode data panic in ocfs2_iget a3ccc156f365 hugetlb: use same fault hash key for shared and private mappings 0b16b09a723e mm/hugetlb.c: don't put_page in lock of hugetlb_lock 58db3813680e mm/huge_memory: fix vmf_insert_pfn_{pmd, pud}() crash, handle unaligned addresses f580a54bbd52 mm/mincore.c: make mincore() more conservative 681f3695d514 crypto: ccree - handle tee fips error during power management resume 4fb3d87ee7b7 crypto: ccree - add function to handle cryptocell tee fips error 65f5c14a6011 crypto: ccree - HOST_POWER_DOWN_EN should be the last CC access during suspend 1a4fc3d29632 crypto: ccree - pm resume first enable the source clk 120ab825c6fd crypto: ccree - don't map AEAD key and IV on stack ca687cdb6159 crypto: ccree - use correct internal state sizes for export 766121a0a798 crypto: ccree - don't map MAC key on stack 7560c0adad34 crypto: ccree - fix mem leak on error path 642de1c00a14 crypto: ccree - remove special handling of chained sg 1bfceb375034 bpf, arm64: remove prefetch insn in xadd mapping f3714257c422 ASoC: codec: hdac_hdmi add device_link to card device 975ef5c2f6ca ASoC: fsl_esai: Fix missing break in switch statement df9f111db871 ASoC: RT5677-SPI: Disable 16Bit SPI Transfers 7295359bd6ac ASoC: max98090: Fix restore of DAPM Muxes e13bac4031eb ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) d33f6063b7c3 ALSA: hda/realtek - EAPD turn on later 4ac6316a7c0f ALSA: hda/hdmi - Consider eld_valid when reporting jack event 8c827cda2864 ALSA: hda/hdmi - Read the pin sense from register when repolling 30dda277333e ALSA: usb-audio: Fix a memory leak bug 741e3efd8174 ALSA: line6: toneport: Fix broken usage of timer for delayed execution 003cf675eb07 mmc: core: Fix tag set memory leak d42d342022b1 crypto: arm64/aes-neonbs - don't access already-freed walk.iv 69b9d32d5139 crypto: arm/aes-neonbs - don't access already-freed walk.iv b7d2adfd0512 crypto: rockchip - update IV buffer to contain the next IV 9a61ab689867 crypto: gcm - fix incompatibility between "gcm" and "gcm_base" 63efe31cf544 crypto: arm64/gcm-aes-ce - fix no-NEON fallback code e7fd8a2862e0 crypto: x86/crct10dif-pcl - fix use via crypto_shash_digest() 7a19a4bef218 crypto: crct10dif-generic - fix use via crypto_shash_digest() aabf86f24d9f crypto: skcipher - don't WARN on unprocessed data after slow walk step 66f5de68cb61 crypto: vmx - fix copy-paste error in CTR mode 07d677ae4db4 crypto: ccp - Do not free psp_master when PLATFORM_INIT fails fe632ee5ade8 crypto: chacha20poly1305 - set cra_name correctly 3b5ddd5ea016 crypto: salsa20 - don't access already-freed walk.iv 7a32ad34b889 crypto: crypto4xx - fix cfb and ofb "overran dst buffer" issues c1ec6beac625 crypto: crypto4xx - fix ctr-aes missing output IV 2ea1a37d0138 sched/x86: Save [ER]FLAGS on context switch d8d751efec28 arm64: Save and restore OSDLR_EL1 across suspend/resume f273cd16554a arm64: Clear OSDLR_EL1 on CPU boot 26e7d2ad97b9 arm64: compat: Reduce address limit 6d696ceb15a3 arm64: arch_timer: Ensure counter register reads occur with seqlock held 222abad906ba arm64: mmap: Ensure file offset is treated as unsigned 592127e9c1bb power: supply: axp288_fuel_gauge: Add ACEPC T8 and T11 mini PCs to the blacklist 26eb5e7fa08d power: supply: axp288_charger: Fix unchecked return value 921bc15462e2 ARM: exynos: Fix a leaked reference by adding missing of_node_put 6eaeee1e7845 mmc: sdhci-of-arasan: Add DTS property to disable DCMDs. e2c436d9268f ARM: dts: exynos: Fix audio (microphone) routing on Odroid XU3 abea1fb53266 ARM: dts: exynos: Fix interrupt for shared EINTs on Exynos5260 8cf1bbca4467 arm64: dts: rockchip: Disable DCMDs on RK3399's eMMC controller. 7b72ca6312ab objtool: Fix function fallthrough detection b185029f5c41 x86/speculation/mds: Improve CPU buffer clear documentation 393ca9ea37fb x86/speculation/mds: Revert CPU buffer clear on double fault exit 7761dbf58d22 locking/rwsem: Prevent decrement of reader count before increment dafc674bbcb1 Linux 4.19.44 9fa23ea14e8f PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary 76888d135c4e PCI: hv: Add hv_pci_remove_slots() when we unload the driver a47e0054253f PCI: hv: Fix a memory leak in hv_eject_device_work() 4179b8580219 powerpc/booke64: set RI in default MSR 71b20cdb4353 powerpc/powernv/idle: Restore IAMR after idle 69c2b71cb0c1 powerpc/book3s/64: check for NULL pointer in pgd_alloc() e9ec5073c90d drivers/virt/fsl_hypervisor.c: prevent integer overflow in ioctl ee3b53d89967 drivers/virt/fsl_hypervisor.c: dereferencing error pointers in ioctl afa485dc6f17 tipc: fix hanging clients using poll with EPOLLOUT flag 98652e0b0a1b isdn: bas_gigaset: use usb_fill_int_urb() properly 17d8a9ebaa99 tuntap: synchronize through tfiles array instead of tun->numqueues 9c79732f98a8 tuntap: fix dividing by zero in ebpf queue selection 737713e6d835 vrf: sit mtu should not be updated when vrf netdev is the link e38406070729 vlan: disable SIOCSHWTSTAMP in container dfdfad3d188f selinux: do not report error on connect(AF_UNSPEC) 9f51d6f72063 packet: Fix error path in packet_init 2e95eb9c92f7 net: ucc_geth - fix Oops when changing number of buffers in the ring 210057b79e71 net: seeq: fix crash caused by not set dev.parent dfd919285f27 net: macb: Change interrupt and napi enable order in open 68df8383f3ca net: ethernet: stmmac: dwmac-sun8i: enable support of unicast filtering 9284895b7ee6 net: dsa: Fix error cleanup path in dsa_init_module da2e770f0c4a ipv4: Fix raw socket lookup for local traffic 947fec630c41 fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied c7b5e55be825 dpaa_eth: fix SG frame cleanup a79feef32392 bridge: Fix error path for kobject_init_and_add() 9c2cda31196a bonding: fix arp_validate toggling in active-backup mode 0dc9ad4e904d powerpc/64s: Include cpu header db1b4aa651df um: Don't hardcode path as it is architecture dependent 85f347944a6b Don't jump to compute_result state from check_result state ace28a8efdd4 rtlwifi: rtl8723ae: Fix missing break in switch statement d756d1dea670 mwl8k: Fix rate_idx underflow c300c98a94b4 cw1200: fix missing unlock on error in cw1200_hw_scan() 575260507647 x86/kprobes: Avoid kretprobe recursion bug 322a57551d06 nfc: nci: Potential off by one in ->pipes[] array f5e60565e6bd NFC: nci: Add some bounds checking in nci_hci_cmd_received() 21e9515b7d16 net: strparser: partially revert "strparser: Call skb_unclone conditionally" 85b9e8694f9c net/tls: fix the IV leaks e38c6748d1cc mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw workqueue 835ae6cc28d9 mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw ordered workqueue 880a328e197b mlxsw: core: Do not use WQ_MEM_RECLAIM for EMAD workqueue a80f62f781c2 mlxsw: spectrum_switchdev: Add MDB entries in prepare phase fb7c783b3139 net: fec: manage ahb clock in runtime pm c18731c2786c netfilter: nf_tables: add missing ->release_ops() in error path of newrule() 5014aa937422 netfilter: nf_tables: use-after-free in dynamic operations 9965da064e9a usb: typec: Fix unchecked return value 68321994225d mm/memory.c: fix modifying of page protection by insert_pfn() bc3361461fcb net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode 19f4f94fdb2a powerpc/smp: Fix NMI IPI xmon timeout f8bd34d1d399 powerpc/smp: Fix NMI IPI timeout 6a60fb62c82a mm/memory_hotplug.c: drop memory device reference after find_memory_block() fb67c97c4e2f RDMA/hns: Bugfix for mapping user db afc7cebbbb5e Input: synaptics-rmi4 - fix possible double free f621bc1bd7f4 drm/sun4i: Unbind components before releasing DRM and memory 21b71e191bd8 spi: ST ST95HF NFC: declare missing of table 09185e359827 spi: Micrel eth switch: declare missing of table 3835cb5a911f ARM: 8856/1: NOMMU: Fix CCR register faulty initialization when MPU is disabled 521ae4da71cc drm/imx: don't skip DP channel disable for background plane df3a97d197a3 gpu: ipu-v3: dp: fix CSC handling 3a53fa469d60 netfilter: fix nf_l4proto_log_invalid to log invalid packets 5bc3d4491821 selftests/net: correct the return value for run_netsocktests 24b1c849ce9d drm/sun4i: Fix component unbinding and component master deletion 1973df1ec5bc drm/sun4i: Set device driver data at bind time for use in unbind 005325b7f026 s390: ctcm: fix ctcm_new_device error return code ca8648816e3d MIPS: perf: ath79: Fix perfcount IRQ assignment 743a5a951d4d netfilter: nf_tables: prevent shift wrap in nft_chain_parse_hook() 7b115755fb9d netfilter: ctnetlink: don't use conntrack/expect object addresses as id 4e1994ef6365 ipvs: do not schedule icmp errors from tunnels cb9a11d017c6 selftests: netfilter: check icmp pkttoobig errors are set as related 74e9b761fba0 init: initialize jump labels before command line option parsing 6536de8232c8 mm: fix inactive list balancing between NUMA nodes and cgroups 1134736869ef scsi: aic7xxx: fix EISA support ba87f547b0f7 ocelot: Don't sleep in atomic context (irqs_disabled()) 9e4fd5e0b81a ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash 7d4d8683e925 tools lib traceevent: Fix missing equality check for strcmp 0c8afd514df0 KVM: x86: avoid misreporting level-triggered irqs as edge-triggered in tracing d39f3cc71382 KVM: fix spectrev1 gadgets 4074bc379b1f x86/reboot, efi: Use EFI reboot for Acer TravelMate X514-51T 3b51d71365e0 x86/build/lto: Fix truncated .bss with -fdata-sections 8eb64692d6e2 s390/pkey: add one more argument space for debug feature entry e360515f41fc drm/amd/display: If one stream full updates, full update all planes 58be7c109cea afs: Unlock pages for __pagevec_release() 08f2c299b38c qede: fix write to free'd pointer error and double free of ptp 090b74020014 vxge: fix return of a free'd memblock on a failed dma mapping f83beff28048 mISDN: Check address length before reading address family e4525c9d9ada selftests: fib_tests: Fix 'Command line is not complete' errors 7828986b84ba clocksource/drivers/oxnas: Fix OX820 compatible 6a414ef36840 clocksource/drivers/npcm: select TIMER_OF 068d1cce7801 drm/amd/display: extending AUX SW Timeout 2773e7454f4f s390/3270: fix lockdep false positive on view->lock 4c8c9d514917 libnvdimm/pmem: fix a possible OOB access when read and write pmem f2565d0e5277 nl80211: Add NL80211_FLAG_CLEAR_SKB flag for other NL commands 1d918120e37d mac80211: fix memory accounting with A-MSDU aggregation 9d4da01f7d66 cfg80211: Handle WMM rules in regulatory domain intersection 35e2abbaffa2 mac80211: Increase MAX_MSG_LEN bbe1ab38e1a2 mac80211: fix unaligned access in mesh table hash function e28e5055eacd s390/dasd: Fix capacity calculation for large volumes af5b7a150ef8 libnvdimm/btt: Fix a kmemdup failure check f7ab4818f74e HID: input: add mapping for "Toggle Display" key bbdccc170adf HID: input: add mapping for keyboard Brightness Up/Down/Toggle keys dc30867da997 HID: input: add mapping for Expose/Overview key e94f852e2034 libnvdimm/namespace: Fix a potential NULL pointer dereference 5f72e3a021a6 acpi/nfit: Always dump _DSM output payload f07db1f1f54c iio: adc: xilinx: prevent touching unclocked h/w on remove 6400212ae3b6 iio: adc: xilinx: fix potential use-after-free on probe 06d5ea398e55 iio: adc: xilinx: fix potential use-after-free on remove 5640d0781267 USB: serial: fix unthrottle races 4c416eef65a7 virt: vbox: Sanity-check parameter types for hgcm-calls coming from userspace e361ccccdd51 kernfs: fix barrier usage in __kernfs_new_node() f1917f21c8f6 hwmon: (pwm-fan) Disable PWM if fetching cooling data fails 87cc345aefc9 platform/x86: dell-laptop: fix rfkill functionality 381eaca5017f platform/x86: thinkpad_acpi: Disable Bluetooth for some machines efe6802e812b platform/x86: sony-laptop: Fix unintentional fall-through 824c212908b6 bfq: update internal depth state when queue depth changes 3351e9d39947 Linux 4.19.43 b21bde49d386 x86/speculation/mds: Fix documentation typo 8e65568e9d23 Documentation: Correct the possible MDS sysfs values 2e4c54890226 x86/mds: Add MDSUM variant to the MDS documentation 12a0dad799fb x86/speculation/mds: Add 'mitigations=' support for MDS 59a14fb5832c s390/speculation: Support 'mitigations=' cmdline option 74857f69fec5 powerpc/speculation: Support 'mitigations=' cmdline option af5332dd991e x86/speculation: Support 'mitigations=' cmdline option 8cb932aca5d6 cpu/speculation: Add 'mitigations=' cmdline option 7ba793ae7b9f x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off e9ae32266605 x86/speculation/mds: Fix comment b9faa4652867 x86/speculation/mds: Add SMT warning message b3a63d9c7453 x86/speculation: Move arch_smt_update() call to after mitigation decisions f7a119a762ef x86/speculation/mds: Add mds=full,nosmt cmdline option cfaa3d76301e Documentation: Add MDS vulnerability documentation e3803099d2f4 Documentation: Move L1TF to separate directory c50e81fe8a13 x86/speculation/mds: Add mitigation mode VMWERV 8230c2028dce x86/speculation/mds: Add sysfs reporting for MDS 2951067089a3 x86/speculation/mds: Add mitigation control for MDS 4df98b3f3161 x86/speculation/mds: Conditionally clear CPU buffers on idle entry b39dc9a8cced x86/kvm/vmx: Add MDS protection when L1D Flush is not active e4fa775b5606 x86/speculation/mds: Clear CPU buffers on exit to user 1f7c31be1e04 x86/speculation/mds: Add mds_clear_cpu_buffers() de89ff6f1674 x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests aca9e8d8e2ce x86/speculation/mds: Add BUG_MSBDS_ONLY 2e9104aa2633 x86/speculation/mds: Add basic bug infrastructure for MDS 00b76324bd35 x86/speculation: Consolidate CPU whitelists e09450ffa980 x86/msr-index: Cleanup bit defines ca0056d97840 kvm: x86: Report STIBP on GET_SUPPORTED_CPUID 1f1bc8222ce7 x86/cpu: Sanitize FAM6_ATOM naming 34aae15cb179 Documentation/l1tf: Fix small spelling typo Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-07-11linux-yocto: bsp/beaglebone: support qemu -machine virtBruce Ashfield
While we don't normally do a dual h/w and virt BSP (since they tend to have conflicting requirements over time). A minimal overhead option to do this was submitted to linux-yocto. Since it has no impact on the h/w reference, has SDK testing value and can serve as a template on how to do this for other arm boards, it is worth making the configuration available. The original commit log follows: [ If the kernel supports Qemu's virt machine, runqemu works almost for free. The device tree for machine virt is included in Qemu, which simplifies everything quite a bit. This change adds ARCH_VIRT=y and some drivers to the beaglebone kernel configuration which allows to: export MACHINE="beaglebone-yocto" bitbake core-image-minimale runqemu This also works out of an eSDK. Whithout this feature usually two different SDKs need to be compiled and maintained. One SDK is used for development in Qemu, another one is used to develop for the real target hardware. Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-27linux-yocto/5.0: make scsi-debug include scsi core configsBruce Ashfield
Updating the scsi-debug fragment to include the core scsi config options. This allows standalone use of the fragment, since all supporting options will be enabled simply by including the top level config in a BSP. This also removes a configuration warning on qemuarm, since we will no longer have missing / unavailable options during the config audit. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-27linux-yocto/5.0: bsp: add basic xilinx zynqmp supportBruce Ashfield
Zumeng Chen has added core/basic support for the zynqmp that is bootable using the 5.0 and 5.2-rcX kernels. This makes the fragments available for future refinement and factoring. A bootlog follows: ZynqMP> setenv bootargs console=ttyPS0,115200 root=/dev/mmcblk0p3 rw rootwait earlycon=cdns,mmio,0xFF000000 clk_ignore_unused ip=dhcp ZynqMP> tftpboot 0x10000000 Image; tftpboot 0x11800000 dtb; booti 0x10000000 - 0x11800000 Using ethernet@ff0e0000 device Filename 'Image'. Load address: 0x10000000 Loading: ########### 11.3 MiB/s done Bytes transferred = 16378368 (f9ea00 hex) Using ethernet@ff0e0000 device TFTP from server 128.224.162.211; our IP address is 128.224.162.99 Filename 'dtb'. Load address: 0x11800000 Loading: ## 4.7 MiB/s done Bytes transferred = 19746 (4d22 hex) Booting using the fdt blob at 0x11800000 Loading Device Tree to 0000000007ff8000, end 0000000007fffd21 ... OK Starting kernel ... Booting Linux on physical CPU 0x0000000000 [0x410fd034] Linux version 5.2.0-rc3-yoctodev-standard (oe-user@oe-host) (gcc version 9.1.0 (GCC)) #1 SMP PREEMPT Thu Jun 6 00:53:26 UTC 2019 Machine model: ZynqMP ZCU102 Rev1.0 earlycon: cdns0 at MMIO 0x00000000ff000000 (options '') printk: bootconsole [cdns0] enabled efi: Getting EFI parameters from FDT: efi: UEFI not found. cma: Reserved 16 MiB at 0x000000007ec00000 psci: probing for conduit method from DT. psci: PSCIv1.1 detected in firmware. psci: Using standard PSCI v0.2 function IDs psci: MIGRATE_INFO_TYPE not supported. psci: SMC Calling Convention v1.1 percpu: Embedded 30 pages/cpu s83416 r8192 d31272 u122880 Detected VIPT I-cache on CPU0 CPU features: detected: ARM erratum 845719 Speculative Store Bypass Disable mitigation not required Built 1 zonelists, mobility grouping on. Total pages: 1031940 Kernel command line: console=ttyPS0,115200 root=/dev/mmcblk0p3 rw rootwait earlycon=cdns,mmio,0xFF000000 clk_ignore_unused ip=dhcp Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) software IO TLB: mapped [mem 0x7ac00000-0x7ec00000] (64MB) Memory: 4013572K/4193280K available (10748K kernel code, 1210K rwdata, 2764K rodata, 1216K init, 757K bss, 163324K reserved, 16384K cma-reserved) SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 ftrace: allocating 36121 entries in 142 pages rcu: Preemptible hierarchical RCU implementation. rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. Tasks RCU enabled. rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 GIC: Adjusting CPU interface base to 0x00000000f902f000 GIC: Using split EOI/Deactivate mode random: get_random_bytes called from start_kernel+0x328/0x4c4 with crng_init=0 arch_timer: cp15 timer(s) running at 99.99MHz (phys). clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x170f8de2d3, max_idle_ns: 440795206112 ns sched_clock: 56 bits at 99MHz, resolution 10ns, wraps every 4398046511101ns Console: colour dummy device 80x25 Calibrating delay loop (skipped), value calculated using timer frequency.. 199.98 BogoMIPS (lpj=399960) pid_max: default: 32768 minimum: 301 LSM: Security Framework initializing Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) *** VALIDATE proc *** *** VALIDATE cgroup1 *** *** VALIDATE cgroup2 *** ASID allocator initialised with 32768 entries rcu: Hierarchical SRCU implementation. EFI services will not be available. smp: Bringing up secondary CPUs ... Detected VIPT I-cache on CPU1 CPU1: Booted secondary processor 0x0000000001 [0x410fd034] Detected VIPT I-cache on CPU2 CPU2: Booted secondary processor 0x0000000002 [0x410fd034] Detected VIPT I-cache on CPU3 CPU3: Booted secondary processor 0x0000000003 [0x410fd034] smp: Brought up 1 node, 4 CPUs SMP: Total of 4 processors activated. CPU features: detected: 32-bit EL0 Support CPU features: detected: CRC32 instructions CPU: All CPU(s) started at EL2 alternatives: patching kernel code devtmpfs: initialized clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns futex hash table entries: 1024 (order: 4, 65536 bytes) xor: measuring software checksum speed 8regs : 2360.000 MB/sec 32regs : 2706.000 MB/sec arm64_neon: 2018.000 MB/sec xor: using function: 32regs (2706.000 MB/sec) DMI not present or invalid. NET: Registered protocol family 16 cpuidle: using governor ladder hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. DMA: preallocated 256 KiB pool for atomic allocations ��ɥ��ѭ console [ttyPS0] enabled 0xff000000 (irq = 33, base_baud = 6250000) is a xuartps printk: console [ttyPS0] enabled printk: bootconsole [cdns0] disabled printk: bootconsole [cdns0] disabled ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 34, base_baud = 6250000) is a xuartps HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages raid6: neonx8 gen() 1518 MB/s raid6: neonx8 xor() 1442 MB/s raid6: neonx4 gen() 1471 MB/s raid6: neonx4 xor() 1409 MB/s raid6: neonx2 gen() 1128 MB/s raid6: neonx2 xor() 1175 MB/s raid6: neonx1 gen() 737 MB/s raid6: neonx1 xor() 887 MB/s raid6: int64x8 gen() 1166 MB/s raid6: int64x8 xor() 763 MB/s raid6: int64x4 gen() 983 MB/s raid6: int64x4 xor() 739 MB/s raid6: int64x2 gen() 683 MB/s raid6: int64x2 xor() 601 MB/s raid6: int64x1 gen() 452 MB/s raid6: int64x1 xor() 462 MB/s raid6: using algorithm neonx8 gen() 1518 MB/s raid6: .... xor() 1442 MB/s, rmw enabled raid6: using neon recovery algorithm vgaarb: loaded SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb media: Linux media interface: v0.10 videodev: Linux video capture interface: v2.00 pps_core: LinuxPPS API ver. 1 registered pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> PTP clock support registered EDAC MC: Ver: 3.0.0 FPGA manager framework clocksource: Switched to clocksource arch_sys_counter *** VALIDATE hugetlbfs *** NET: Registered protocol family 2 tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes) TCP established hash table entries: 32768 (order: 6, 262144 bytes) TCP bind hash table entries: 32768 (order: 7, 524288 bytes) TCP: Hash tables configured (established 32768 bind 32768) UDP hash table entries: 2048 (order: 4, 65536 bytes) UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) NET: Registered protocol family 1 RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module. RPC: Registered tcp transport module. RPC: Registered tcp NFSv4.1 backchannel transport module. PCI: CLS 0 bytes, default 64 hw perfevents: no interrupt-affinity property for /pmu, guessing. hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available kprobes: failed to populate blacklist: -22 Please take care of using kprobes. workingset: timestamp_bits=46 max_order=20 bucket_order=0 NFS: Registering the id_resolver key type Key type id_resolver registered Key type id_legacy registered jffs2: version 2.2. �© 2001-2006 Red Hat, Inc. Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) io scheduler mq-deadline registered io scheduler kyber registered nwl-pcie fd0e0000.pcie: Link is DOWN nwl-pcie fd0e0000.pcie: host bridge /amba/pcie@fd0e0000 ranges: nwl-pcie fd0e0000.pcie: MEM 0xe0000000..0xefffffff -> 0xe0000000 nwl-pcie fd0e0000.pcie: MEM 0x600000000..0x7ffffffff -> 0x600000000 nwl-pcie fd0e0000.pcie: PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [bus 00-ff] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] pci_bus 0000:00: root bus resource [mem 0x600000000-0x7ffffffff pref] pci 0000:00:00.0: [10ee:d021] type 01 class 0x060400 pci 0000:00:00.0: PME# supported from D0 D1 D2 D3hot pci 0000:00:00.0: PCI bridge to [bus 01-0c] pcieport 0000:00:00.0: PME: Signaling with IRQ 37 xilinx-zynqmp-dma fd500000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd510000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd520000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd530000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd540000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd550000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd560000.dma: ZynqMP DMA driver Probe success xilinx-zynqmp-dma fd570000.dma: ZynqMP DMA driver Probe success cacheinfo: Unable to detect cache hierarchy for CPU 0 brd: module loaded loop: module loaded ahci-ceva fd0c0000.ahci: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl platform mode ahci-ceva fd0c0000.ahci: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst scsi host0: ahci-ceva scsi host1: ahci-ceva ata1: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x100 irq 31 ata2: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x180 irq 31 libphy: Fixed MDIO Bus: probed CAN device driver interface libphy: MACB_mii_bus: probed Generic PHY ff0e0000.ethernet-ffffffff:0c: attached PHY driver [Generic PHY] (mii_bus:phy_addr=ff0e0000.ethernet-ffffffff:0c, irq=POLL) macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 20 (00:0a:35:04:9a:86) dwc3 fe200000.usb: Failed to get clk 'ref': -2 dwc3 fe200000.usb: Configuration mismatch. dr_mode forced to host xhci-hcd xhci-hcd.0.auto: xHCI Host Controller xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 xhci-hcd xhci-hcd.0.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000000002010010 xhci-hcd xhci-hcd.0.auto: irq 35, io mem 0xfe200000 hub 1-0:1.0: USB hub found hub 1-0:1.0: 1 port detected xhci-hcd xhci-hcd.0.auto: xHCI Host Controller xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. hub 2-0:1.0: USB hub found hub 2-0:1.0: 1 port detected usbcore: registered new interface driver usb-storage rtc_zynqmp ffa60000.rtc: registered as rtc0 pca953x 0-0020: 0-0020 supply vcc not found, using dummy regulator GPIO line 322 (sel0) hogged as output/low GPIO line 323 (sel1) hogged as output/high GPIO line 324 (sel2) hogged as output/high GPIO line 325 (sel3) hogged as output/high pca953x 0-0021: 0-0021 supply vcc not found, using dummy regulator cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 22 cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 23 i2c i2c-0: Added multiplexed i2c bus 2 i2c i2c-0: Added multiplexed i2c bus 3 i2c i2c-0: Added multiplexed i2c bus 4 i2c i2c-0: Added multiplexed i2c bus 5 pca954x 0-0075: registered 4 multiplexed busses for I2C mux pca9544 at24 6-0054: 1024 byte 24c08 EEPROM, writable, 1 bytes/write i2c i2c-1: Added multiplexed i2c bus 6 i2c i2c-7: of_i2c: modalias failure on /amba/i2c@ff030000/i2c-mux@74/i2c@1/clock-generator@36 i2c i2c-7: Failed to create I2C device for /amba/i2c@ff030000/i2c-mux@74/i2c@1/clock-generator@36 i2c i2c-1: Added multiplexed i2c bus 7 si570 8-005d: registered, current frequency 300000000 Hz i2c i2c-1: Added multiplexed i2c bus 8 si570 9-005d: clock registration failed si570: probe of 9-005d failed with error -17 i2c i2c-1: Added multiplexed i2c bus 9 i2c i2c-10: of_i2c: modalias failure on /amba/i2c@ff030000/i2c-mux@74/i2c@4/clock-generator@69 i2c i2c-10: Failed to create I2C device for /amba/i2c@ff030000/i2c-mux@74/i2c@4/clock-generator@69 i2c i2c-1: Added multiplexed i2c bus 10 i2c i2c-1: Added multiplexed i2c bus 11 i2c i2c-1: Added multiplexed i2c bus 12 i2c i2c-1: Added multiplexed i2c bus 13 pca954x 1-0074: registered 8 multiplexed busses for I2C switch pca9548 i2c i2c-1: Added multiplexed i2c bus 14 i2c i2c-1: Added multiplexed i2c bus 15 i2c i2c-1: Added multiplexed i2c bus 16 i2c i2c-1: Added multiplexed i2c bus 17 i2c i2c-1: Added multiplexed i2c bus 18 i2c i2c-1: Added multiplexed i2c bus 19 i2c i2c-1: Added multiplexed i2c bus 20 i2c i2c-1: Added multiplexed i2c bus 21 pca954x 1-0075: registered 8 multiplexed busses for I2C switch pca9548 ina2xx 2-0040: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-0041: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-0042: power monitor ina226 (Rshunt = 5000 uOhm) ata1: SATA link down (SStatus 0 SControl 330) ina2xx 2-0043: power monitor ina226 (Rshunt = 5000 uOhm) ata2: SATA link down (SStatus 0 SControl 330) ina2xx 2-0044: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-0045: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-0046: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-0047: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-004a: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 2-004b: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0040: power monitor ina226 (Rshunt = 2000 uOhm) ina2xx 3-0041: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0042: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0043: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0044: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0045: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0046: power monitor ina226 (Rshunt = 5000 uOhm) ina2xx 3-0047: power monitor ina226 (Rshunt = 5000 uOhm) cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer at (____ptrval____) with timeout 10s device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com EDAC MC: ECC not enabled cpu cpu0: failed to get clock: -2 cpufreq-dt: probe of cpufreq-dt failed with error -2 sdhci: Secure Digital Host Controller Interface driver sdhci: Copyright(c) Pierre Ossman sdhci-pltfm: SDHCI platform and OF driver helper mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit usbcore: registered new interface driver usbhid usbhid: USB HID core driver u32 classifier Actions configured NET: Registered protocol family 10 Segment Routing with IPv6 sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver NET: Registered protocol family 17 can: controller area network core (rev 20170425 abi 9) NET: Registered protocol family 29 can: raw protocol (rev 20170425) can: broadcast manager protocol (rev 20170425 t) can: netlink gateway (rev 20170425) max_hops=1 Key type dns_resolver registered registered taskstats version 1 Btrfs loaded, crc32c=crc32c-generic Key type encrypted registered printk: console [netcon0] enabled netconsole: network logging started rtc_zynqmp ffa60000.rtc: setting system clock to 2019-06-06T03:39:58 UTC (1559792398) macb ff0e0000.ethernet eth0: link up (1000/Full) pps pps0: new PPS source ptp0 macb ff0e0000.ethernet: gem-ptp-timer ptp clock registered. IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready mmc0: Problem switching card into high-speed mode! mmc0: new SDHC card at address 0001 mmcblk0: mmc0:0001 SD16G 14.5 GiB Sending DHCP requests . mmcblk0: p1 p2 p3 , OK IP-Config: Complete: device=eth0, hwaddr=00:0a:35:04:9a:86, ipaddr=xxxxx, mask=255.255.254.0 host=xxx, domain=corp.ad.wrs.com, nis-domain=swamp bootserver=0.0.0.0, rootserver=0.0.0.0, rootpath= clk: Not disabling unused clocks md: Waiting for all devices to be available before autodetect md: If you don't use raid, use raid=noautodetect md: Autodetecting RAID arrays. md: autorun ... md: ... autorun DONE. EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null) VFS: Mounted root (ext4 filesystem) on device 179:3. devtmpfs: mounted Freeing unused kernel memory: 1216K Run /sbin/init as init process random: fast init done systemd[1]: systemd 242-19-gdb2e367+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -) systemd[1]: Detected architecture arm64. Welcome to Wind River Linux development 19.23 Update 0! systemd[1]: Set hostname to <xilinx-zynqmp>. random: systemd: uninitialized urandom read (16 bytes read) systemd[1]: Initializing machine ID from random generator. systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argument systemd[1]: /lib/systemd/system/dbus.socket:4: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket �→ /run/dbus/system_bus_socket; please update the unit f. systemd[1]: /lib/systemd/system/rpcbind.socket:4: ListenStream= references a path below legacy directory /var/run/, updating /var/run/rpcbind.sock �→ /run/rpcbind.sock; please update the unit file accordingly. random: systemd: uninitialized urandom read (16 bytes read) systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). random: systemd: uninitialized urandom read (16 bytes read) systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ OK ] Listening on udev Control Socket. [ OK ] Created slice User and Session Slice. [ OK ] Listening on initctl Compatibility Named Pipe. [ OK ] Reached target Swap. [ OK ] Created slice system-serial\x2dgetty.slice. [ OK ] Reached target Slices. [ OK ] Listening on Journal Socket. Starting udev Coldplug all Devices... Mounting POSIX Message Queue File System... Mounting Temporary Directory (/tmp)... Starting Journal Service... Starting Remount Root and Kernel File Systems... Mounting Kernel Debug File System... EXT4-fs (mmcblk0p3): re-mounted. Opts: (null) Starting Create list of re�…odes for the current kernel... [ OK ] Started Forward Password R�…uests to Wall Directory Watch. [ OK ] Reached target Remote File Systems. [ OK ] Listening on Network Service Netlink Socket. Starting Apply Kernel Variables... [ OK ] Started Dispatch Password �…ts to Console Directory Watch. [ OK ] Reached target Paths. [ OK ] Created slice system-getty.slice. Mounting Huge Pages File System... [ OK ] Started Journal Service. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Temporary Directory (/tmp). [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Mounted Kernel Debug File System. [ OK ] Started Create list of req�… nodes for the current kernel. [ OK ] Started Apply Kernel Variables. [ OK ] Mounted Huge Pages File System. Starting Create System Users... Starting Rebuild Hardware Database... Starting Flush Journal to Persistent Storage... [ OK ] Started udev Coldplug all Devices. systemd-journald[148]: Received request to flush runtime journal from PID 1 [ OK ] Started Flush Journal to Persistent Storage. [ OK ] Started Create System Users. Starting Create Static Device Nodes in /dev... [ OK ] Started Create Static Device Nodes in /dev. [ OK ] Reached target Local File Systems (Pre). Mounting /var/volatile... [ OK ] Mounted /var/volatile. [ OK ] Reached target Local File Systems. Starting Create Volatile Files and Directories... Starting Load/Save Random Seed... [ OK ] Started Load/Save Random Seed. [ OK ] Started Create Volatile Files and Directories. Starting Network Time Synchronization... Starting Rebuild Journal Catalog... Starting Update UTMP about System Boot/Shutdown... Starting Run pending postinsts... [ OK ] Started Update UTMP about System Boot/Shutdown. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Set. [ OK ] Reached target System Time Synchronized. [ OK ] Started Rebuild Journal Catalog. [ OK ] Started Run pending postinsts. [ OK ] Started Rebuild Hardware Database. Starting udev Kernel Device Manager... Starting Update is Completed... [ OK ] Started Update is Completed. [ OK ] Started udev Kernel Device Manager. [ OK ] Reached target System Initialization. Starting Console System Startup Logging... [ OK ] Listening on RPCbind Server Activation Socket. [ OK ] Listening on D-Bus System Message Bus Socket. [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [ OK ] Listening on dropbear.socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. [ OK ] Started System Logging Service. [ OK ] Started Dynamic Host Configuration Protocol (DHCP). [ OK ] Started Kernel Logging Service. Starting Login Service... [ OK ] Started D-Bus System Message Bus. [ OK ] Started Xserver startup without a display manager. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timers. Starting Telephony service... Starting Network Service... [ OK ] Started Console System Startup Logging. [ OK ] Found device /dev/ttyPS0. [ OK ] Listening on Load/Save RF �…itch Status /dev/rfkill Watch. [ OK ] Started Network Service. Starting Network Name Resolution... [ OK ] Started Login Service. [ OK ] Started Network Name Resolution. [ OK ] Started Telephony service. [ OK ] Reached target Network. Starting Berkeley Internet Name Domain (DNS)... Starting /etc/rc.local Compatibility... Starting Permit User Sessions... Starting Avahi mDNS/DNS-SD Stack... [ OK ] Started /etc/rc.local Compatibility. [ OK ] Started Permit User Sessions. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyPS0. [ OK ] Started Avahi mDNS/DNS-SD Stack. [ OK ] Started Berkeley Internet Name Domain (DNS). [ OK ] Reached target Host and Network Name Lookups. Wind River Linux development 19.23 Update 0 xilinx-zynqmp ttyPS0 xilinx-zynqmp login: root root@xilinx-zynqmp:~# uname 0a uname: extra operand '0a' Try 'uname --help' for more information. root@xilinx-zynqmp:~# uname -a Linux xilinx-zynqmp 5.2.0-rc3-yoctodev-standard #1 SMP PREEMPT Thu Jun 6 00:53:26 UTC 2019 aarch64 aarch64 aarch64 GNU/Linux Signed-off-by: Zumeng Chen <zchen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-21linux-dummy: Add do_compile_kernelmodulesRobert Yang
Fixed: PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" $ bitbake world ERROR: Task do_compile in make-mod-scripts_1.0.bb depends upon non-existent task do_compile_kernelmodules in linux-dummy.bb ERROR: Command execution failed: Exited with 1 Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-19linux-yocto: Mark qemuriscv64 as compatibleAlistair Francis
Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-18kernel: qemuarmv5: Update machine overrides of KERNEL_DEVICETREEHe Zhe
The original BSP qemuarm has been renamed to qemuarmv5. Update the machine overrides accordingly to avoid not generating dtb. Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-14linux-yocto: Add scsi_debug module when ptest is in DISTRO_FEATURESMariano López
util-linux ptest requires the scsi_debug module to perform eject/mount tests. This will conditionally add scsi_debug module when ptest is in DISTRO_FEATURES. This doesn't include linux-yocto-tiny because the resulting image will be too big and do_image would complain about this. [YOCTO #13301] Signed-off-by: Mariano López <just.another.mariano@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-04linux-yocto: ptest: Add SCSI debug configuration for util-linuxBruce Ashfield
Bumping the SRCREVs to pickup the following configuration tweak for ptest usage: Author: Mariano López <just.another.mariano@gmail.com> Date: Sat Jun 1 17:30:46 2019 -0500 Add SCSI debug configuration for util-linux ptest The ptests from util-linux require the scsi debug module to be installed for a subset of tests. This patch would allow to build the kernel module for the linux-yocto kernel. Signed-off-by: Mariano López <just.another.mariano@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-02linux-yocto/5.0: fix systemtap on armBruce Ashfield
The following commit is part of 5.0.17+: ARM: fix function graph tracer and unwinder dependencies [ Upstream commit 503621628b32782a07b2318e4112bd4372aa3401 ] Naresh Kamboju recently reported that the function-graph tracer crashes on ARM. The function-graph tracer assumes that the kernel is built with frame pointers. We explicitly disabled the function-graph tracer when building Thumb2, since the Thumb2 ABI doesn't have frame pointers. We recently changed the way the unwinder method was selected, which seems to have made it more likely that we can end up with the function- graph tracer enabled but without the kernel built with frame pointers. Fix up the function graph tracer dependencies so the option is not available when we have no possibility of having frame pointers, and adjust the dependencies on the unwinder option to hide the non-frame pointer unwinder options if the function-graph tracer is enabled. Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org> Tested-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Sasha Levin <sashal@kernel.org> As such, we no longer have UNWINDER_ARM enabled in our ARM builds by default, since we do have FUNCTION_GRAPH_TRACER enabled in the common ftrace configuration. We disable FUNCTION_GRAPH_TRACER for ARM, which allows UNWINDER_ARM to remain enabled and hence systemtap work out of the box for our ARM reference builds. Obviously, BSPs or other users of the fragments can make a different decision, but we chose unwinder to be on by default. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-02linux-yocto-rt/5.0: update to -rt11Bruce Ashfield
Updating the 5.0 -rt to -rt11, which comprises the following commits: 9c1e84c9b81b v5.0.19-rt11 c4258b70deda workqueue: rework 2a0f03c9daff softirq: rework cb38c9a00313 Revert "drm/i915/fence: Do not use TIMER_IRQSAFE" 0ffa8402bf10 clocksource: TCLIB: Add proper depend 6a2ecc186d9a arm: imx6: cpuidle: Use raw_spinlock_t c302271409c2 locking/lockdep: Don't complain about incorrect name for no validate class 4042bcac2c90 v5.0.19-rt10 d6ad4a85a911 genirq: Handle missing work_struct in irq_set_affinity_notifier() Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-02linux-yocto/5.0: update to v5.0.19Bruce Ashfield
Integrating the korg -stable updates that comprise the following commits: 3f7c1cab1a61 Linux 5.0.19 64d314bd8cc8 fbdev: sm712fb: fix memory frequency by avoiding a switch/case fallthrough e5c6d75b0f03 bpf, lru: avoid messing with eviction heuristics upon syscall lookup b5f95aa7a88b bpf: add map_lookup_elem_sys_only for lookups from syscall side d811930f74ac bpf: relax inode permission check for retrieving bpf program ca7ef7e3ddfa driver core: Postpone DMA tear-down until after devres release for probe failure bad4fbe76cfb md/raid: raid5 preserve the writeback action after the parity check 3770eb3721be Revert "Don't jump to compute_result state from check_result state" 07116a6548c8 perf/x86/intel: Fix race in intel_pmu_disable_event() 58d1e074c742 perf cs-etm: Always allocate memory for cs_etm_queue::prev_packet cd448c27b08e perf bench numa: Add define for RUSAGE_THREAD if not present 7325696ce261 i2c: designware: ratelimit 'transfer when suspended' errors 8258661858d5 ufs: fix braino in ufs_get_inode_gid() for solaris UFS flavour 5b73764a5d2c KVM: selftests: make hyperv_cpuid test pass on AMD fb654d0763c8 KVM: fix KVM_CLEAR_DIRTY_LOG for memory slots of unaligned size 497ce5c7f538 x86/mm/mem_encrypt: Disable all instrumentation for early SME setup 96f0be982c8a sched/cpufreq: Fix kobject memleak 2a9605f177f8 iwlwifi: mvm: check for length correctness in iwl_mvm_create_skb() df5eba5f41be qmi_wwan: new Wistron, ZTE and D-Link devices bd61ddd3e9fc bpf: Fix preempt_enable_no_resched() abuse bd3713424a01 tools: bpftool: fix infinite loop in map create 1e61a219090f power: supply: sysfs: prevent endless uevent loop with CONFIG_POWER_SUPPLY_DEBUG e6ae43922897 KVM: arm/arm64: Ensure vcpu target is unset on reset failure 5450811a02f5 net: ieee802154: fix missing checks for regmap_update_bits 15f64f420bae mac80211: Fix kernel panic due to use of txq after free eff6d5429bd2 x86: kvm: hyper-v: deal with buggy TLB flush requests from WS2012 48be4d7ced2c PCI: Fix issue with "pci=disable_acs_redir" parameter being ignored fa42fde1f8e6 apparmorfs: fix use-after-free on symlink traversal cf0259f7662a securityfs: fix use-after-free on symlink traversal 04aa8a51e723 power: supply: cpcap-battery: Fix division by zero 38a725dd0be7 KVM: PPC: Book3S: Protect memslots while validating user address eec0c746757b KVM: PPC: Book3S HV: Perserve PSSCR FAKE_SUSPEND bit on guest exit f3adb80bb243 clk: sunxi-ng: nkmp: Avoid GENMASK(-1, 0) 791746a758e7 ARC: PAE40: don't panic and instead turn off hw ioc 30bd4585bf14 xfrm4: Fix uninitialized memory read in _decode_session4 79fad8fd2b76 xfrm: Honor original L3 slave device in xfrmi policy lookup ff7fa2c801bc esp4: add length check for UDP encapsulation 4e8ce2680442 xfrm: clean up xfrm protocol checks 6c0db1cbf772 vti4: ipip tunnel deregistration fixes. f8a427ca50d6 xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module 70a87327025a xfrm: Reset secpath in xfrm failure 9531aac1ee3e xfrm: policy: Fix out-of-bound array accesses in __xfrm_policy_unlink 07a573c046c0 fuse: Add FOPEN_STREAM to use stream_open() 560c6fd312c9 dm mpath: always free attached_handler_name in parse_path() 96ecf4c59f08 dm integrity: correctly calculate the size of metadata area ecff1441aa15 dm crypt: move detailed message into debug level 862a78341ade dm delay: fix a crash when invalid device is specified fab2e96c6be0 dm zoned: Fix zone report handling ef3f84246954 dm cache metadata: Fix loading discard bitset 6c412dc3b757 PCI: Work around Pericom PCIe-to-PCI bridge Retrain Link erratum d06a30b1a957 PCI: Factor out pcie_retrain_link() function 4f22ec9f0c28 PCI: rcar: Add the initialization of PCIe link in resume_noirq() fbd9c6ef0dfc PCI/AER: Change pci_aer_init() stub to return void be361ee757b8 PCI: Init PCIe feature bits for managed host bridge alloc adb00a68d2dd PCI: Reset Lenovo ThinkPad P50 nvgpu at boot if necessary 2e4017e3ddfd PCI: Mark Atheros AR9462 to avoid bus reset 4ddfb43373ca PCI: Mark AMD Stoney Radeon R7 GPU ATS as broken 1fbec8aa02f3 fbdev: sm712fb: fix crashes and garbled display during DPMS modesetting 620a97786fd6 fbdev: sm712fb: use 1024x768 by default on non-MIPS, fix garbled display b2adbace369e fbdev: sm712fb: fix support for 1024x768-16 mode d119b4a43e53 fbdev: sm712fb: fix crashes during framebuffer writes by correctly mapping VRAM 39045ad5a808 fbdev: sm712fb: fix boot screen glitch when sm712fb replaces VGA 4badede3e74b fbdev: sm712fb: fix white screen of death on reboot, don't set CR3B-CR3F 62463c4661f1 fbdev: sm712fb: fix VRAM detection, don't set SR70/71/74/75 2a5d31230505 fbdev: sm712fb: fix brightness control on reboot, don't set SR30 cfe31930dac8 fbdev/efifb: Ignore framebuffer memmap entries that lack any memory types a816dc52fe77 x86/mpx, mm/core: Fix recursive munmap() corruption 9d50a05607a7 objtool: Allow AR to be overridden with HOSTAR 93dbb5304b51 MIPS: perf: Fix build with CONFIG_CPU_BMIPS5000 enabled 822e8c43b08a perf intel-pt: Fix sample timestamp wrt non-taken branches 14f3460ed499 perf intel-pt: Fix improved sample timestamp 23abb1eed2ee perf intel-pt: Fix instructions sampling rate c82da3e43ce1 memory: tegra: Fix integer overflow on tick value calculation dda71c1663c8 tracing: probeevent: Fix to make the type of $comm string 95142e28042b tracing: Fix partial reading of trace event's id file 9dba717a8156 ftrace/x86_64: Emulate call function while updating in breakpoint handler 2a1069824a5c x86_64: Allow breakpoints to emulate call instructions 16e559791d6b x86_64: Add gap to int3 to allow for call emulation 69fc24195198 ceph: flush dirty inodes before proceeding with remount 43cc8d378ca0 iommu/tegra-smmu: Fix invalid ASID bits on Tegra30/114 d79e6a726acb gcc-plugins: arm_ssp_per_task_plugin: Fix for older GCC < 6 0e83f9e5ce46 ovl: fix missing upper fs freeze protection on copy up for ioctl bf076fd44bd6 fuse: honor RLIMIT_FSIZE in fuse_file_fallocate 79d8f6321221 fuse: fix writepages on 32bit 12db517f8a3e udlfb: introduce a rendering mutex 0bd143ed4109 udlfb: fix sleeping inside spinlock 02851943751d udlfb: delete the unused parameter for dlfb_handle_damage 855e2af24ab5 clk: rockchip: fix wrong clock definitions for rk3328 317e574eaf6d clk: mediatek: Disable tuner_en before change PLL rate b5f7027a6f79 clk: tegra: Fix PLLM programming on Tegra124+ when PMC overrides divider 87b083dbdd8f clk: hi3660: Mark clk_gate_ufs_subsys as critical 3c1f44469d83 PNFS fallback to MDS if no deviceid found 73e0d62f16ec NFS4: Fix v4.0 client state corruption when mount 1aa8f89cf5ad RDMA/ipoib: Allow user space differentiate between valid dev_port 90ebb540a7b1 RDMA/mlx5: Use get_zeroed_page() for clock_info 2132baff7e0f media: imx: Clear fwnode link struct for each endpoint iteration 7543aeaf9331 media: imx: csi: Allow unknown nearest upstream entities 8a6a542635fe media: ov6650: Fix sensor possibly not detected on probe 252f74c15935 phy: ti-pipe3: fix missing bit-wise or operator when assigning val 921bb3e9be5b cifs: fix strcat buffer overflow and reduce raciness in smb21_set_oplock_level() 6c65b5a9d829 brcmfmac: Add DMI nvram filename quirk for ACEPC T8 and T11 mini PCs e15c901c9b1f of: fix clang -Wunsequenced for be32_to_cpu() a1243cd45745 p54: drop device reference count if fails to enable device 24cb69043d68 intel_th: msu: Fix single mode with IOMMU 86901d0a34ab dcache: sort the freeing-without-RCU-delay mess for good. cb259d53313c md: add a missing endianness conversion in check_sb_changes ceaae3df28ef md: add mddev->pers to avoid potential NULL pointer dereference 3d8c54fb4b8f md: batch flush requests. dfbe4d1af4b3 Revert "MD: fix lock contention for flush bios" be2bcbeda06b proc: prevent changes to overridden credentials e2d95e6022f9 brd: re-enable __GFP_HIGHMEM in brd_insert_page() 019da3cf8d2d stm class: Fix channel bitmap on 32-bit systems e52484d4b315 stm class: Fix channel free in stm output free path 7a76effe2dea parisc: Rename LEVEL to PA_ASM_LEVEL to avoid name clash with DRBD code e2d87b36a59b parisc: Use PA_ASM_LEVEL in boot code fac8648ec7ce parisc: Allow live-patching of __meminit functions 62c78938e3ee parisc: Add memory barrier to asm pdc and sync instructions 81641f9c6039 parisc: Skip registering LED when running in QEMU f4a05c586c3a parisc: Add memory clobber to TLB purges 52b905433b0d parisc: Export running_on_qemu symbol for modules 5b3b51fe5bef regulator: core: fix error path for regulator_set_voltage_unlocked 97346dda2c99 blk-mq: free hw queue's resource in hctx's release handler 860dde8d0962 mm/gup: Remove the 'write' parameter from gup_fast_permitted() b80fc1eed537 net/mlx5e: Fix ethtool rxfh commands when CONFIG_MLX5_EN_RXNFC is disabled 5125c4d4cfca net/mlx5: Imply MLXFW in mlx5_core ac5465716ae6 net/mlx5e: Additional check for flow destination comparison e3e09b07aab6 net/mlx5e: Add missing ethtool driver info for representors 5048d03fa137 vsock/virtio: Initialize core virtio vsock before registering the driver ac01b87ed3ec tipc: fix modprobe tipc failed after switch order of device registration 51adb8ebe8c1 vsock/virtio: free packets during the socket release 3f48a2fa3d79 tipc: switch order of device registration to fix a crash 0501b80b158a rtnetlink: always put IFLA_LINK for links with a link-netnsid 4d4b20738489 ppp: deflate: Fix possible crash in deflate_init ebf4338d96e9 nfp: flower: add rcu locks when accessing netdev for tunnels d818a94975ed net: usb: qmi_wwan: add Telit 0x1260 and 0x1261 compositions 18b3bb2503b4 net: test nouarg before dereferencing zerocopy pointers 4e6d54b16a89 net/mlx4_core: Change the error print to info print 708c22fedf0c net: avoid weird emergency message 145708e7d94c net: Always descend into dsa/ 6c8566ebb5f1 ipv6: prevent possible fib6 leaks aed9be48191f ipv6: fix src addr routing with the exception table 8614793dbb41 Linux 5.0.18 3dacabb35d7f ext4: don't update s_rev_level if not required 18f59db712ce ext4: fix compile error when using BUFFER_TRACE 593ddcbac4a4 s390/mm: convert to the generic get_user_pages_fast code 97249a2034b6 s390/mm: make the pxd_offset functions more robust 4999174b1a77 iov_iter: optimize page_copy_sane() 6e52e4b6cf50 libnvdimm/namespace: Fix label tracking error 63e54af2e570 xen/pvh: correctly setup the PV EFI interface for dom0 a1c5c7476db0 xen/pvh: set xen_domain_type to HVM in xen_pvh_init 9339434bdbb4 kbuild: turn auto.conf.cmd into a mandatory include file d71c6a4b31db KVM: lapic: Busy wait for timer to expire when using hv_timer fae3b156b196 KVM: x86: Skip EFER vs. guest CPUID checks for host-initiated writes 87e61d57ae37 KVM: Fix the bitmap range to copy during clear dirty 295a7bd172d2 jbd2: fix potential double free a5f8b69097a3 ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug 20f6e5999787 ALSA: hda/realtek - Fixup headphone noise via runtime suspend 5ddcddba1be6 ALSA: hda/realtek - Corrected fixup for System76 Gazelle (gaze14) ec9ff0dd9829 ext4: avoid panic during forced reboot due to aborted journal 297a39c6528c ext4: fix use-after-free in dx_release() 256e27da8b62 ext4: fix data corruption caused by overlapping unaligned and aligned IO 7f3b711cbf54 ext4: zero out the unused memory region in the extent tree block bde5b8473bd3 tty: Don't force RISCV SBI console as preferred console 549b0b8a9479 fs/writeback.c: use rcu_barrier() to wait for inflight wb switches going into workqueue when umount f7fea7c067fb crypto: ccm - fix incompatibility between "ccm" and "ccm_base" 638fffb11c93 ipmi:ssif: compare block number correctly for multi-part return messages bfc6980ff235 bcache: never set KEY_PTRS of journal key to 0 in journal_reclaim() 5fa31fabc628 bcache: fix a race between cache register and cacheset unregister 0e56cc24df1a Btrfs: fix race between send and deduplication that lead to failures and crashes 0565f46b75e4 Btrfs: do not start a transaction at iterate_extent_inodes() d48e71659e07 Btrfs: do not start a transaction during fiemap e7fb540d6a06 Btrfs: send, flush dellaloc in order to avoid data loss b9ee62718749 btrfs: Honour FITRIM range constraints during free space trim 4afdd2d2afbb btrfs: Correctly free extent buffer in case btree_read_extent_buffer_pages fails 1a6e5f745b57 btrfs: Check the first key and level for cached extent buffer f325062756d0 ext4: fix ext4_show_options for file systems w/o journal 91bf9123ce86 ext4: actually request zeroing of inode table after grow 715f547a6299 ext4: fix use-after-free race with debug_want_extra_isize 310aea022196 ext4: avoid drop reference to iloc.bh twice 7db933229f64 ext4: ignore e_value_offs for xattrs with value-in-ea-inode 7dfca4b97693 ext4: make sanity check in mballoc more strict 39108bea309d jbd2: check superblock mapped prior to committing 033b15ff6b92 tty/vt: fix write/write race in ioctl(KDSKBSENT) handler 770e812bbc1d tty: vt.c: Fix TIOCL_BLANKSCREEN console blanking if blankinterval == 0 9537358c9452 mtd: maps: Allow MTD_PHYSMAP with MTD_RAM 969859b87f8b mtd: maps: physmap: Store gpio_values correctly 8a2c3433b51b mtd: spi-nor: intel-spi: Avoid crossing 4K address boundary on read/write ed824ff290d3 mfd: max77620: Fix swapped FPS_PERIOD_MAX_US values 12061d7ce0ee mfd: da9063: Fix OTP control register names to match datasheets for DA9063/63L 966e7ae49bee ACPI: PM: Set enable_for_wake for wakeup GPEs during suspend-to-idle 09ceb529c4ac userfaultfd: use RCU to free the task struct when fork fails 3f26c01c4001 ocfs2: fix ocfs2 read inode data panic in ocfs2_iget f989305d02a4 hugetlb: use same fault hash key for shared and private mappings 6720e0bc50e9 mm/hugetlb.c: don't put_page in lock of hugetlb_lock ff191b1d827d mm/huge_memory: fix vmf_insert_pfn_{pmd, pud}() crash, handle unaligned addresses 535ca6f75ddb mm/mincore.c: make mincore() more conservative b5b076649d2e crypto: ccree - handle tee fips error during power management resume 2380a8464ee1 crypto: ccree - add function to handle cryptocell tee fips error 22a44b51f2e0 crypto: ccree - HOST_POWER_DOWN_EN should be the last CC access during suspend f1a7dc5d0e46 crypto: ccree - pm resume first enable the source clk 4a807bab1431 crypto: ccree - don't map AEAD key and IV on stack a1cb31fd79be crypto: ccree - use correct internal state sizes for export 3ff036422024 crypto: ccree - don't map MAC key on stack 2e1679f6a1d0 crypto: ccree - fix mem leak on error path 23a072df0482 crypto: ccree - remove special handling of chained sg 8efcdb781463 bpf, arm64: remove prefetch insn in xadd mapping fd049ce703c3 ASoC: codec: hdac_hdmi add device_link to card device 519511e47f79 ASoC: fsl_esai: Fix missing break in switch statement 94748513d811 ASoC: RT5677-SPI: Disable 16Bit SPI Transfers dccbcc8060c8 ASoC: max98090: Fix restore of DAPM Muxes b2c90ad71e00 ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) 0a1cf4fdc58b ALSA: hda/realtek - EAPD turn on later 98ffad31068d ALSA: hda/hdmi - Consider eld_valid when reporting jack event 787d1c606f1a ALSA: hda/hdmi - Read the pin sense from register when repolling bc3c4c9e00b0 ALSA: usb-audio: Fix a memory leak bug 592b655a306b ALSA: line6: toneport: Fix broken usage of timer for delayed execution 978e70ead670 mmc: sdhci-pci: Fix BYT OCP setting 56f590e2e30a mmc: core: Fix tag set memory leak 1ea20c66648a mmc: tegra: fix ddr signaling for non-ddr modes 4ea5e92a20b9 crypto: arm64/aes-neonbs - don't access already-freed walk.iv b51455e5493a crypto: arm/aes-neonbs - don't access already-freed walk.iv 86d478d06696 crypto: caam/qi2 - generate hash keys in-place fd2830991e56 crypto: caam/qi2 - fix DMA mapping of stack memory 0eaed393b4ec crypto: caam/qi2 - fix zero-length buffer DMA mapping 86add9b56835 crypto: rockchip - update IV buffer to contain the next IV 8d9cdf34aaf9 crypto: gcm - fix incompatibility between "gcm" and "gcm_base" 246ef445e015 crypto: arm64/gcm-aes-ce - fix no-NEON fallback code 47a9de26eb06 crypto: x86/crct10dif-pcl - fix use via crypto_shash_digest() 8eb6266c8eb1 crypto: crct10dif-generic - fix use via crypto_shash_digest() 043e69dd7fef crypto: skcipher - don't WARN on unprocessed data after slow walk step 2c0f409ba69c crypto: vmx - fix copy-paste error in CTR mode 8d02b83b332b crypto: ccp - Do not free psp_master when PLATFORM_INIT fails fdcd8b3b745e crypto: chacha20poly1305 - set cra_name correctly d6d54c7c59c6 crypto: chacha-generic - fix use as arm64 no-NEON fallback 0a348941ad06 crypto: lrw - don't access already-freed walk.iv 25f1509c739f crypto: salsa20 - don't access already-freed walk.iv fb7261b31a2c crypto: crypto4xx - fix cfb and ofb "overran dst buffer" issues 3149ac3ef4e6 crypto: crypto4xx - fix ctr-aes missing output IV 5404a6ff7458 x86/MCE/AMD: Don't report L1 BTB MCA errors on some family 17h models ad09c6ef2dcb x86/MCE: Group AMD function prototypes in <asm/mce.h> b05237350b4a x86/MCE/AMD: Carve out the MC4_MISC thresholding quirk e6b8b66f965e x86/MCE/AMD: Turn off MC4_MISC thresholding on all family 0x15 models 993a6595b253 x86/MCE: Add an MCE-record filtering function 52176123f9cb sched/x86: Save [ER]FLAGS on context switch d81b4ae57fe9 arm64: Save and restore OSDLR_EL1 across suspend/resume bd254f9d1157 arm64: Clear OSDLR_EL1 on CPU boot a184f8889306 arm64: compat: Reduce address limit e57320e0177a arm64: arch_timer: Ensure counter register reads occur with seqlock held 32e802d947ca arm64: mmap: Ensure file offset is treated as unsigned 38a6f722c01a power: supply: axp288_fuel_gauge: Add ACEPC T8 and T11 mini PCs to the blacklist a4e41f047a3e power: supply: axp288_charger: Fix unchecked return value fe3f22b7084d ARM: exynos: Fix a leaked reference by adding missing of_node_put a6bc3bfb8206 mmc: sdhci-of-arasan: Add DTS property to disable DCMDs. bf6cb21717f4 ARM: dts: exynos: Fix audio (microphone) routing on Odroid XU3 de42e519cbee ARM: dts: exynos: Fix interrupt for shared EINTs on Exynos5260 3ea393bb1ca4 ARM: dts: qcom: ipq4019: enlarge PCIe BAR range 5d6fa0370c51 arm64: dts: rockchip: Disable DCMDs on RK3399's eMMC controller. 5414a4761988 arm64: dts: rockchip: fix IO domain voltage setting of APIO5 on rockpro64 8c1134ff70df objtool: Fix function fallthrough detection bc19bb7d8d10 x86/speculation/mds: Improve CPU buffer clear documentation d2214ccfecb5 x86/speculation/mds: Revert CPU buffer clear on double fault exit bfcac7872252 locking/rwsem: Prevent decrement of reader count before increment Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-02linux-yocto-rt/5.0: update to -rt9Bruce Ashfield
Updating linux-yocto-rt to -rt9, which comprises the following commits: cc66f1b95af7 (HEAD -> v5.0/standard/preempt-rt/base) v5.0.14-rt9 96957f0ca4a4 sched/completion: Fix a lockup in wait_for_completion() 7108dfc6c002 iommu/dma-iommu: Remove iommu_dma_map_msi_msg() 50e9a302a12e irqchip/gic-v3-mbi: Don't map the MSI page in mbi_compose_m{b, s}i_msg() 4a4c41f25d90 irqchip/ls-scfg-msi: Don't map the MSI page in ls_scfg_msi_compose_msg() e6549dc52874 irqchip/gic-v3-its: Don't map the MSI page in its_irq_compose_msi_msg() 21ab1a505f71 irqchip/gicv2m: Don't map the MSI page in gicv2m_compose_msi_msg() 5c7e7ee1155f iommu/dma-iommu: Split iommu_dma_map_msi_msg() in two parts ed562a120218 genirq/msi: Add a new field in msi_desc to store an IOMMU cookie 8269017c7c71 x86/fpu: Fault-in user stack if copy_fpstate_to_sigframe() fails 834de13e9df3 v5.0.14-rt8 60a1f2741b0b v5.0.10-rt7 5cbcfdaf619f clocksource: improve Atmel TCB timer driver dde28bc12270 x86/ima: Check EFI_RUNTIME_SERVICES before using c02d0b49cf87 printk: kmsg_dump: remove mutex usage b4ccebf15704 locking/rwsem: Rename rwsem_rt.h to rwsem-rt.h d5758ba7a93e x86/fpu: Remove unnecessary saving of FPU registers in copy_fpstate_to_sigframe() e16351073c50 x86/fpu: Fault-in user stack if copy_fpstate_to_sigframe() fails 14ff99cb7d48 v5.0.10-rt6 843445383127 v5.0.7-rt5 e886711e0449 drm/i915: Don't disable interrupts independently of the lock 69e41e29c6ad clocksource: improve Atmel TCB timer driver c2e266f415d0 x86: load FPU registers on return to userland (Update to v9) 4be2fd56d44f v5.0.7-rt4 6fb29acc8efe (origin/v5.0/standard/preempt-rt/base) genirq: Prevent use-after-free and work list corruption on rt Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-06-02linux-yocto/5.0: update to v5.0.17Bruce Ashfield
Integrating the korg -stable commits that comprise the following changes: d59f5a01fa43 Linux 5.0.17 ba686f90778b f2fs: Fix use of number of devices 78b8c59eee72 PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary f20f463b32bc PCI: hv: Add hv_pci_remove_slots() when we unload the driver d3a9cd23b172 PCI: hv: Fix a memory leak in hv_eject_device_work() 7f9572e798ea virtio_ring: Fix potential mem leak in virtqueue_add_indirect_packed ba81b50090a4 powerpc/booke64: set RI in default MSR 0da52ad69b37 powerpc/powernv/idle: Restore IAMR after idle d314437d17ad powerpc/book3s/64: check for NULL pointer in pgd_alloc() 79e981a8503f drivers/virt/fsl_hypervisor.c: prevent integer overflow in ioctl 1a84219f73b2 drivers/virt/fsl_hypervisor.c: dereferencing error pointers in ioctl 8b8fc62b6c67 isdn: bas_gigaset: use usb_fill_int_urb() properly 12786188dcf3 flow_dissector: disable preemption around BPF calls 39f7b3941969 net: phy: fix phy_validate_pause 4a91e5e4c58f tuntap: synchronize through tfiles array instead of tun->numqueues e0630246658a tuntap: fix dividing by zero in ebpf queue selection 92edcf205388 vrf: sit mtu should not be updated when vrf netdev is the link 13d54150e746 vlan: disable SIOCSHWTSTAMP in container 83c25477e944 tipc: fix hanging clients using poll with EPOLLOUT flag be6a9818866d selinux: do not report error on connect(AF_UNSPEC) c3954f8f5a7e packet: Fix error path in packet_init 7bc936f4f226 net: ucc_geth - fix Oops when changing number of buffers in the ring 57ee33b48190 net: seeq: fix crash caused by not set dev.parent 224b04c9e028 net: macb: Change interrupt and napi enable order in open a3bf31d7ffb2 net: ethernet: stmmac: dwmac-sun8i: enable support of unicast filtering 261a8958a57e net: dsa: Fix error cleanup path in dsa_init_module 2f679c41821f ipv4: Fix raw socket lookup for local traffic f8351176aed6 fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied e4607de103ba dpaa_eth: fix SG frame cleanup 430a64f6fa2c bridge: Fix error path for kobject_init_and_add() 69798384ba38 bonding: fix arp_validate toggling in active-backup mode d3ff0184ebd2 Don't jump to compute_result state from check_result state 843135c1ce1e rtlwifi: rtl8723ae: Fix missing break in switch statement 14654a1f2e2b mwl8k: Fix rate_idx underflow 202436fe0810 cw1200: fix missing unlock on error in cw1200_hw_scan() 92a9787bb38c drm/rockchip: fix for mailbox read validation. 5b4ef3c5faf9 net: mvpp2: fix validate for PPv2.1 45e1075e04cb net: sched: fix cleanup NULL pointer exception in act_mirr 4b84cde61ce9 bpf: only test gso type on gso packets 073d8f286f34 mm/page_alloc.c: avoid potential NULL pointer dereference 61fadd8a5000 mm/memory_hotplug.c: drop memory device reference after find_memory_block() 59c58e43e80f RDMA/hns: Bugfix for mapping user db 26f70c4e0aef gpio: Fix gpiochip_add_data_with_key() error path fb53ebc9eb9a net: vrf: Fix operation not supported when set vrf mac ec69b3c91b3b Input: synaptics-rmi4 - fix possible double free 6a2abf951ed3 Input: snvs_pwrkey - make it depend on ARCH_MXC 21a3f7c2c76c drm/sun4i: Unbind components before releasing DRM and memory f79084e5372b Revert "drm/virtio: drop prime import/export callbacks" 2455f6cbd19b ceph: handle the case where a dentry has been renamed on outstanding req d3a9275364d9 spi: ST ST95HF NFC: declare missing of table 943609acd628 spi: Micrel eth switch: declare missing of table 4c6df58231f8 ARM: 8856/1: NOMMU: Fix CCR register faulty initialization when MPU is disabled dc41fe5d6fb5 ARM: fix function graph tracer and unwinder dependencies 0cb06e339cee drm/imx: don't skip DP channel disable for background plane 7680e881fdaa gpu: ipu-v3: dp: fix CSC handling 28e4593bb148 arm64/module: ftrace: deal with place relative nature of PLTs d0f8faa2f540 dmaengine: bcm2835: Avoid GFP_KERNEL in device_prep_slave_sg d4dc7d99b111 netfilter: fix nf_l4proto_log_invalid to log invalid packets ddb632889fae netfilter: never get/set skb->tstamp 226ef4f27a45 selftests/net: correct the return value for run_afpackettests 1a20185157b5 selftests/net: correct the return value for run_netsocktests 2d83e90c2375 of_net: Fix residues after of_get_nvmem_mac_address removal 7ba51c0e84b3 drm/sun4i: Fix component unbinding and component master deletion 3000bdec55c8 drm/sun4i: Set device driver data at bind time for use in unbind 1330679d64f8 s390: ctcm: fix ctcm_new_device error return code 143c8279955e IB/mlx5: Fix scatter to CQE in DCT QP creation b3a64096c5ee MIPS: perf: ath79: Fix perfcount IRQ assignment ecef50c35a07 netfilter: nat: fix icmp id randomization c2987d193f8b netfilter: nf_tables: prevent shift wrap in nft_chain_parse_hook() b0a90cae081d netfilter: ctnetlink: don't use conntrack/expect object addresses as id a3a5ad78488b ipvs: do not schedule icmp errors from tunnels 44fbb3db2bde selftests: netfilter: check icmp pkttoobig errors are set as related 16b01614d369 drm: bridge: dw-hdmi: Fix overflow workaround for Rockchip SoCs 5bc0352515ef init: initialize jump labels before command line option parsing 57c2301fc9c9 mm: fix inactive list balancing between NUMA nodes and cgroups 47d1b202e325 mm/hotplug: treat CMA pages as unmovable 247e9fe2f4ad slab: store tagged freelist for off-slab slabmgmt 4176e671a44e scsi: aic7xxx: fix EISA support e9697ba264c2 perf tools: Fix map reference counting d39036685e22 ocelot: Don't sleep in atomic context (irqs_disabled()) d7200d0648e5 ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash d2ae8127d693 perf top: Always sample time to satisfy needs of use of ordered queuing 9b2395e2bfec tools lib traceevent: Fix missing equality check for strcmp b053700b6ce9 KVM: x86: avoid misreporting level-triggered irqs as edge-triggered in tracing 7cee96602903 KVM: fix spectrev1 gadgets ac0cd21ff7f3 KVM: nVMX: always use early vmcs check when EPT is disabled ad0b4845927e x86/reboot, efi: Use EFI reboot for Acer TravelMate X514-51T 47155c33761e x86/mm: Prevent bogus warnings with "noexec=off" e011d319f736 x86/build/lto: Fix truncated .bss with -fdata-sections 5a8306e3b433 s390/pkey: add one more argument space for debug feature entry 7a96a56eea04 drm/amd/display: If one stream full updates, full update all planes e3a41f93e337 qed: Fix the DORQ's attentions handling 47ef1bab8d1d qed: Fix missing DORQ attentions deb2cc51dd52 qed: Fix the doorbell address sanity check 2de1573a5ed9 qed: Delete redundant doorbell recovery types 775e0e613250 afs: Fix in-progess ops to ignore server-level callback invalidation 35d71b00267e afs: Unlock pages for __pagevec_release() f4faab6c9034 qede: fix write to free'd pointer error and double free of ptp 40990109952a vxge: fix return of a free'd memblock on a failed dma mapping 4230787c0655 mISDN: Check address length before reading address family 2d56b3f53ac8 drm/amdgpu: shadow in shadow_list without tbo.mem.start cause page fault in sriov TDR bf4b7bc690e3 selftests: fib_tests: Fix 'Command line is not complete' errors b1e68de7659a clocksource/drivers/oxnas: Fix OX820 compatible 641a9b94456d clocksource/drivers/npcm: select TIMER_OF 44d7638b3934 drm/amd/display: extending AUX SW Timeout 6661203b4210 drm/ttm: fix dma_fence refcount imbalance on error path 1e1bdaca091e s390/3270: fix lockdep false positive on view->lock adefea883c1f tools/testing/nvdimm: Retain security state after overwrite 40af621fefdb libnvdimm/pmem: fix a possible OOB access when read and write pmem 7547c20fdd1c libnvdimm/security: provide fix for secure-erase to use zero-key 8f2e6b8c9b0b nl80211: Add NL80211_FLAG_CLEAR_SKB flag for other NL commands 0e36c8ed2d52 mac80211: fix memory accounting with A-MSDU aggregation c93951de3ecb cfg80211: Handle WMM rules in regulatory domain intersection 7c7345f1cad8 mac80211: Increase MAX_MSG_LEN 0c077b14bdc0 mac80211: fix unaligned access in mesh table hash function 9d02fc4b7789 s390/dasd: Fix capacity calculation for large volumes 181518b8eb4e libnvdimm/btt: Fix a kmemdup failure check f744a5e31a47 HID: input: add mapping for "Toggle Display" key 0e56b93040c2 HID: input: add mapping for keyboard Brightness Up/Down/Toggle keys c64e4d22342c HID: input: add mapping for Expose/Overview key e42bcea02b46 libnvdimm/namespace: Fix a potential NULL pointer dereference 469cc616e03c acpi/nfit: Always dump _DSM output payload a9189a36d66e iio: adc: xilinx: prevent touching unclocked h/w on remove 1fc0aeddc0b7 iio: adc: xilinx: fix potential use-after-free on probe fc92e97e24df iio: adc: xilinx: fix potential use-after-free on remove a41382ca99e8 USB: serial: fix unthrottle races b5f2cb384e11 virt: vbox: Sanity-check parameter types for hgcm-calls coming from userspace a16532b59cca kernfs: fix barrier usage in __kernfs_new_node() 0748cf2d9d1c selftests/seccomp: Handle namespace failures gracefully 5c3c0ffa9d74 hwmon: (occ) Fix extended status bits a91e668131ad hwmon: (pwm-fan) Disable PWM if fetching cooling data fails b9d31180294a platform/x86: dell-laptop: fix rfkill functionality 22c8b3235eb2 platform/x86: thinkpad_acpi: Disable Bluetooth for some machines 8fb172181a29 platform/x86: sony-laptop: Fix unintentional fall-through 54c140c5b614 bfq: update internal depth state when queue depth changes 89e11ec0280b Linux 5.0.16 f8bb2589227b x86/speculation/mds: Fix documentation typo 14e3ad8a1452 Documentation: Correct the possible MDS sysfs values 0acbbdf3e41d x86/mds: Add MDSUM variant to the MDS documentation 4cf168a94fd5 x86/speculation/mds: Add 'mitigations=' support for MDS 394e3d8de828 s390/speculation: Support 'mitigations=' cmdline option f905727fa11c powerpc/speculation: Support 'mitigations=' cmdline option bd600de16b82 x86/speculation: Support 'mitigations=' cmdline option 6d7407ef9272 cpu/speculation: Add 'mitigations=' cmdline option c2b25b6b3582 x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off 3f7fe4ad1f62 x86/speculation/mds: Fix comment 9cd62662dd7e x86/speculation/mds: Add SMT warning message c98b736e763d x86/speculation: Move arch_smt_update() call to after mitigation decisions fb49e1bb2061 x86/speculation/mds: Add mds=full,nosmt cmdline option 08831a92501f Documentation: Add MDS vulnerability documentation ab8e3e63f23e Documentation: Move L1TF to separate directory 31fd0223449e x86/speculation/mds: Add mitigation mode VMWERV 3944139ce828 x86/speculation/mds: Add sysfs reporting for MDS 0174e8984c2d x86/speculation/mds: Add mitigation control for MDS d9117863c521 x86/speculation/mds: Conditionally clear CPU buffers on idle entry 100087c08030 x86/kvm/vmx: Add MDS protection when L1D Flush is not active 481871997e37 x86/speculation/mds: Clear CPU buffers on exit to user a5a8ef7cd7c9 x86/speculation/mds: Add mds_clear_cpu_buffers() 87f96d5e7525 x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests 78157c977674 x86/speculation/mds: Add BUG_MSBDS_ONLY ea3d1b32b86e x86/speculation/mds: Add basic bug infrastructure for MDS 019159aec4b7 x86/speculation: Consolidate CPU whitelists 26c0aff1ad63 x86/msr-index: Cleanup bit defines 7b13756d2c32 Linux 5.0.15 41d7bb19aa31 arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP 3b928b59fae0 locking/futex: Allow low-level atomic operations to return -EAGAIN be4b9a303a25 i3c: Fix a shift wrap bug in i3c_bus_set_addr_slot_status() 4b1f2ad28fe1 ASoC: Intel: avoid Oops if DMA setup fails 987722984163 UAS: fix alignment of scatter/gather segments 349bb9138b3a Bluetooth: hci_bcm: Fix empty regulator supplies for Intel Macs 41d5f23ef17b Bluetooth: Fix not initializing L2CAP tx_credits 2c93762f4b38 Bluetooth: Align minimum encryption key size for LE and BR/EDR connections 1c1727f4b948 Bluetooth: hidp: fix buffer overflow 69d6687a5c66 scsi: qla2xxx: Fix device staying in blocked state aee2053554ea scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines 45076c8e403a scsi: lpfc: change snprintf to scnprintf for possible overflow 185e58d16ac8 soc: sunxi: Fix missing dependency on REGMAP_MMIO 34ebc8ad2ea4 ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for hibernate 61ae16c4586b cpufreq: armada-37xx: fix frequency calculation for opp 573a935bfb4f iio: adc: qcom-spmi-adc5: Fix of-based module autoloading 284af2788432 intel_th: pci: Add Comet Lake support 704eaf49399f usb-storage: Set virt_boundary_mask to avoid SG overflows bba2feefcacd USB: cdc-acm: fix unthrottle races 5b1c70f36832 USB: serial: f81232: fix interrupt worker not stop 083a8f69962a usb: dwc3: Fix default lpm_nyet_threshold value 9092861ce665 usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON 70a44a01f8a4 genirq: Prevent use-after-free and work list corruption b5dbb4058183 iommu/amd: Set exclusion range correctly 6610c1785f70 perf/core: Fix perf_event_disable_inatomic() race a5f62d2c15a2 NFSv4.1 fix incorrect return value in copy_file_range a3aa7cab0fc2 platform/x86: pmc_atom: Drop __initconst on dmi table e6f2733f48cb nvmet: fix discover log page when offsets are used ea359038ab73 nvme-fc: correct csn initialization and increments on error 407bb38bf3f7 nvme: cancel request synchronously e62732d12bd9 blk-mq: introduce blk_mq_complete_request_sync() e81f9ca291ac virtio-blk: limit number of hw queues by nr_cpu_ids 677713b1254f ALSA: hda: Fix racy display power access 7c7450aa9838 ASoC: stm32: sai: fix master clock management 60ec4c3d39be ASoC: Intel: kbl: fix wrong number of channels c79f5a7a3559 drm/mediatek: no change parent rate in round_rate() for MT2701 hdmi phy 718254750661 drm/mediatek: using new factor for tvdpll for MT2701 hdmi phy 5b82d95ac6fe drm/mediatek: remove flag CLK_SET_RATE_PARENT for MT2701 hdmi phy 273ed6c20cb5 drm/mediatek: make implementation of recalc_rate() for MT2701 hdmi phy 4b112e5e6af9 drm/mediatek: fix the rate and divder of hdmi phy for MT2701 a873474c769a drm/mediatek: fix possible object reference leak 3051b6a1a14a scsi: csiostor: fix missing data copy in csio_scsi_err_handler() 353392e5b9a5 KEYS: trusted: fix -Wvarags warning 6fb3aa5d7307 RDMA/hns: Fix bug that caused srq creation to fail f4d87f9b027a RDMA/vmw_pvrdma: Fix memory leak on pvrdma_pci_remove 3fa40c30fe4c virtio_pci: fix a NULL pointer reference in vp_del_vqs e0696fe3c10f drm/sun4i: tcon top: Fix NULL/invalid pointer dereference in sun8i_tcon_top_un/bind 09c5ad16c22c slab: fix a crash by reading /proc/slab_allocators ad74ab443e30 objtool: Add rewind_stack_do_exit() to the noreturn list fa42760cf276 ASoC: cs35l35: Disable regulators on driver removal c577757d294e drm/amd/display: fix cursor black issue 4b5f2b0ce17c drm/amdgpu: amdgpu_device_recover_vram always failed if only one node in shadow_list f528dbeec017 drm/amdgpu: Adjust IB test timeout for XGMI configuration 255063992678 drm/amdkfd: Add picasso pci id 2f0ec100032e ASoC: rockchip: pdm: fix regmap_ops hang issue dfa9efe42df2 xtensa: fix initialization of pt_regs::syscall in start_thread 9680a806201d iov_iter: Fix build error without CONFIG_CRYPTO 2e94d4e8f2b9 linux/kernel.h: Use parentheses around argument in u64_to_user_ptr() bae9b6b98342 perf/x86/intel: Initialize TFA MSR 9bd3e66587f5 perf/x86/intel: Fix handling of wakeup_events for multi-entry PEBS 83f3ed3b4bde drm/mediatek: Fix an error code in mtk_hdmi_dt_parse_pdata() 693d72f920e7 ASoC: tlv320aic32x4: Fix Common Pins e904a8b14895 MIPS: KGDB: fix kgdb support for SMP platforms. 59188acd0c7d IB/hfi1: Fix the allocation of RSM table a3270ed43389 IB/hfi1: Eliminate opcode tests on mr deref 1f9f22f6c7d6 IB/hfi1: Clear the IOWAIT pending bits when QP is put into error state a2fdb5d19477 drm/omap: hdmi4_cec: Fix CEC clock handling for PM 08aa8be65b52 ASoC: dapm: Fix NULL pointer dereference in snd_soc_dapm_free_kcontrol 15d326f9548b ASoC: cs4270: Set auto-increment bit for register writes 1be14f5da0b1 ASoC: stm32: dfsdm: fix debugfs warnings on entry creation 9baa2f8ab758 ASoC: stm32: dfsdm: manage multiple prepare 5bff91d2a18f clk: meson-gxbb: round the vdec dividers to closest b2b47cecd2ce ASoC: wm_adsp: Add locking to wm_adsp2_bus_error 9fb991d9cf50 ASoC: rt5682: recording has no sound after booting b2cb6f8f307b ASoC: rt5682: fix jack type detection issue 8425db671440 ASoC: rt5682: Check JD status when system resume 3f60f8813be9 ASoC: samsung: odroid: Fix clock configuration for 44100 sample rate b44509a152a3 ASoC: nau8810: fix the issue of widget with prefixed name 6c4a8ae4baa6 ASoC: nau8824: fix the issue of the widget with prefix name f4f4303c6d54 ASoC: dpcm: prevent snd_soc_dpcm use after free 71ec072682ff ASoC:intel:skl:fix a simultaneous playback & capture issue on hda platform ad8af1f8d26e ASoC:hdac_hda:use correct format to setup hda codec 30d948ac01d9 ASoC:soc-pcm:fix a codec fixup issue in TDM case 6872cfa57c42 ASoC: stm32: sai: fix race condition in irq handler b329de3769b0 ASoC: stm32: sai: fix exposed capabilities in spdif mode 27162c8fdfb9 ASoC: stm32: sai: fix iec958 controls indexation aba1a357cd90 ASoC: hdmi-codec: fix S/PDIF DAI 045c73ba325d ASoC: tlv320aic3x: fix reset gpio reference counting ce3a072f275a staging: most: sound: pass correct device when creating a sound card 2dbcc037de1a staging: most: cdev: fix chrdev_region leak in mod_exit 3f57fef02fa7 staging: wilc1000: Avoid GFP_KERNEL allocation from atomic context. 9cccac4ee35f staging: greybus: power_supply: fix prop-descriptor request size 9fe5b8e9d4c2 ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings 7c03a3534d24 Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() 634424f63373 net: stmmac: Use bfsize1 in ndesc_init_rx_desc Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-31linux-yocto-dev: bump to v5.2-rcBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-31linux-yocto/4.19: update to v4.19.44Bruce Ashfield
Integrating the korg -stable updates that comprise the following commits: dafc674bbcb1 Linux 4.19.44 9fa23ea14e8f PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary 76888d135c4e PCI: hv: Add hv_pci_remove_slots() when we unload the driver a47e0054253f PCI: hv: Fix a memory leak in hv_eject_device_work() 4179b8580219 powerpc/booke64: set RI in default MSR 71b20cdb4353 powerpc/powernv/idle: Restore IAMR after idle 69c2b71cb0c1 powerpc/book3s/64: check for NULL pointer in pgd_alloc() e9ec5073c90d drivers/virt/fsl_hypervisor.c: prevent integer overflow in ioctl ee3b53d89967 drivers/virt/fsl_hypervisor.c: dereferencing error pointers in ioctl afa485dc6f17 tipc: fix hanging clients using poll with EPOLLOUT flag 98652e0b0a1b isdn: bas_gigaset: use usb_fill_int_urb() properly 17d8a9ebaa99 tuntap: synchronize through tfiles array instead of tun->numqueues 9c79732f98a8 tuntap: fix dividing by zero in ebpf queue selection 737713e6d835 vrf: sit mtu should not be updated when vrf netdev is the link e38406070729 vlan: disable SIOCSHWTSTAMP in container dfdfad3d188f selinux: do not report error on connect(AF_UNSPEC) 9f51d6f72063 packet: Fix error path in packet_init 2e95eb9c92f7 net: ucc_geth - fix Oops when changing number of buffers in the ring 210057b79e71 net: seeq: fix crash caused by not set dev.parent dfd919285f27 net: macb: Change interrupt and napi enable order in open 68df8383f3ca net: ethernet: stmmac: dwmac-sun8i: enable support of unicast filtering 9284895b7ee6 net: dsa: Fix error cleanup path in dsa_init_module da2e770f0c4a ipv4: Fix raw socket lookup for local traffic 947fec630c41 fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied c7b5e55be825 dpaa_eth: fix SG frame cleanup a79feef32392 bridge: Fix error path for kobject_init_and_add() 9c2cda31196a bonding: fix arp_validate toggling in active-backup mode 0dc9ad4e904d powerpc/64s: Include cpu header db1b4aa651df um: Don't hardcode path as it is architecture dependent 85f347944a6b Don't jump to compute_result state from check_result state ace28a8efdd4 rtlwifi: rtl8723ae: Fix missing break in switch statement d756d1dea670 mwl8k: Fix rate_idx underflow c300c98a94b4 cw1200: fix missing unlock on error in cw1200_hw_scan() 575260507647 x86/kprobes: Avoid kretprobe recursion bug 322a57551d06 nfc: nci: Potential off by one in ->pipes[] array f5e60565e6bd NFC: nci: Add some bounds checking in nci_hci_cmd_received() 21e9515b7d16 net: strparser: partially revert "strparser: Call skb_unclone conditionally" 85b9e8694f9c net/tls: fix the IV leaks e38c6748d1cc mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw workqueue 835ae6cc28d9 mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw ordered workqueue 880a328e197b mlxsw: core: Do not use WQ_MEM_RECLAIM for EMAD workqueue a80f62f781c2 mlxsw: spectrum_switchdev: Add MDB entries in prepare phase fb7c783b3139 net: fec: manage ahb clock in runtime pm c18731c2786c netfilter: nf_tables: add missing ->release_ops() in error path of newrule() 5014aa937422 netfilter: nf_tables: use-after-free in dynamic operations 9965da064e9a usb: typec: Fix unchecked return value 68321994225d mm/memory.c: fix modifying of page protection by insert_pfn() bc3361461fcb net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode 19f4f94fdb2a powerpc/smp: Fix NMI IPI xmon timeout f8bd34d1d399 powerpc/smp: Fix NMI IPI timeout 6a60fb62c82a mm/memory_hotplug.c: drop memory device reference after find_memory_block() fb67c97c4e2f RDMA/hns: Bugfix for mapping user db afc7cebbbb5e Input: synaptics-rmi4 - fix possible double free f621bc1bd7f4 drm/sun4i: Unbind components before releasing DRM and memory 21b71e191bd8 spi: ST ST95HF NFC: declare missing of table 09185e359827 spi: Micrel eth switch: declare missing of table 3835cb5a911f ARM: 8856/1: NOMMU: Fix CCR register faulty initialization when MPU is disabled 521ae4da71cc drm/imx: don't skip DP channel disable for background plane df3a97d197a3 gpu: ipu-v3: dp: fix CSC handling 3a53fa469d60 netfilter: fix nf_l4proto_log_invalid to log invalid packets 5bc3d4491821 selftests/net: correct the return value for run_netsocktests 24b1c849ce9d drm/sun4i: Fix component unbinding and component master deletion 1973df1ec5bc drm/sun4i: Set device driver data at bind time for use in unbind 005325b7f026 s390: ctcm: fix ctcm_new_device error return code ca8648816e3d MIPS: perf: ath79: Fix perfcount IRQ assignment 743a5a951d4d netfilter: nf_tables: prevent shift wrap in nft_chain_parse_hook() 7b115755fb9d netfilter: ctnetlink: don't use conntrack/expect object addresses as id 4e1994ef6365 ipvs: do not schedule icmp errors from tunnels cb9a11d017c6 selftests: netfilter: check icmp pkttoobig errors are set as related 74e9b761fba0 init: initialize jump labels before command line option parsing 6536de8232c8 mm: fix inactive list balancing between NUMA nodes and cgroups 1134736869ef scsi: aic7xxx: fix EISA support ba87f547b0f7 ocelot: Don't sleep in atomic context (irqs_disabled()) 9e4fd5e0b81a ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash 7d4d8683e925 tools lib traceevent: Fix missing equality check for strcmp 0c8afd514df0 KVM: x86: avoid misreporting level-triggered irqs as edge-triggered in tracing d39f3cc71382 KVM: fix spectrev1 gadgets 4074bc379b1f x86/reboot, efi: Use EFI reboot for Acer TravelMate X514-51T 3b51d71365e0 x86/build/lto: Fix truncated .bss with -fdata-sections 8eb64692d6e2 s390/pkey: add one more argument space for debug feature entry e360515f41fc drm/amd/display: If one stream full updates, full update all planes 58be7c109cea afs: Unlock pages for __pagevec_release() 08f2c299b38c qede: fix write to free'd pointer error and double free of ptp 090b74020014 vxge: fix return of a free'd memblock on a failed dma mapping f83beff28048 mISDN: Check address length before reading address family e4525c9d9ada selftests: fib_tests: Fix 'Command line is not complete' errors 7828986b84ba clocksource/drivers/oxnas: Fix OX820 compatible 6a414ef36840 clocksource/drivers/npcm: select TIMER_OF 068d1cce7801 drm/amd/display: extending AUX SW Timeout 2773e7454f4f s390/3270: fix lockdep false positive on view->lock 4c8c9d514917 libnvdimm/pmem: fix a possible OOB access when read and write pmem f2565d0e5277 nl80211: Add NL80211_FLAG_CLEAR_SKB flag for other NL commands 1d918120e37d mac80211: fix memory accounting with A-MSDU aggregation 9d4da01f7d66 cfg80211: Handle WMM rules in regulatory domain intersection 35e2abbaffa2 mac80211: Increase MAX_MSG_LEN bbe1ab38e1a2 mac80211: fix unaligned access in mesh table hash function e28e5055eacd s390/dasd: Fix capacity calculation for large volumes af5b7a150ef8 libnvdimm/btt: Fix a kmemdup failure check f7ab4818f74e HID: input: add mapping for "Toggle Display" key bbdccc170adf HID: input: add mapping for keyboard Brightness Up/Down/Toggle keys dc30867da997 HID: input: add mapping for Expose/Overview key e94f852e2034 libnvdimm/namespace: Fix a potential NULL pointer dereference 5f72e3a021a6 acpi/nfit: Always dump _DSM output payload f07db1f1f54c iio: adc: xilinx: prevent touching unclocked h/w on remove 6400212ae3b6 iio: adc: xilinx: fix potential use-after-free on probe 06d5ea398e55 iio: adc: xilinx: fix potential use-after-free on remove 5640d0781267 USB: serial: fix unthrottle races 4c416eef65a7 virt: vbox: Sanity-check parameter types for hgcm-calls coming from userspace e361ccccdd51 kernfs: fix barrier usage in __kernfs_new_node() f1917f21c8f6 hwmon: (pwm-fan) Disable PWM if fetching cooling data fails 87cc345aefc9 platform/x86: dell-laptop: fix rfkill functionality 381eaca5017f platform/x86: thinkpad_acpi: Disable Bluetooth for some machines efe6802e812b platform/x86: sony-laptop: Fix unintentional fall-through 824c212908b6 bfq: update internal depth state when queue depth changes 3351e9d39947 Linux 4.19.43 b21bde49d386 x86/speculation/mds: Fix documentation typo 8e65568e9d23 Documentation: Correct the possible MDS sysfs values 2e4c54890226 x86/mds: Add MDSUM variant to the MDS documentation 12a0dad799fb x86/speculation/mds: Add 'mitigations=' support for MDS 59a14fb5832c s390/speculation: Support 'mitigations=' cmdline option 74857f69fec5 powerpc/speculation: Support 'mitigations=' cmdline option af5332dd991e x86/speculation: Support 'mitigations=' cmdline option 8cb932aca5d6 cpu/speculation: Add 'mitigations=' cmdline option 7ba793ae7b9f x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off e9ae32266605 x86/speculation/mds: Fix comment b9faa4652867 x86/speculation/mds: Add SMT warning message b3a63d9c7453 x86/speculation: Move arch_smt_update() call to after mitigation decisions f7a119a762ef x86/speculation/mds: Add mds=full,nosmt cmdline option cfaa3d76301e Documentation: Add MDS vulnerability documentation e3803099d2f4 Documentation: Move L1TF to separate directory c50e81fe8a13 x86/speculation/mds: Add mitigation mode VMWERV 8230c2028dce x86/speculation/mds: Add sysfs reporting for MDS 2951067089a3 x86/speculation/mds: Add mitigation control for MDS 4df98b3f3161 x86/speculation/mds: Conditionally clear CPU buffers on idle entry b39dc9a8cced x86/kvm/vmx: Add MDS protection when L1D Flush is not active e4fa775b5606 x86/speculation/mds: Clear CPU buffers on exit to user 1f7c31be1e04 x86/speculation/mds: Add mds_clear_cpu_buffers() de89ff6f1674 x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests aca9e8d8e2ce x86/speculation/mds: Add BUG_MSBDS_ONLY 2e9104aa2633 x86/speculation/mds: Add basic bug infrastructure for MDS 00b76324bd35 x86/speculation: Consolidate CPU whitelists e09450ffa980 x86/msr-index: Cleanup bit defines ca0056d97840 kvm: x86: Report STIBP on GET_SUPPORTED_CPUID 1f1bc8222ce7 x86/cpu: Sanitize FAM6_ATOM naming 34aae15cb179 Documentation/l1tf: Fix small spelling typo 9c2556f428cf Linux 4.19.42 9ccdbde1850c arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP 0f4ef8fb1dae locking/futex: Allow low-level atomic operations to return -EAGAIN 6fee39874d1f ASoC: Intel: avoid Oops if DMA setup fails c3b3955f0250 UAS: fix alignment of scatter/gather segments 38f092c41ceb Bluetooth: Align minimum encryption key size for LE and BR/EDR connections c6d1f9b4b2cb Bluetooth: hidp: fix buffer overflow de7fe08b92dc scsi: qla2xxx: Fix device staying in blocked state ef7014d76361 scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines 7a793ca17357 scsi: lpfc: change snprintf to scnprintf for possible overflow 8b330b3efa91 soc: sunxi: Fix missing dependency on REGMAP_MMIO 557be5771563 cpufreq: armada-37xx: fix frequency calculation for opp 6b7daf1ff8bf intel_th: pci: Add Comet Lake support 5b2ba94386eb usb-storage: Set virt_boundary_mask to avoid SG overflows 18e6f3027642 USB: cdc-acm: fix unthrottle races bce2b9d63786 USB: serial: f81232: fix interrupt worker not stop caa5680dc05a usb: dwc3: Fix default lpm_nyet_threshold value 33f2aa87c294 genirq: Prevent use-after-free and work list corruption 29184cbaaec0 iommu/amd: Set exclusion range correctly 42638d6aae06 perf/core: Fix perf_event_disable_inatomic() race c1189d68be7d platform/x86: pmc_atom: Drop __initconst on dmi table 777943cd6c5f nvme-fc: correct csn initialization and increments on error 0e8e67b8147f virtio-blk: limit number of hw queues by nr_cpu_ids d955bb0b3189 ASoC: Intel: kbl: fix wrong number of channels e5c749ad6d7f drm/mediatek: fix possible object reference leak 8f4dbd17777f scsi: csiostor: fix missing data copy in csio_scsi_err_handler() fb357b9eb47d RDMA/hns: Fix bug that caused srq creation to fail 8dfb2896d8c7 RDMA/vmw_pvrdma: Fix memory leak on pvrdma_pci_remove 5984fd687600 virtio_pci: fix a NULL pointer reference in vp_del_vqs a8f5c1bceb25 drm/sun4i: tcon top: Fix NULL/invalid pointer dereference in sun8i_tcon_top_un/bind 78bc98235e84 slab: fix a crash by reading /proc/slab_allocators cf6cb79d57b0 objtool: Add rewind_stack_do_exit() to the noreturn list e66e72710962 ASoC: cs35l35: Disable regulators on driver removal dd015a3b072a drm/amd/display: fix cursor black issue 88294658ddbe ASoC: rockchip: pdm: fix regmap_ops hang issue 95587274e9d5 linux/kernel.h: Use parentheses around argument in u64_to_user_ptr() 7d10436ca569 perf/x86/intel: Initialize TFA MSR 2b791e8ee7b2 perf/x86/intel: Fix handling of wakeup_events for multi-entry PEBS 929d019d6d44 drm/mediatek: Fix an error code in mtk_hdmi_dt_parse_pdata() 0fb785e28833 ASoC: tlv320aic32x4: Fix Common Pins e6efcbf3cbce MIPS: KGDB: fix kgdb support for SMP platforms. 09c6954e83e8 IB/hfi1: Fix the allocation of RSM table 3abd4aef917f IB/hfi1: Eliminate opcode tests on mr deref 1ed91af83a45 drm/omap: hdmi4_cec: Fix CEC clock handling for PM d356db088333 ASoC: dapm: Fix NULL pointer dereference in snd_soc_dapm_free_kcontrol 6f69661f6ebe ASoC: cs4270: Set auto-increment bit for register writes 8f5077ceee5f ASoC: stm32: dfsdm: fix debugfs warnings on entry creation 33ffe0807d52 ASoC: stm32: dfsdm: manage multiple prepare 74f5898f660d clk: meson-gxbb: round the vdec dividers to closest 8aa62dc731e5 ASoC: wm_adsp: Add locking to wm_adsp2_bus_error 2ece73fe079b ASoC: rt5682: recording has no sound after booting afcbb3c755c9 ASoC: samsung: odroid: Fix clock configuration for 44100 sample rate 7525d6104ca4 ASoC: nau8810: fix the issue of widget with prefixed name c2119de4ed41 ASoC: nau8824: fix the issue of the widget with prefix name 29f1b9761520 ASoC:intel:skl:fix a simultaneous playback & capture issue on hda platform 581a8bd9fa8b ASoC:soc-pcm:fix a codec fixup issue in TDM case c37f7344075a ASoC: stm32: sai: fix exposed capabilities in spdif mode 2aeceaaff09b ASoC: stm32: sai: fix iec958 controls indexation 6544b4966193 ASoC: hdmi-codec: fix S/PDIF DAI 98a80393b82a ASoC: tlv320aic3x: fix reset gpio reference counting 34ae4c6a3609 staging: most: cdev: fix chrdev_region leak in mod_exit 2197e11bb624 staging: greybus: power_supply: fix prop-descriptor request size 35d2c86db2d4 ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings eb7b8d1afb92 Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() 0f18e433b97b scsi: libsas: fix a race condition when smp task timeout e629cabe34ed net: stmmac: Use bfsize1 in ndesc_init_rx_desc 21de7eb67cff Linux 4.19.41 e7c2d066566b mm/kmemleak.c: fix unused-function warning 5b94768bd07c ASoC: wm_adsp: Check for buffer in trigger stop c5c74e63985f media: v4l2: i2c: ov7670: Fix PLL bypass register values 5f18c95d2964 i2c: i2c-stm32f7: Fix SDADEL minimum formula 7a32cbf1720b x86/mm/tlb: Revert "x86/mm: Align TLB invalidation info" c48b027f2aa3 x86/mm: Fix a crash with kmemleak_scan() 052c78f5cfe2 x86/mm/KASLR: Fix the size of the direct mapping section d572a3a03f63 clk: x86: Add system specific quirk to mark clocks as critical 61ff44069f5b x86/mce: Improve error message when kernel cannot recover, p2 c7e220eff874 powerpc/mm/hash: Handle mmap_min_addr correctly in get_unmapped_area topdown search a78c3898de59 mac80211: Honor SW_CRYPTO_CONTROL for unicast keys in AP VLAN mode 574be221407e selinux: never allow relabeling on context mounts 6b13ae52ac75 selinux: avoid silent denials in permissive mode under RCU walk 53ffa56456fb gpio: mxc: add check to return defer probe if clock tree NOT ready a10c88bf365a Input: stmfts - acknowledge that setting brightness is a blocking call a99b9c82bde6 Input: snvs_pwrkey - initialize necessary driver data before enabling IRQ 8d5c1c039708 IB/core: Destroy QP if XRC QP fails 841487432d11 IB/core: Fix potential memory leak while creating MAD agents dabcbe58d8bc IB/core: Unregister notifier before freeing MAD security d1698f74bdbd platform/x86: intel_pmc_core: Handle CFL regmap properly 51e777c795ce platform/x86: intel_pmc_core: Fix PCH IP name d4f1e3ef9586 ASoC: stm32: fix sai driver name initialisation 7d3f7107079b ASoC: wm_adsp: Correct handling of compressed streams that restart 3b958d5e6972 ASoC: Intel: bytcr_rt5651: Revert "Fix DMIC map headsetmic mapping" 9d696f405e6d scsi: RDMA/srpt: Fix a credit leak for aborted commands f16e83170e25 staging: iio: adt7316: fix the dac write calculation ad774285beee staging: iio: adt7316: fix the dac read calculation 7041e3d6b81f staging: iio: adt7316: allow adt751x to use internal vref for all dacs 2ccaef716388 clk: qcom: Add missing freq for usb30_master_clk on 8998 8897bf03ec30 Bluetooth: mediatek: fix up an error path to restore bdev->tx_state f5ad05e680aa Bluetooth: btusb: request wake pin with NOAUTOEN 3f8497cfff3b perf/x86/amd: Update generic hardware cache events for Family 17h 96e4471d3881 block: pass no-op callback to INIT_WORK(). 14f3c36b47ed ARM: iop: don't use using 64-bit DMA masks 39839f3ec616 ARM: orion: don't use using 64-bit DMA masks 04b4d5f75ab0 fs: stream_open - opener for stream-like files so that read and write can run simultaneously without deadlock a82cfd770651 xsysace: Fix error handling in ace_setup 54ad0956ef93 sh: fix multiple function definition build errors b51fdcbe45d1 hugetlbfs: fix memory leak for resv_map 6a62bbe82343 kmemleak: powerpc: skip scanning holes in the .bss section 82e8da1f1a91 KVM: SVM: prevent DBG_DECRYPT and DBG_ENCRYPT overflow 57186663b3a1 libcxgb: fix incorrect ppmax calculation 5c5e9f23df7a net: hns: Fix WARNING when remove HNS driver with SMMU enabled c9f431017617 net: hns: fix ICMP6 neighbor solicitation messages discard problem 1ff38d33d7c4 net: hns: Fix probabilistic memory overwrite when HNS driver initialized 7713ee691767 net: hns: Use NAPI_POLL_WEIGHT for hns driver 7e7befd8dee2 net: hns: fix KASAN: use-after-free in hns_nic_net_xmit_hw() 98d6651f1878 arm64: fix wrong check of on_sdei_stack in nmi context 69da58b7386c arm/mach-at91/pm : fix possible object reference leak 8052c066e6d0 scsi: storvsc: Fix calculation of sub-channel count 03260f46f2d1 scsi: core: add new RDAC LENOVO/DE_Series device 4d043d3d2be1 vfio/pci: use correct format characters 7ce0b428c046 HID: input: add mapping for Assistant key ce9e2dc03f63 rtc: da9063: set uie_unsupported when relevant e5be04ee1766 block: use blk_free_flush_queue() to free hctx->fq in blk_mq_init_hctx 177edf25706a mfd: twl-core: Disable IRQ while suspended f0112b649525 debugfs: fix use-after-free on symlink traversal e22c11da0a86 jffs2: fix use-after-free on symlink traversal 7cce2543cbcd net: stmmac: don't log oversized frames f86c1d3f10a2 net: stmmac: fix dropping of multi-descriptor RX frames 0ab012e3df48 net: stmmac: don't overwrite discard_frame status 2170bbf19f6e net: stmmac: don't stop NAPI processing when dropping a packet cd50daabf5ee net: stmmac: ratelimit RX error logs c13a936f46e3 net: stmmac: use correct DMA buffer size in the RX descriptor 824451fdcfc2 bonding: show full hw address in sysfs for slave entries f91bb70a3616 net/mlx5: E-Switch, Fix esw manager vport indication for more vport commands 7e0548e111e5 net: hns3: fix compile error 6869dd570f10 HID: quirks: Fix keyboard + touchpad on Lenovo Miix 630 bc031095828b riscv: fix accessing 8-byte variable from RV32 0424b0b35793 igb: Fix WARN_ONCE on runtime suspend cc04b5b3314a reset: meson-audio-arb: Fix missing .owner setting of reset_controller_dev ef9533481c11 ARM: dts: rockchip: Fix gpu opp node names for rk3288 894b4fc04387 batman-adv: fix warning in function batadv_v_elp_get_throughput 7afe374cc718 batman-adv: Reduce tt_global hash refcnt only for removed entry 6957021da735 batman-adv: Reduce tt_local hash refcnt only for removed entry be807f9b4fc4 batman-adv: Reduce claim hash refcnt only for removed entry 8a734e251c0c rtc: sh: Fix invalid alarm warning for non-enabled alarm 5b5c653ddf91 rtc: cros-ec: Fail suspend/resume if wake IRQ can't be configured 2f4052ffd9be HID: debug: fix race condition with between rdesc_show() and device removal 61effc648fe4 HID: logitech: check the return value of create_singlethread_workqueue dbfef4bd8836 arm64: dts: rockchip: fix rk3328-roc-cc gmac2io tx/rx_delay 3e6b472f474a efi: Fix debugobjects warning on 'efi_rts_work' 30673786f906 nvme-loop: init nvmet_ctrl fatal_err_work when allocate 83c6688d679c USB: core: Fix bug caused by duplicate interface PM usage counter 7b73c2a056b3 USB: core: Fix unterminated string returned by usb_string() 7df0d2c7d092 usb: usbip: fix isoc packet num validation in get_pipe 512ce15023a8 USB: dummy-hcd: Fix failure to give back unlinked URBs 508954883054 USB: w1 ds2490: Fix bug caused by improper use of altsetting array 9f632afe4f39 USB: yurex: Fix protection fault after device removal f02c6460a5b6 ALSA: hda/realtek - Apply the fixup for ASUS Q325UAR 347411f9aded ALSA: hda/realtek - Fixed Dell AIO speaker noise f937634b6626 ALSA: hda/realtek - Add new Dell platform for headset mode b19c230648b5 i2c: Prevent runtime suspend of adapter when Host Notify is required 04e07919f7da i2c: Allow recovery of the initial IRQ by an I2C client device. 1e031ab31843 i2c: Clear client->irq in i2c_device_remove 63eab25ed1cc i2c: Remove unnecessary call to irq_find_mapping e89ba70e10b2 i2c: imx: correct the method of getting private data in notifier_call d1493c5cbbad i2c: synquacer: fix enumeration of slave devices ec30811209e4 mac80211: don't attempt to rename ERR_PTR() debugfs dirs be7df63d3680 mwifiex: Make resume actually do something useful again on SDIO cards 81a7534f9ef4 iwlwifi: fix driver operation for 5350 Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-31linux-yocto/4.19: update to v4.19.40Bruce Ashfield
Updating to the latest -stable release which comprises the following changes: 1656b1457209 Linux 4.19.40 cc313d405b0c ath10k: Drop WARN_ON()s that always trigger during system resume d0a5000f10e7 ALSA: line6: use dynamic buffers 68d49ff47789 KVM: nVMX: Fix size checks in vmx_set_nested_state 499bbe739d5a KVM: x86: Whitelist port 0x7e for pre-incrementing %rip d0771bd41c27 net/tls: fix copy to fragments in reencrypt dd424182bc2d net/tls: don't copy negative amounts of data in reencrypt f1fd68e93409 bnxt_en: Fix uninitialized variable usage in bnxt_rx_pkt(). 396350737326 bnxt_en: Free short FW command HWRM memory in error path in bnxt_init_one() 09a921361353 bnxt_en: Improve multicast address setup logic. 6a57fa6fa7d5 packet: validate msg_namelen in send directly 7a42cf4dfa43 selftests: fib_rule_tests: print the result and return 1 if any tests failed b563e9bbabfe sctp: avoid running the sctp state machine recursively fdd36abd9d09 rxrpc: Fix net namespace cleanup a976384b9553 net/tls: avoid NULL pointer deref on nskb->sk in fallback 1d412d873a12 net: phy: marvell: Fix buffer overrun with stats counters b48a0a1207e9 net: dsa: bcm_sf2: fix buffer overflow doing set_rxnfc 485f382f2c6d l2tp: use rcu_dereference_sk_user_data() in l2tp_udp_encap_recv() e571a33963f4 l2ip: fix possible use-after-free f78ec0cd0664 ipv6: invert flowlabel sharing check in process and user mode 39eddbb7cab3 ipv6/flowlabel: wait rcu grace period before put_pid() 1a9e0134af40 ipv6: fix races in ip6_dst_destroy() 7ea4f000c41f ipv6: A few fixes on dereferencing rt->from 3f611a479962 ipv4: ip_do_fragment: Preserve skb_iif during fragmentation ad119c970bbe Linux 4.19.39 ee096f0dc4a4 leds: trigger: netdev: use memcpy in device_name_store 2663959af22c leds: pca9532: fix a potential NULL pointer dereference 13a6a6dd3c11 ptrace: take into account saved_sigmask in PTRACE{GET,SET}SIGMASK 71f3397a1c31 iommu/amd: Reserve exclusion range in iova-domain 75a5e3e6340c kconfig/[mn]conf: handle backspace (^H) key 458a65c71029 perf machine: Update kernel map address and re-order properly 60d3b51d05a7 nvme-multipath: relax ANA state check a918af5b6fd8 gpio: of: Fix of_gpiochip_add() error path 43dba153d52b libata: fix using DMA buffers on stack 6a364b2e47a6 x86/mm: Don't exceed the valid physical address space a138f995ab84 scsi: zfcp: reduce flood of fcrscn1 trace records on multi-element RSCN 97c4f3a8853c ceph: fix use-after-free on symlink traversal 90ce58d457c2 usb: u132-hcd: fix resource leak fe71e625e23f x86/realmode: Don't leak the trampoline kernel address 04cac1dce923 leds: trigger: netdev: fix refcnt leak on interface rename 0018c21f34d6 usb: usb251xb: fix to avoid potential NULL pointer dereference 4135e588274e scsi: qla4xxx: fix a potential NULL pointer dereference a2b302e4f2fb scsi: aacraid: Insure we don't access PCIe space during AER/EEH 2c8c8ef8d3b4 scsi: mpt3sas: Fix kernel panic during expander reset 6222f1c6ed97 ARM: davinci: fix build failure with allnoconfig 5d545dde8d9d drm/meson: Uninstall IRQ handler efa69a66697c drm/meson: Fix invalid pointer in meson_drv_unbind() c87a5086d354 gpio: aspeed: fix a potential NULL pointer dereference c5eb9a424ebd drm: Fix drm_release() and device unplug 11242181f52f net: ethernet: ti: fix possible object reference leak ae6e6bbc1741 net: ibm: fix possible object reference leak b9c8db41912f net: xilinx: fix possible object reference leak b989a3e9d260 NFS: Fix a typo in nfs_init_timeout_values() e0c34051669c drm/tegra: hub: Fix dereference before check abd76731f899 ARM: dts: imx6qdl: Fix typo in imx6qdl-icore-rqs.dtsi 2b0e6d6bf088 net/sched: don't dereference a->goto_chain to read the chain index b435a79e5a87 net: macb: Add null check for PCLK and HCLK f85682bc594a staging: rtlwifi: Fix potential NULL pointer dereference of kzalloc c5750b45e406 staging: rtl8712: uninitialized memory in read_bbreg_hdl() 5a5f1decd6fc staging: rtlwifi: rtl8822b: fix to avoid potential NULL pointer dereference d55bfd0746ae staging: rtl8188eu: Fix potential NULL pointer dereference of kcalloc bfa4cd06a902 net: ks8851: Set initial carrier state to down 3796ab4828ed net: ks8851: Delay requesting IRQ until opened 3005509f88e3 net: ks8851: Reassert reset pin if chip ID check fails fb6ca157d738 net: ks8851: Dequeue RX packets explicitly cdef35e83c3f i2c: i801: Add support for Intel Comet Lake c6694e7c8bf6 ARM: dts: pfla02: increase phy reset duration 41be4abfb04d usb: gadget: net2272: Fix net2272_dequeue() edaebfe7721c usb: gadget: net2280: Fix net2280_dequeue() 346eab0d1559 usb: gadget: net2280: Fix overrun of OUT messages 710d4f29fe38 usb: dwc3: pci: add support for Comet Lake PCH ID e4705ae72736 KVM: arm/arm64: vgic-its: Take the srcu lock when parsing the memslots 0371fa033741 KVM: arm/arm64: vgic-its: Take the srcu lock when writing to guest memory 51a5d70a59ee KVM: arm64: Reset the PMU in preemptible context 2ba0421f2b77 serial: ar933x_uart: Fix build failure with disabled console 1d815c5a9434 sc16is7xx: missing unregister/delete driver on error in sc16is7xx_init() 2cbb465e526a ARM: imx51: fix a leaked reference by adding missing of_node_put f67021192cc1 s390/qeth: fix race when initializing the IP address table e634fc48661f netfilter: ip6t_srh: fix NULL pointer dereferences 506375f509b8 netfilter: fix NETFILTER_XT_TARGET_TEE dependencies a5374a3086d6 netfilter: bridge: set skb transport_header before entering NF_INET_PRE_ROUTING 5f7e5b9bba19 netfilter: nft_set_rbtree: check for inactive element after flag mismatch 2fbb4c48f138 staging, mt7621-pci: fix build without pci support 99f1ba88d7f8 staging: axis-fifo: add CONFIG_OF dependency 947bd0d9bdbc xsk: fix umem memory leak on cleanup fc055dffa575 qlcnic: Avoid potential NULL pointer dereference 98650508a9d0 net: stmmac: don't set own bit too early for jumbo frames 24a46cad0e18 ieee802154: hwsim: propagate genlmsg_reply return code f722b7789afa net: ieee802154: fix a potential NULL pointer dereference a1e34e289e15 s390: limit brk randomization to 32MB d52dfdf1845d ARM: dts: bcm283x: Fix hdmi hpd gpio pull 0311ff82b70f fs: prevent page refcount overflow in pipe_buf_get d972ebbf42ba mm: prevent get_user_pages() from overflowing page refcount 0612cae7ec6b mm: add 'try_get_page()' helper function 9f6da5fd0557 mm: make page ref count overflow check tighter and more explicit 99ae2bd0772f Revert "ACPICA: Clear status of GPEs before enabling them" 145f6a70bb9b selinux: use kernel linux/socket.h for genheaders and mdp a03957ab0fd5 Linux 4.19.38 5cb299c80651 powerpc/fsl: Add FSL_PPC_BOOK3E as supported arch for nospectre_v2 boot arg 53db65232428 net/tls: don't leak IV and record seq when offload fails d3bdd359fa53 net/tls: avoid potential deadlock in tls_set_device_offload_rx() 041b3224e8f8 net/mlx5e: Fix use-after-free after xdp_return_frame ae6b07107458 net/mlx5e: Fix the max MTU check in case of XDP b08774d38882 mlxsw: spectrum: Put MC TCs into DWRR mode 21e47998d959 mlxsw: pci: Reincrease PCI reset timeout e875a409594b net: hns: Fix WARNING when hns modules installed 7ce836e8a963 team: fix possible recursive locking when add slaves 1f78e75e85bb stmmac: pci: Adjust IOT2000 matching e97f0bc7be88 net/tls: fix refcount adjustment in fallback b02f8aa85604 net: stmmac: move stmmac_check_ether_addr() to driver probe d7b10dfe6c31 net/rose: fix unbound loop in rose_loopback_timer() ed1866aa608a net: rds: exchange of 8K and 1M pool 7da11d6a5d85 net/mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query 829fd9849e44 mlxsw: spectrum: Fix autoneg status in ethtool 250e51f856e1 ipv4: set the tcp_min_rtt_wlen range from 0 to one day 07445fea9575 ipv4: add sanity checks in ipv4_link_failure() d4ff57d0320b x86/fpu: Don't export __kernel_fpu_{begin,end}() 423497a96d4a mm: Fix warning in insert_pfn() e923c6b70ce2 x86/retpolines: Disable switch jump tables when retpolines are enabled 6cfcff3cfb0e x86, retpolines: Raise limit for generating indirect calls from switch-case e9e47779aaa7 Fix aio_poll() races aab66dfb757a aio: store event at final iocb_put() c20202c51d2b aio: keep io_event in aio_kiocb 592ea630b081 aio: fold lookup_kiocb() into its sole caller c7f2525abfec pin iocb through aio. d6b2615f7d31 aio: simplify - and fix - fget/fput for io_submit() 2afa01cd9186 aio: initialize kiocb private in case any filesystems expect it. a812f7b68a39 aio: abstract out io_event filler helper d384f8b855a5 aio: split out iocb copy from io_submit_one() 4d677689742a aio: use iocb_put() instead of open coding it ef529eead8cf aio: don't zero entire aio_kiocb aio_get_req() 730198c889d8 aio: separate out ring reservation from req allocation b3373253f0ba aio: use assigned completion handler 9101cbe70ef6 aio: clear IOCB_HIPRI 920ecc72093d rxrpc: fix race condition in rxrpc_input_packet() 5a228d5ddca2 net/rds: Check address length before reading address family e30203e4f94d net: netrom: Fix error cleanup path of nr_proto_init a0cb0faa15f3 tipc: check link name with right length in tipc_nl_compat_link_set f21fae8049cd tipc: check bearer name with right length in tipc_nl_compat_bearer_enable 9b9b0df4e788 fm10k: Fix a potential NULL pointer dereference f7dc13d6e4a2 netfilter: ebtables: CONFIG_COMPAT: drop a bogus WARN_ON 94ad68a6e570 NFS: Forbid setting AF_INET6 to "struct sockaddr_in"->sin_family. 245a94a0ffab sched/deadline: Correctly handle active 0-lag timers 6bf7d3c5c0c5 binder: fix handling of misaligned binder object 8c37f7c23c02 workqueue: Try to catch flush_work() without INIT_WORK(). 4d476a00b3f9 fs/proc/proc_sysctl.c: Fix a NULL pointer dereference bce00f419c9d intel_th: gth: Fix an off-by-one in output unassigning 9c8c39bae89a slip: make slhc_free() silently accept an error pointer f41d2de67101 USB: Consolidate LPM checks to avoid enabling LPM twice 50cda8891818 USB: Add new USB LPM helpers 8c700e902ceb drm/vc4: Fix compilation error reported by kbuild test bot 2bc7ce32eb21 Revert "drm/i915/fbdev: Actually configure untiled displays" 2c892ef09435 drm/vc4: Fix memory leak during gpu reset. 087341c0f40d powerpc/mm/radix: Make Radix require HUGETLB_PAGE 478afe341d29 ARM: 8857/1: efi: enable CP15 DMB instructions before cleaning the cache 129c337c6659 dmaengine: sh: rcar-dmac: Fix glitch in dmaengine_tx_status 0f00e1c599b3 dmaengine: sh: rcar-dmac: With cyclic DMA residue 0 is valid f7b467ad1be0 vfio/type1: Limit DMA mappings per container ac9e2bece112 Input: synaptics-rmi4 - write config register values to the right offset 37ecf31a3e5e perf/x86/intel: Update KBL Package C-state events to also include PC8/PC9/PC10 counters c0309570a5f1 sunrpc: don't mark uninitialised items as VALID. b4d4b5e4b839 nfsd: Don't release the callback slot unless it was actually held 950eec812600 ceph: fix ci->i_head_snapc leak 246d2bf32da1 ceph: ensure d_name stability in ceph_dentry_hash() 8d693ef0141c ceph: only use d_name directly when parent is locked 9b8c07129ddf sched/numa: Fix a possible divide-by-zero 1af34bf97eca RDMA/mlx5: Do not allow the user to write to the clock page 8ac57d1bdc25 IB/rdmavt: Fix frwr memory registration d0264d10ae6a trace: Fix preempt_enable_no_resched() abuse 7f9c9d1d79fd MIPS: scall64-o32: Fix indirect syscall number load ce900ddd660d lib/Kconfig.debug: fix build error without CONFIG_BLOCK 710733e539d1 zram: pass down the bvec we need to read into in the work struct a19e4a1b4c63 gpio: eic: sprd: Fix incorrect irq type setting for the sync EIC cffeb9c84d20 tracing: Fix buffer_ref pipe ops 0e78e92da2d8 tracing: Fix a memory leak by early error exit in trace_pid_write() ee231063ff95 cifs: do not attempt cifs operation on smb2+ rename error d5bf783a09a0 cifs: fix memory leak in SMB2_read 15e978391577 net: dsa: mv88e6xxx: add call to mv88e6xxx_ports_cmode_init to probe for new DSA framework 984c4e00c387 ALSA: hda/ca0132 - Fix build error without CONFIG_PCI 1e0cab1bce57 powerpc/vdso32: fix CLOCK_MONOTONIC on PPC64 ae5e0c773ca6 ipvs: fix warning on unused variable 8e59639791f2 vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock 416699b9bb90 drm/rockchip: fix for mailbox read validation. 1832b1517c2b loop: do not print warn message if partition scan is successful 070e34b627f4 tipc: handle the err returned from cmd header function 8766cc7d0d1d ext4: fix some error pointer dereferences 816e3e2258e8 net: mvpp2: fix validate for PPv2.1 e7ddd6af17e4 net/ibmvnic: Fix RTNL deadlock during device reset ffc1d85e8c5f netfilter: nf_tables: bogus EBUSY in helper removal from transaction e313d5da057b netfilter: nf_tables: bogus EBUSY when deleting set after flush 25ddad73070c netfilter: nf_tables: fix set double-free in abort path 8906234c5015 netfilter: nft_compat: use .release_ops and remove list of extension 4f67e8976f7b netfilter: nft_compat: don't use refcount_inc on newly allocated entry af26f3e2903b netfilter: nf_tables: unbind set in rule from commit path 27458b5457d3 netfilter: nf_tables: warn when expr implements only one of activate/deactivate cb2e343d1d85 netfilter: nft_compat: destroy function must not have side effects 3dbba8ebb066 netfilter: nf_tables: split set destruction in deactivate and destroy phase 7693bae6b314 netfilter: nft_compat: make lists per netns db99f122cbf8 netfilter: nft_compat: use refcnt_t type for nft_xt reference count 19bb613acb9a Linux 4.19.37 cdd369fe0f98 kernel/sysctl.c: fix out-of-bounds access when setting file-max ac54bc121e1f Revert "locking/lockdep: Add debug_locks check in __lock_downgrade()" 9c1862566176 i2c-hid: properly terminate i2c_hid_dmi_desc_override_table[] array 52dde1160f17 ASoC: rockchip: add missing INTERLEAVED PCM attribute a782f8475715 tools include: Adopt linux/bits.h 6580376fe810 percpu: stop printing kernel addresses 8a6f2ea0c3dd ALSA: info: Fix racy addition/deletion of nodes 1343fd8f9629 mm/vmstat.c: fix /proc/vmstat format for CONFIG_DEBUG_TLBFLUSH=y CONFIG_SMP=n 628c99a836dd device_cgroup: fix RCU imbalance in error case c3edd427d538 sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup c21bcc2352e9 Revert "kbuild: use -Oz instead of -Os when using clang" 1c36862e8be8 tpm: Fix the type of the return value in calc_tpm2_event_size() 18af9b7b9138 tpm/tpm_i2c_atmel: Return -E2BIG when the transfer is incomplete 7de43cb71116 modpost: file2alias: check prototype of handler aa0e8cc9d7a8 modpost: file2alias: go back to simple devtable lookup 87eadc0b8c2a mmc: sdhci: Handle auto-command errors ba8a6c055677 mmc: sdhci: Rename SDHCI_ACMD12_ERR and SDHCI_INT_ACMD12ERR b2be40b73b29 mmc: sdhci: Fix data command CRC error handling be608583d9c4 nfit/ars: Avoid stale ARS results 40221d56ae28 nfit/ars: Allow root to busy-poll the ARS state machine bc18c2593635 nfit/ars: Introduce scrub_flags 82a13a006ed5 nfit/ars: Remove ars_start_flags cd37fd46b485 timers/sched_clock: Prevent generic sched_clock wrap caused by tick_freeze() 5680b0635cda x86/speculation: Prevent deadlock on ssb_state::lock 90e17512f1e4 perf/x86: Fix incorrect PEBS_REGS 293926b37013 x86/cpu/bugs: Use __initconst for 'const' init data f45829e6250a perf/x86/amd: Add event map for AMD Family 17h ba407222f563 drm/amdgpu/gmc9: fix VM_L2_CNTL3 programming 39cad03c4360 mac80211: do not call driver wake_tx_queue op during reconfig 852de0d53d14 rt2x00: do not increment sequence number while re-transmitting 23a926e5edd9 kprobes: Fix error check when reusing optimized probes 426e2a8024c2 kprobes: Mark ftrace mcount handler functions nokprobe 1fab567a270b x86/kprobes: Verify stack frame on kretprobe 5105fc758bdc arm64: futex: Restore oldval initialization to work around buggy compilers 96800ba9e565 drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 fbe5cff93229 crypto: x86/poly1305 - fix overflow during partial reduction dacdbc115d23 ipmi: fix sleep-in-atomic in free_user at cleanup SRCU user->release_barrier 6ff17bc5936e coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping 3e1b3e4d3c83 Revert "svm: Fix AVIC incomplete IPI emulation" ee4b8e266229 Revert "scsi: fcoe: clear FC_RP_STARTED flags when receiving a LOGO" 1aa2682d0a98 scsi: core: set result when the command cannot be dispatched 8f2ef0e8f967 vt: fix cursor when clearing the screen 38b7f09a9e83 serial: sh-sci: Fix HSCIF RX sampling point calculation de6d6b8902fb serial: sh-sci: Fix HSCIF RX sampling point adjustment ec96f65e1214 Input: elan_i2c - add hardware ID for multiple Lenovo laptops b50e435df2d8 ALSA: core: Fix card races between register and disconnect 4171b6ee9328 ALSA: hda/realtek - add two more pin configuration sets to quirk table 4e78a1fb8d1d staging: comedi: ni_usb6501: Fix possible double-free of ->usb_rx_buf 09f9bacae118 staging: comedi: ni_usb6501: Fix use of uninitialized mutex edf2f548baa9 staging: comedi: vmk80xx: Fix possible double-free of ->usb_rx_buf 1f01a970b8c2 staging: comedi: vmk80xx: Fix use of uninitialized semaphore a1da981f6643 staging: most: core: use device description as name b007c64d860f io: accel: kxcjk1013: restore the range after resume. bbe0bed4647c iio: core: fix a possible circular locking dependency 98171e1947b6 iio: adc: at91: disable adc channel interrupt in timeout case 36971130bb2f iio: Fix scan mask selection 0e47edde9132 iio: dac: mcp4725: add missing powerdown bits in store eeprom 5ad173ea6c3a iio: ad_sigma_delta: select channel when reading register 42eae0cff22a iio: cros_ec: Fix the maths for gyro scale calculation adfb0f0b17a3 iio:chemical:bme680: Fix SPI read interface a3117576a73f iio:chemical:bme680: Fix, report temperature in millidegrees f7ee6890caa5 iio/gyro/bmg160: Use millidegrees for temperature scale 8bd3fd46ec23 iio: gyro: mpu3050: fix chip ID reading 6f3e66b155f0 staging: iio: ad7192: Fix ad7193 channel address c54d1258c637 Staging: iio: meter: fixed typo c9e34935a351 KVM: x86: svm: make sure NMI is injected after nmi_singlestep 18cf09a81771 KVM: x86: Don't clear EFER during SMM transitions for 32-bit vCPU 2fcee5eaae6e cifs: fix handle leak in smb2_query_symlink() c69330a855ab cifs: Fix use-after-free in SMB2_read 8fb89b43b65f cifs: Fix use-after-free in SMB2_write 8092ecc306d8 CIFS: keep FileInfo handle live during oplock break 6e2081f29392 net: IP6 defrag: use rbtrees in nf_conntrack_reasm.c 684685326ab0 net: IP6 defrag: use rbtrees for IPv6 defrag 702ddf862d9d net: IP defrag: encapsulate rbtree defrag code into callable functions e24be8e38cd7 sch_cake: Simplify logic in cake_select_tin() 8d9051a4680a nfp: flower: remove vlan CFI bit from push vlan action 06f7d2182f9d nfp: flower: replace CFI with vlan present cbce0413f783 sch_cake: Make sure we can write the IP header before changing DSCP bits 490532225e20 sch_cake: Use tc_skb_protocol() helper for getting packet protocol 5f72cb2ab51d route: Avoid crash from dereferencing NULL rt->from 1d2499b08600 net/mlx5: FPGA, tls, idr remove on flow delete 785833b9eee0 net/tls: prevent bad memory access in tls_is_sk_tx_device_offloaded() 7cfddb81a817 net/mlx5: FPGA, tls, hold rcu read lock a bit longer d1785bea2f34 net: thunderx: don't allow jumbo frames with XDP 9de22b997fe4 net: thunderx: raise XDP MTU to 1508 7ba5ec69e1a7 ipv4: ensure rcu_read_lock() in ipv4_link_failure() 8a430e56a648 ipv4: recompile ip options in ipv4_link_failure b82df42059fb vhost: reject zero size iova range 242e5746cb47 tipc: missing entries in name table of publications a60a47206a31 team: set slave to promisc if team is already in promisc mode 6728c6174a47 tcp: tcp_grow_window() needs to respect tcp_space() 1cd878836822 net: fou: do not use guehdr after iptunnel_pull_offloads in gue_udp_recv 2804598764f9 net: Fix missing meta data in skb with vlan packet 97fd88e04c8d net: bridge: multicast: use rcu to access port list from br_multicast_start_querier 08b0b4f28008 net: bridge: fix per-port af_packet sockets bcb964012d1b net: atm: Fix potential Spectre v1 vulnerabilities fae6053d7611 failover: allow name change on IFF_UP slave interfaces 2a458eddc4c2 bonding: fix event handling for stacked bonds c98875d930e9 Linux 4.19.36 0c00f71e7d7c appletalk: Fix compile regression 9e91db59e3b9 mm: hide incomplete nr_indirectly_reclaimable in sysfs d49dea545af4 mm: hide incomplete nr_indirectly_reclaimable in /proc/zoneinfo 7a4626798276 IB/hfi1: Failed to drain send queue when QP is put into error state e8eef7ad9841 bpf: fix use after free in bpf_evict_inode 40c6d718d78c include/linux/swap.h: use offsetof() instead of custom __swapoffset macro 48b0309f85ae f2fs: fix to dirty inode for i_mode recovery 11582064271d rxrpc: Fix client call connect/disconnect race a7e90c1892d9 lib/div64.c: off by one in shift 6c42507f426b appletalk: Fix use-after-free in atalk_proc_exit 539282e9cd9b drm/amdkfd: use init_mqd function to allocate object for hid_mqd (CI) 91583411b5d1 ARM: 8839/1: kprobe: make patch_lock a raw_spinlock_t 1b871f39097a drm/nouveau/volt/gf117: fix speedo readout register ad854fa3c8dc PCI: Blacklist power management of Gigabyte X299 DESIGNARE EX PCIe ports 4984d918cd46 coresight: cpu-debug: Support for CA73 CPUs 2a3c322d46e0 Revert "ACPI / EC: Remove old CLEAR_ON_RESUME quirk" 5f516d0ba082 crypto: axis - fix for recursive locking from bottom half 862adb5b0da6 drm/panel: panel-innolux: set display off in innolux_panel_unprepare 2be8987a076f lkdtm: Add tests for NULL pointer dereference 55588aebde38 lkdtm: Print real addresses 8387c1455d34 soc/tegra: pmc: Drop locking from tegra_powergate_is_powered() 29b934dd5fa0 scsi: core: Avoid that system resume triggers a kernel warning 38855a84d891 iommu/dmar: Fix buffer overflow during PCI bus notification 8c5e9ea11730 net: ip6_gre: fix possible NULL pointer dereference in ip6erspan_set_version d7a90ee5aadd crypto: sha512/arm - fix crash bug in Thumb2 build 1f52fa127898 crypto: sha256/arm - fix crash bug in Thumb2 build bbbe47463da9 xfrm: destroy xfrm_state synchronously on net exit path 5be4bb315de2 net/rds: fix warn in rds_message_alloc_sgs d801282dfd2a ACPI: EC / PM: Disable non-wakeup GPEs for suspend-to-idle e434fbf4f049 ALSA: hda: fix front speakers on Huawei MBXP b10cc0837472 drm/ttm: Fix bo_global and mem_global kfree error cb09e99b9ad3 platform/x86: Add Intel AtomISP2 dummy / power-management driver 491dee743d6b kernel: hung_task.c: disable on suspend e9603cffb1ca cifs: fallback to older infolevels on findfirst queryinfo retry fc34758d4af6 net: stmmac: Set OWN bit for jumbo frames 8722566b7870 f2fs: cleanup dirty pages if recover failed 263ed7e66b17 netfilter: nf_flow_table: remove flowtable hook flush routine in netns exit routine 19e6ff0146ef compiler.h: update definition of unreachable() f35e2a685c81 KVM: nVMX: restore host state in nested_vmx_vmexit for VMFail 3d11fc93aa28 HID: usbhid: Add quirk for Redragon/Dragonrise Seymur 2 1424b7fefd6b ACPI / SBS: Fix GPE storm on recent MacBookPro's 0d41c7b3860e usbip: fix vhci_hcd controller counting 360186d8ab02 ARM: samsung: Limit SAMSUNG_PM_CHECK config option to non-Exynos platforms 1475ce4ff957 pinctrl: core: make sure strcmp() doesn't get a null parameter 8e271100efa6 HID: i2c-hid: override HID descriptors for certain devices 09b6c08061bb Bluetooth: Fix debugfs NULL pointer dereference 6496b9636f74 media: au0828: cannot kfree dev before usb disconnect 6947d853be19 powerpc/pseries: Remove prrn_work workqueue 7863304bc00f serial: uartps: console_setup() can't be placed to init section 1f2b1c6ab353 netfilter: xt_cgroup: shrink size of v2 path 14b183214c08 f2fs: fix to do sanity check with current segment number 7fcce1828e5f ASoC: Fix UBSAN warning at snd_soc_get/put_volsw_sx() 4369f8a38085 9p locks: add mount option for lock retry interval db77c7890ed7 9p: do not trust pdu content for stat item size f9368366b4d1 f2fs: fix to avoid NULL pointer dereference on se->discard_map de1fd69b6541 rsi: improve kernel thread handling to fix kernel panic 93b7c722637c gpio: pxa: handle corner case of unprobed device 13cc3e6b2a18 drm/cirrus: Use drm_framebuffer_put to avoid kernel oops in clean-up 6fd66bec6d6a ext4: prohibit fstrim in norecovery mode 83e3e89d6639 x86/gart: Exclude GART aperture from kcore 40276e4e2fd0 fix incorrect error code mapping for OBJECTID_NOT_FOUND 777cd2681b2d x86/hw_breakpoints: Make default case in hw_breakpoint_arch_parse() return an error cff04fad89b9 iommu/vt-d: Check capability before disabling protected memory 181117a1b4f3 drm/nouveau/debugfs: Fix check of pm_runtime_get_sync failure 276084f0e017 x86/cpu/cyrix: Use correct macros for Cyrix calls on Geode processors 16dab2916615 x86/hyperv: Prevent potential NULL pointer dereference 30d9b740e201 x86/hpet: Prevent potential NULL pointer dereference ac0343a48e7e irqchip/mbigen: Don't clear eventid when freeing an MSI f3c3b0f1fae5 irqchip/stm32: Don't clear rising/falling config registers at init 41b1234677bd drm/exynos/mixer: fix MIXER shadow registry synchronisation code bde271d1ad0e blk-iolatency: #include "blk.h" b63df738ce7d PM / Domains: Avoid a potential deadlock 19302c51c043 ACPI / utils: Drop reference in test for device presence 00059edd3121 perf tests: Fix a memory leak in test__perf_evsel__tp_sched_test() 2c843ae984a8 perf tests: Fix memory leak by expr__find_other() in test__expr() a077618a3af8 perf tests: Fix a memory leak of cpu_map object in the openat_syscall_event_on_all_cpus test cf050670d092 perf evsel: Free evsel->counts in perf_evsel__exit() 28848061d882 perf hist: Add missing map__put() in error case bb644ded9e6d perf top: Fix error handling in cmd_top() df894a047f37 perf build-id: Fix memory leak in print_sdt_events() 871aa38e9525 perf config: Fix a memory leak in collect_config() 9007d724cb08 perf config: Fix an error in the config template documentation 93d449bd6552 perf list: Don't forget to drop the reference to the allocated thread_map c5d9104281b9 tools/power turbostat: return the exit status of a command ada35b525486 x86/mm: Don't leak kernel addresses 52466ab20393 sched/core: Fix buffer overflow in cgroup2 property cpu.max a8c1de3ab8b6 sched/cpufreq: Fix 32-bit math overflow a629c32ac2d1 scsi: iscsi: flush running unbind operations when removing a session 5b67d518eaaf thermal/intel_powerclamp: fix truncated kthread name 193dd213bebd thermal/int340x_thermal: fix mode setting 10313672b3f0 thermal/int340x_thermal: Add additional UUIDs c5161c689e81 thermal: bcm2835: Fix crash in bcm2835_thermal_debugfs 8fd403fc2a8e thermal: samsung: Fix incorrect check after code merge 0644ee713c00 thermal/intel_powerclamp: fix __percpu declaration of worker_data a803600c5b90 ALSA: opl3: fix mismatch between snd_opl3_drum_switch definition and declaration 94a6f47a5ecb mmc: davinci: remove extraneous __init annotation f596ad9ea8a4 i40iw: Avoid panic when handling the inetdev event 74ed2226e65a IB/mlx4: Fix race condition between catas error reset and aliasguid flows 5e4dc4b6fc10 drm/udl: use drm_gem_object_put_unlocked. cbba1f554b4f auxdisplay: hd44780: Fix memory leak on ->remove() 317e716a8ad9 ALSA: sb8: add a check for request_region 17829309ec00 ALSA: echoaudio: add a check for ioremap_nocache a793860c0f52 ext4: report real fs size after failed resize f5a94fd3b375 ext4: add missing brelse() in add_new_gdb_meta_bg() 90a1327e4ed3 ext4: avoid panic during forced reboot 673e23ce80a6 perf/core: Restore mmap record type correctly ca306c17d2ed inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() 618490ba5841 arc: hsdk_defconfig: Enable CONFIG_BLK_DEV_RAM 2296eedef0c5 ARC: u-boot args: check that magic number is correct 4b0e041c9dad Linux 4.19.35 59bf185ae6b7 KVM: x86: nVMX: fix x2APIC VTPR read intercept 119031be7b0a KVM: x86: nVMX: close leak of L0's x2APIC MSRs (CVE-2019-3887) f8053df634d4 ACPICA: AML interpreter: add region addresses in global list during initialization fad502a9439e arm64: dts: rockchip: Fix vcc_host1_5v GPIO polarity on rk3328-rock64 c963475972f6 arm64: dts: rockchip: fix vcc_host1_5v pin assign on rk3328-rock64 aa9ee4b1ed46 dm integrity: fix deadlock with overlapping I/O 469b40a429c5 dm table: propagate BDI_CAP_STABLE_WRITES to fix sporadic checksum errors 4f5c99e0421c dm: revert 8f50e358153d ("dm: limit the max bio size as BIO_MAX_PAGES * PAGE_SIZE") 30dc4d7b299d dm integrity: change memcmp to strncmp in dm_integrity_ctr 5be6e02cfbdf PCI: pciehp: Ignore Link State Changes after powering off a slot 250fef8de77c PCI: Add function 1 DMA alias quirk for Marvell 9170 SATA controller 056264656a67 x86/perf/amd: Remove need to check "running" bit in NMI handler 23d39b0af08e x86/perf/amd: Resolve NMI latency issues for active PMCs e5a791b4ab56 x86/perf/amd: Resolve race condition when disabling PMC 4b004504bfcc x86/asm: Use stricter assembly constraints in bitops 356ae4deab4b x86/asm: Remove dead __GNUC__ conditionals f7b778b9007e xtensa: fix return_address cb75a0c5d381 sched/fair: Do not re-read ->h_load_next during hierarchical load calculation ed3adb562fc8 xen: Prevent buffer overflow in privcmd ioctl 84c6c2af4c53 arm64: backtrace: Don't bother trying to unwind the userspace stack 1ec54cee6333 arm64: dts: rockchip: fix rk3328 rgmii high tx error rate 82a30a5d60e3 arm64: futex: Fix FUTEX_WAKE_OP atomic ops with non-zero result value 4362ff977bc6 ARM: dts: at91: Fix typo in ISC_D0 on PC9 627a7d5a4422 ARM: dts: am335x-evm: Correct the regulators for the audio codec 57a9c1f40f5b ARM: dts: am335x-evmsk: Correct the regulators for the audio codec 3ba48b3cf850 ARM: dts: rockchip: fix rk3288 cpu opp node reference 32fdac09765d virtio: Honour 'may_reduce_num' in vring_create_virtqueue 8b4f68b47448 genirq: Initialize request_mutex if CONFIG_SPARSE_IRQ=n cd5b06a93997 genirq: Respect IRQCHIP_SKIP_SET_WAKE in irq_chip_set_wake_parent() 543bb48dc48b block: fix the return errno for direct IO 2591bfc68282 block: do not leak memory in bio_copy_user_iov() 7af20b60f6db riscv: Fix syscall_get_arguments() and syscall_set_arguments() 54fb5c9da6cd btrfs: prop: fix vanished compression property after failed set fbfbb996d58e btrfs: prop: fix zstd compression parameter validation 16515acd5bc3 Btrfs: do not allow trimming when a fs is mounted with the nologreplay option e6265e368022 ASoC: fsl_esai: fix channel swap issue when stream starts 19b0a7f5a083 ASoC: intel: Fix crash at suspend/resume after failed codec registration 43f47331a4ce mm: writeback: use exact memcg dirty counts 576f22ac47ba include/linux/bitrev.h: fix constant bitrev c4f103f6ac3a kvm: svm: fix potential get_num_contig_pages overflow 93d60348edcb drm/udl: add a release method and delay modeset teardown df4106f23d0b drm/i915/gvt: do not deliver a workload if its creation fails a5277bcc1b7d alarmtimer: Return correct remaining time 5db86e2a9b36 parisc: also set iaoq_b in instruction_pointer_set() 53bb8444eab2 parisc: regs_return_value() should return gpr28 41cf8111f3cb parisc: Detect QEMU earlier in boot process ba5765a243ed arm64: dts: rockchip: fix rk3328 sdmmc0 write errors 9a62d69114d7 mm/huge_memory.c: fix modifying of page protection by insert_pfn_pmd() b3a8a3728d7e ALSA: hda - Add two more machines to the power_save_blacklist bfea74941d6d ALSA: hda/realtek - Add quirk for Tuxedo XC 1509 c6d25f0b3653 ALSA: hda/realtek: Enable headset MIC of Acer TravelMate B114-21 with ALC233 73b50a56e51e ALSA: seq: Fix OOB-reads from strlcpy d4b4aeea5506 ACPICA: Namespace: remove address node from global list after method termination ed52b07bd698 ACPICA: Clear status of GPEs before enabling them 370004024aec hwmon: (w83773g) Select REGMAP_I2C to fix build error 4ebab60d6561 tty: ldisc: add sysctl to prevent autoloading of ldiscs 894dc8495898 tty: mark Siemens R3964 line discipline as BROKEN 902eaef7781c arm64: kaslr: Reserve size of ARM64_MEMSTART_ALIGN in linear region 40177a7931e0 netfilter: nfnetlink_cttimeout: fetch timeouts for udplite and gre, too c2d27b330a98 netfilter: nfnetlink_cttimeout: pass default timeout policy to obj_to_nlattr 564f0391b783 Revert "clk: meson: clean-up clock registration" 3412671a781b lib/string.c: implement a basic bcmp c7415f2a3ad6 x86/vdso: Drop implicit common-page-size linker flag f66a52d991de kbuild: clang: choose GCC_TOOLCHAIN_DIR not on LD 23605a4664ae kbuild: deb-pkg: fix bindeb-pkg breakage when O= is used da9b353c78b8 net/mlx5e: Update xon formula e2d92a74a353 net/mlx5e: Update xoff formula eab86503fec0 net: mlx5: Add a missing check on idr_find, free buf b787544dc5e7 r8169: disable default rx interrupt coalescing on RTL8168 55a7f7b20c40 net: core: netif_receive_skb_list: unlist skb before passing to pt->func a2ef7723a13c net: ip6_gre: fix possible use-after-free in ip6erspan_rcv 5c6f2f4c0e9f net: ip_gre: fix possible use-after-free in erspan_rcv ecee513a5273 bnxt_en: Reset device on RX buffer errors. d2d055a55403 bnxt_en: Improve RX consumer index validity check. a333fcc41075 nfp: disable netpoll on representors 81da1314596c nfp: validate the return code from dev_queue_xmit() c297e8814578 net/mlx5e: Add a lock on tir list 9441317513b7 net/mlx5e: Fix error handling when refreshing TIRs 0516ef27ddba vrf: check accept_source_route on the original netdevice 7243e3520956 tcp: fix a potential NULL pointer dereference in tcp_sk_exit 0e0afb06e11c tcp: Ensure DCTCP reacts to losses 87349583e517 sctp: initialize _pad of sockaddr_in before copying to user memory 1e4a7e7869ac r8169: disable ASPM again 84dc2f872d2d qmi_wwan: add Olicard 600 ec0e32da41a6 openvswitch: fix flow actions reallocation eeedfa94c195 net/sched: fix ->get helper of the matchall cls 15c0770e2e83 net/sched: act_sample: fix divide by zero in the traffic path 78b4bf26a8a7 net: rds: force to destroy connection if t_sock is NULL in rds_tcp_kill_sock(). a1c2f3229734 netns: provide pure entropy for net_hash_mix() 53a1906859a2 net/mlx5: Decrease default mr cache size b87ec81362ac net-gro: Fix GRO flush when receiving a GSO packet. 80c205813d3f net: ethtool: not call vzalloc for zero sized memory request b7b058315577 kcm: switch order of device registration to fix a crash 42f1fa0fcf55 ipv6: sit: reset ip header pointer in ipip6_rcv ea06796f8857 ipv6: Fix dangling pointer when ipv6 fragment 8e4b4da3d3d9 ip6_tunnel: Match to ARPHRD_TUNNEL6 for dev type 167019572ca8 ibmvnic: Fix completion structure initialization 9a7c4f5acc0e hv_netvsc: Fix unwanted wakeup after tx_disable 902eca1a0ccf powerpc/tm: Limit TM code inside PPC_TRANSACTIONAL_MEM 8ad895bf4b8b drm/i915/gvt: do not let pin count of shadow mm go negative 646f8e01fc37 kvm: nVMX: NMI-window and interrupt-window exiting should wake L2 from HLT Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-31linux-yocto/5.0: update to v5.0.13Bruce Ashfield
Integrating the korg stable commits that comprise the following changes: e5b9547b1aa3 Linux 5.0.13 d467f3acebc5 ath10k: Drop WARN_ON()s that always trigger during system resume 3c13f6cd254d iwlwifi: mvm: properly check debugfs dentry before using it c391e6198768 ALSA: line6: use dynamic buffers 4c38bd0d4cd6 KVM: nVMX: Fix size checks in vmx_set_nested_state 119ac69c0772 KVM: x86: Whitelist port 0x7e for pre-incrementing %rip a31a8f55c8e8 net/tls: fix copy to fragments in reencrypt f7f4d4b85b83 net/tls: don't copy negative amounts of data in reencrypt 126255f1ef2b bnxt_en: Fix uninitialized variable usage in bnxt_rx_pkt(). 95fc8b4b4367 bnxt_en: Fix statistics context reservation logic. 1c38ed7b5ef6 bnxt_en: Pass correct extended TX port statistics size to firmware. 4348cae3a6e1 bnxt_en: Fix possible crash in bnxt_hwrm_ring_free() under error conditions. 76dba4d8d0db bnxt_en: Free short FW command HWRM memory in error path in bnxt_init_one() 4aaaa658466a bnxt_en: Improve multicast address setup logic. 7a0d81d12f62 udp: fix GRO packet of death 8858d7234542 udp: fix GRO reception in case of length mismatch b58d12d306ae tcp: add sanity tests in tcp_add_backlog() 4d5aaae5fa0e selftests: fib_rule_tests: Fix icmp proto with ipv6 3362ece2719c packet: in recvmsg msg_name return at least sizeof sockaddr_ll 3a0701b8d93a packet: validate msg_namelen in send directly 02694885a2be selftests: fib_rule_tests: print the result and return 1 if any tests failed 484d404fdc2a sctp: avoid running the sctp state machine recursively f8970584f08c rxrpc: Fix net namespace cleanup 90cb17d3df6f net/tls: avoid NULL pointer deref on nskb->sk in fallback 52c89e455b5c net: phy: marvell: Fix buffer overrun with stats counters 801038cca48c net: dsa: bcm_sf2: fix buffer overflow doing set_rxnfc 31f4cb2730d8 l2tp: use rcu_dereference_sk_user_data() in l2tp_udp_encap_recv() f86adc57e7db l2ip: fix possible use-after-free d1fa4f8784bb ipv6: invert flowlabel sharing check in process and user mode 787a77cccb18 ipv6/flowlabel: wait rcu grace period before put_pid() d0aa794674e5 ipv6: fix races in ip6_dst_destroy() c61a4beb31f0 ipv6: A few fixes on dereferencing rt->from 5a06ba5ed2ae ipv4: ip_do_fragment: Preserve skb_iif during fragmentation 6006d5b02522 Linux 5.0.12 310f9b1e52c0 leds: trigger: netdev: use memcpy in device_name_store 004ec01370bc leds: pca9532: fix a potential NULL pointer dereference 107cfb99c81f ptrace: take into account saved_sigmask in PTRACE{GET,SET}SIGMASK 87eaf3d8ac51 kasan: fix variable 'tag' set but not used warning 514860ee6633 iommu/amd: Reserve exclusion range in iova-domain 8bd7d23a4a76 kconfig/[mn]conf: handle backspace (^H) key 44fe72aeaae8 perf machine: Update kernel map address and re-order properly 441d23c87644 perf cs-etm: Add missing case value b8bc52cd62e8 nvmet: fix error flow during ns enable 163719bdcd9c nvmet: fix building bvec from sg list 2e7d5b2e1fa0 nvme-multipath: relax ANA state check a72f60dbb557 gpio: of: Fix of_gpiochip_add() error path 41a94b1909a4 KVM: selftests: complete IO before migrating guest state a312d0eaf90d KVM: selftests: disable stack protector for all KVM tests 77507936fea3 KVM: selftests: explicitly disable PIE for tests e478d1c9b585 KVM: selftests: assert on exit reason in CR4/cpuid sync test 02a7fc6c77d5 x86/kvm/hyper-v: avoid spurious pending stimer on vCPU init e10edda577cc kvm/x86: Move MSR_IA32_ARCH_CAPABILITIES to array emulated_msrs 3d714ded80f6 KVM: SVM: Workaround errata#1096 (insn_len maybe zero on SMAP violation) 5369433777ec KVM: nVMX: Do not inherit quadrant and invalid for the root shadow EPT e8b8dde69f81 gpio: of: Check for "spi-cs-high" in child instead of parent node 0e48494c0edf gpio: of: Check propname before applying "cs-gpios" quirks fb853a4a7748 afs: Fix StoreData op marshalling c6d02b1ea4d7 kbuild: skip parsing pre sub-make code for recursion 479e1afd232e libata: fix using DMA buffers on stack 8d3c7282cec4 x86/mm: Don't exceed the valid physical address space ab4a5df699b5 scsi: zfcp: reduce flood of fcrscn1 trace records on multi-element RSCN b0921da055f1 ceph: fix use-after-free on symlink traversal 1ab2566c5329 usb: u132-hcd: fix resource leak 4f5d11bf2eca x86/realmode: Don't leak the trampoline kernel address 89ae17728a98 SUNRPC: fix uninitialized variable warning ec44e4273006 leds: trigger: netdev: fix refcnt leak on interface rename facfcac8357d usb: usb251xb: fix to avoid potential NULL pointer dereference 3ce3290dee84 scsi: qla4xxx: fix a potential NULL pointer dereference ab602d0043a4 scsi: aacraid: Insure we don't access PCIe space during AER/EEH 9a5795520b91 scsi: mpt3sas: Fix kernel panic during expander reset 08dd1acccb43 staging: vc04_services: Fix an error code in vchiq_probe() b2814ce32d47 sbitmap: order READ/WRITE freed instance and setting clear bit 44a7849ecbd2 ARM: davinci: fix build failure with allnoconfig e24c5428060f drm/meson: Uninstall IRQ handler da9c64dc934a drm/meson: Fix invalid pointer in meson_drv_unbind() 55a5c46268ff gpio: aspeed: fix a potential NULL pointer dereference e9917fd844ec drm: Fix drm_release() and device unplug c4cdbd4075a6 net: ethernet: ti: fix possible object reference leak 6e4f7c129b24 net: ibm: fix possible object reference leak 3da122192cde net: xilinx: fix possible object reference leak 8dcf6dce4023 NFS: Fix a typo in nfs_init_timeout_values() 4d88134c2f7c drm/tegra: hub: Fix dereference before check ec44a9a47e7e ARM: dts: imx6qdl: Fix typo in imx6qdl-icore-rqs.dtsi 4da511ff427b net/sched: don't dereference a->goto_chain to read the chain index fe9fae9c5bff net: macb: Add null check for PCLK and HCLK ead946dc3824 net: phy: Add DP83825I to the DP83822 driver 9bd87bbd2988 staging: rtlwifi: Fix potential NULL pointer dereference of kzalloc 62d91f5a1ea4 staging: rtl8712: uninitialized memory in read_bbreg_hdl() 6300a60f50b9 staging: rtlwifi: rtl8822b: fix to avoid potential NULL pointer dereference 5fad07771fb8 staging: rtl8188eu: Fix potential NULL pointer dereference of kcalloc fe4e7a03c742 net: ks8851: Set initial carrier state to down 372b41d6efe3 net: ks8851: Delay requesting IRQ until opened 860fd08630a6 net: ks8851: Reassert reset pin if chip ID check fails 75e3e76a45c6 net: ks8851: Dequeue RX packets explicitly 07c5093a04f8 KVM: arm/arm64: Fix handling of stage2 huge mappings e68cc902c624 i2c: i801: Add support for Intel Comet Lake bcc78b63f0b4 ARM: dts: pfla02: increase phy reset duration 2af87002a5e4 usb: gadget: net2272: Fix net2272_dequeue() 202db3b5c17c usb: gadget: net2280: Fix net2280_dequeue() ad7be5bfe969 usb: gadget: net2280: Fix overrun of OUT messages e5a7f0905664 usb: dwc3: pci: add support for Comet Lake PCH ID 7f482404c11e KVM: arm/arm64: vgic-its: Take the srcu lock when parsing the memslots d2eecdbc6eca KVM: arm/arm64: vgic-its: Take the srcu lock when writing to guest memory d6d23d335672 arm64: KVM: Always set ICH_HCR_EL2.EN if GICv4 is enabled e38694c6b9a8 KVM: arm64: Reset the PMU in preemptible context 4343cbf52e36 serial: ar933x_uart: Fix build failure with disabled console d25b0c89b3b9 sc16is7xx: missing unregister/delete driver on error in sc16is7xx_init() 0bb1f79a1427 ARM: imx51: fix a leaked reference by adding missing of_node_put 42ed22a8b969 s390/qeth: fix race when initializing the IP address table f0028f723428 netfilter: ip6t_srh: fix NULL pointer dereferences 21fde4fcbbd2 netfilter: fix NETFILTER_XT_TARGET_TEE dependencies eb213c54aaac netfilter: bridge: set skb transport_header before entering NF_INET_PRE_ROUTING 0f9c88c5ccc9 netfilter: nft_set_rbtree: check for inactive element after flag mismatch 7f0d096410af staging, mt7621-pci: fix build without pci support 6c41d389904c staging: axis-fifo: add CONFIG_OF dependency 5227fe96b107 xsk: fix umem memory leak on cleanup 9fc5c6e8fce8 qlcnic: Avoid potential NULL pointer dereference 2e75be8dd6fa net: stmmac: fix jumbo frame sending with non-linear skbs 53485ee41fc3 net: stmmac: don't set own bit too early for jumbo frames 099a26557db9 Btrfs: fix file corruption after snapshotting due to mix of buffered/DIO writes 61a9e0f4cc86 ieee802154: hwsim: propagate genlmsg_reply return code 645dc42f97d8 net: ieee802154: fix a potential NULL pointer dereference edb616838408 mt76: mt76x2: fix 2.4 GHz channel gain settings 63019ec07c61 mt76: mt76x2: fix external LNA gain settings a495f4c9afbf mt76x02: fix hdr pointer in write txwi for USB 1d568d7476da s390: limit brk randomization to 32MB 87240adabb46 ARM: dts: bcm283x: Fix hdmi hpd gpio pull 9979cd3953b9 arm64: dts: renesas: r8a77990: Fix SCIF5 DMA channels 27f651142eec fs: prevent page refcount overflow in pipe_buf_get ad73e3a19906 mm: prevent get_user_pages() from overflowing page refcount bdc8dfd65873 mm: add 'try_get_page()' helper function 258fc3baeb4b mm: make page ref count overflow check tighter and more explicit cc37cb69fbdc drm/i915: Do not enable FEC without DSC 742c556944e1 Revert "ACPICA: Clear status of GPEs before enabling them" 635e82b9bdc8 selinux: use kernel linux/socket.h for genheaders and mdp d5a2675b207d Linux 5.0.11 bcf0c1f4d564 net/tls: don't leak IV and record seq when offload fails 2adb99038ae4 net/tls: avoid potential deadlock in tls_set_device_offload_rx() c01e42fdccf5 net/mlx5e: Fix use-after-free after xdp_return_frame f9444b6aaa01 net/mlx5e: Fix the max MTU check in case of XDP a7b71fc253e8 mlxsw: spectrum: Put MC TCs into DWRR mode a3964a683ca1 mlxsw: pci: Reincrease PCI reset timeout 72f71005903d net/ncsi: handle overflow when incrementing mac address 19f6d3f49b28 net: socionext: replace napi_alloc_frag with the netdev variant on init af31849700e4 team: fix possible recursive locking when add slaves dc2b8b627802 stmmac: pci: Adjust IOT2000 matching 3fd3574106de net/tls: fix refcount adjustment in fallback e39643c12d3f net: stmmac: move stmmac_check_ether_addr() to driver probe 8de6f5e5b90d net/rose: fix unbound loop in rose_loopback_timer() b225e518109b net: rds: exchange of 8K and 1M pool 283882b045ad net/mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query f37782f2d708 mlxsw: spectrum: Fix autoneg status in ethtool d69b7c8c8ab5 ipv4: set the tcp_min_rtt_wlen range from 0 to one day 617d24036564 ipv4: add sanity checks in ipv4_link_failure() 7f909f520742 rdma: fix build errors on s390 and MIPS due to bad ZERO_PAGE use dee438745d74 x86/retpolines: Disable switch jump tables when retpolines are enabled 6bd5637a3ebb x86, retpolines: Raise limit for generating indirect calls from switch-case b6dd51f041fa Fix aio_poll() races f6408361ded7 aio: store event at final iocb_put() a8a538aed4f9 aio: keep io_event in aio_kiocb 636fa71ed5f7 aio: fold lookup_kiocb() into its sole caller 199f34c1355b pin iocb through aio. e2f0a96eeb50 rxrpc: fix race condition in rxrpc_input_packet() 4f2c07441634 net/rds: Check address length before reading address family d0d184559cb4 net: netrom: Fix error cleanup path of nr_proto_init d0cf85f49505 tipc: check link name with right length in tipc_nl_compat_link_set 4ee29a10021f tipc: check bearer name with right length in tipc_nl_compat_bearer_enable a92526e257a5 fm10k: Fix a potential NULL pointer dereference 0d41789ad820 netfilter: ebtables: CONFIG_COMPAT: drop a bogus WARN_ON becfa96eaecd NFS: Forbid setting AF_INET6 to "struct sockaddr_in"->sin_family. b5db8ea57de5 mac80211_hwsim: calculate if_combination.max_interfaces 16de5d9b8f6b sched/deadline: Correctly handle active 0-lag timers bbb19ca082ce binder: fix handling of misaligned binder object 8fe1600c91f9 workqueue: Try to catch flush_work() without INIT_WORK(). abcbf3078130 slip: make slhc_free() silently accept an error pointer ba965c2c9808 tipc: handle the err returned from cmd header function 2501b17f4f72 loop: do not print warn message if partition scan is successful acaec7f6e25d ext4: fix some error pointer dereferences 2cd705091e36 USB: Consolidate LPM checks to avoid enabling LPM twice 30d57be1f6eb USB: Add new USB LPM helpers 6ec39721f131 drm/vc4: Fix compilation error reported by kbuild test bot 3e869fd34856 Revert "drm/i915/fbdev: Actually configure untiled displays" 6dca846c920d drm/ttm: fix re-init of global structures 0b029ce3f4ee drm/vc4: Fix memory leak during gpu reset. aaceebbb71c5 powerpc/mm/radix: Make Radix require HUGETLB_PAGE b9a5bc4bb079 ARM: 8857/1: efi: enable CP15 DMB instructions before cleaning the cache aa5f016ba785 dmaengine: mediatek-cqdma: fix wrong register usage in mtk_cqdma_start 9476c3ad5ee2 dmaengine: sh: rcar-dmac: Fix glitch in dmaengine_tx_status c46e14be004a dmaengine: sh: rcar-dmac: With cyclic DMA residue 0 is valid 16df9424ffaa vfio/type1: Limit DMA mappings per container 4898e9b99795 Input: synaptics-rmi4 - write config register values to the right offset c704bba6dd36 perf/x86/intel: Update KBL Package C-state events to also include PC8/PC9/PC10 counters b2eeeb49027e sunrpc: don't mark uninitialised items as VALID. 6d29f7c720c6 nfsd: wake blocked file lock waiters before sending callback 6569ae328aa3 nfsd: wake waiters blocked on file_lock before deleting it 5e4a20e631a7 nfsd: Don't release the callback slot unless it was actually held 870588487197 ceph: fix ci->i_head_snapc leak d9061ef0ab17 ceph: ensure d_name stability in ceph_dentry_hash() bcd9cbffb98f ceph: only use d_name directly when parent is locked e548c9702d46 sched/numa: Fix a possible divide-by-zero c3e4c555ac86 RDMA/ucontext: Fix regression with disassociate 52c44c4e81b3 RDMA/mlx5: Use rdma_user_map_io for mapping BAR pages 92d6731e6a6f RDMA/mlx5: Do not allow the user to write to the clock page f4dba6bf743e IB/rdmavt: Fix frwr memory registration e7e378ed703e arm64: mm: Ensure tail of unaligned initrd is reserved e5f06bf8f46c mm: do not boost watermarks to avoid fragmentation for the DISCONTIG memory model 655b464eeaa8 trace: Fix preempt_enable_no_resched() abuse 0f73358dff40 MIPS: scall64-o32: Fix indirect syscall number load 928962e99694 lib/Kconfig.debug: fix build error without CONFIG_BLOCK f4ab3de10c84 zram: pass down the bvec we need to read into in the work struct e6093c0212d0 gpio: eic: sprd: Fix incorrect irq type setting for the sync EIC 0bb4e85bbd34 crypto: lrw - Fix atomic sleep when walking skcipher 6506cdd4205b crypto: xts - Fix atomic sleep when walking skcipher 8659a04c77e2 tracing: Fix buffer_ref pipe ops 68ab802fb8cc tracing: Fix a memory leak by early error exit in trace_pid_write() 90b70b3ed31b cifs: do not attempt cifs operation on smb2+ rename error e6302b845f2d cifs: fix page reference leak with readv/writev 62cf691cdf74 cifs: fix memory leak in SMB2_read 34fb6f5eb2cd block, bfq: fix use after free in bfq_bfqq_expire 41e09d7eab07 fs/proc/proc_sysctl.c: Fix a NULL pointer dereference 685550ad1192 ALSA: hda/realtek - Move to ACT_INIT state b6f3aa978866 powerpc/vdso32: fix CLOCK_MONOTONIC on PPC64 92d4af2766a1 intel_th: gth: Fix an off-by-one in output unassigning 0ccd99339030 netfilter: nf_tables: bogus EBUSY in helper removal from transaction 5b3124548062 netfilter: nf_tables: bogus EBUSY when deleting set after flush d3da1f09fff2 Linux 5.0.10 c735a988a9ca kernel/sysctl.c: fix out-of-bounds access when setting file-max 822482bff7c5 percpu: stop printing kernel addresses b2c65593ea62 ALSA: info: Fix racy addition/deletion of nodes c3d0cf332bcd mm/vmstat.c: fix /proc/vmstat format for CONFIG_DEBUG_TLBFLUSH=y CONFIG_SMP=n 4ae522890cc1 mm/memory_hotplug: do not unlock after failing to take the device_hotplug_lock c138ed72186a perf/ring_buffer: Fix AUX record suppression 65fce15dbd87 device_cgroup: fix RCU imbalance in error case 74b4ef5df590 mt76x02: avoid status_list.lock and sta->rate_ctrl_lock dependency edc94cb2c13b tpm: fix an invalid condition in tpm_common_poll 6799f32fff63 sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup fb9693679feb Revert "kbuild: use -Oz instead of -Os when using clang" 18636692a1b4 tpm: Fix the type of the return value in calc_tpm2_event_size() 03c1d8f8afd8 tpm/tpm_i2c_atmel: Return -E2BIG when the transfer is incomplete 4a96e63f8f7d nfit/ars: Avoid stale ARS results 33dcadf02c1f nfit/ars: Allow root to busy-poll the ARS state machine b49a9157c3ec nfit/ars: Introduce scrub_flags 2cc8e8c230e8 nfit/ars: Remove ars_start_flags 451fd88f62b9 timers/sched_clock: Prevent generic sched_clock wrap caused by tick_freeze() 205c53cbe553 x86/speculation: Prevent deadlock on ssb_state::lock 19867049334b perf/x86: Fix incorrect PEBS_REGS 5e34d62b59dd x86/cpu/bugs: Use __initconst for 'const' init data 35f288b72f64 perf/x86/amd: Add event map for AMD Family 17h 22cc6e1b4fc0 drm/amdgpu/gmc9: fix VM_L2_CNTL3 programming 5b05d7d6fd5b s390/mem_detect: Use IS_ENABLED(CONFIG_BLK_DEV_INITRD) b1db090fb046 mac80211: do not call driver wake_tx_queue op during reconfig 9a0748c55188 rt2x00: do not increment sequence number while re-transmitting 44aa331f99b4 kprobes: Fix error check when reusing optimized probes ca61e51567a7 x86/kprobes: Avoid kretprobe recursion bug 7b91f26c45b6 kprobes: Mark ftrace mcount handler functions nokprobe fbe6f067a3ad x86/kprobes: Verify stack frame on kretprobe f89f9d9636f0 arm64: futex: Restore oldval initialization to work around buggy compilers 508b773175c7 drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 8223263d7c44 crypto: x86/poly1305 - fix overflow during partial reduction 46c4f2375638 ipmi: fix sleep-in-atomic in free_user at cleanup SRCU user->release_barrier 2f6919fdc23b x86/kvm: move kvm_load/put_guest_xcr0 into atomic context 1eb719f09f7e coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping e58a114d0746 Revert "svm: Fix AVIC incomplete IPI emulation" 922270b4f018 i3c: Fix the verification of random PID 33a3fff44a0f i3c: dw: Fix dw_i3c_master_disable controller by using correct mask e6200707e648 Revert "scsi: fcoe: clear FC_RP_STARTED flags when receiving a LOGO" ad1deea5c4c9 scsi: core: set result when the command cannot be dispatched c2116717884c vt: fix cursor when clearing the screen 5ae77c340c52 serial: sh-sci: Fix HSCIF RX sampling point calculation 333a81c16e4f serial: sh-sci: Fix HSCIF RX sampling point adjustment 95df599f95f3 Input: elan_i2c - add hardware ID for multiple Lenovo laptops 6ef122eb7956 ALSA: core: Fix card races between register and disconnect ffd87f87a9c1 ALSA: hda/realtek - add two more pin configuration sets to quirk table 8834139083cd staging: comedi: ni_usb6501: Fix possible double-free of ->usb_rx_buf 16b235e81d9d staging: comedi: ni_usb6501: Fix use of uninitialized mutex a47fd7121627 staging: comedi: vmk80xx: Fix possible double-free of ->usb_rx_buf bd3011021447 staging: comedi: vmk80xx: Fix use of uninitialized semaphore dcff1b3c1a1d staging: most: core: use device description as name 68bbd7524a6f io: accel: kxcjk1013: restore the range after resume. 3e13bb9782f5 iio: core: fix a possible circular locking dependency 1f6b63285e2f iio: adc: at91: disable adc channel interrupt in timeout case 2b70088e1509 iio: Fix scan mask selection 5c526f27861f iio: dac: mcp4725: add missing powerdown bits in store eeprom 50bc2c022b6e iio: ad_sigma_delta: select channel when reading register f65207cfee33 iio: cros_ec: Fix the maths for gyro scale calculation b4dd709ada6d iio:chemical:bme680: Fix SPI read interface fd3c6ad2a934 iio:chemical:bme680: Fix, report temperature in millidegrees 5527e1e58007 iio/gyro/bmg160: Use millidegrees for temperature scale 9efe152f769c iio: gyro: mpu3050: fix chip ID reading 25a91f7b9810 staging: iio: ad7192: Fix ad7193 channel address 80c1486b7e20 Staging: iio: meter: fixed typo 739969f56e4f KVM: x86: svm: make sure NMI is injected after nmi_singlestep 935fef82120f KVM: x86: Don't clear EFER during SMM transitions for 32-bit vCPU d12bcf87e6ff fs/dax: Deposit pagetable even when installing zero page f6846161e203 cifs: fix handle leak in smb2_query_symlink() 76dbd554c273 cifs: Fix use-after-free in SMB2_read e8ac406c749e cifs: Fix use-after-free in SMB2_write 9582ba401ef0 cifs: Fix lease buffer length error ebac4d0adf68 CIFS: keep FileInfo handle live during oplock break 2cf17769d6b5 sch_cake: Simplify logic in cake_select_tin() 5aa94a5b5641 nfc: nci: Potential off by one in ->pipes[] array a023c1a245a7 NFC: nci: Add some bounds checking in nci_hci_cmd_received() d58923dac952 sch_cake: Make sure we can write the IP header before changing DSCP bits 064290d0f6c7 sch_cake: Use tc_skb_protocol() helper for getting packet protocol 116ac142d2c6 nfp: flower: remove vlan CFI bit from push vlan action 51db0d068057 nfp: flower: replace CFI with vlan present da86299fcccb route: Avoid crash from dereferencing NULL rt->from 6ad8c35a70cc net/mlx5: FPGA, tls, idr remove on flow delete d3697f88a271 net/tls: prevent bad memory access in tls_is_sk_tx_device_offloaded() 1d9005b96dce net/mlx5: FPGA, tls, hold rcu read lock a bit longer abe4a1328a78 Revert "net/mlx5e: Enable reporting checksum unnecessary also for L3 packets" acf4d270942a net/mlx5e: Rx, Check ip headers sanity 3ce8793e03cd net/mlx5e: Rx, Fixup skb checksum for packets with tail padding af294d42d43e net/mlx5e: Switch to Toeplitz RSS hash by default 6daad2e30e0b net/mlx5e: Protect against non-uplink representor for encap 58f682514cb5 net/mlx5e: XDP, Avoid checksum complete when XDP prog is loaded 0e4b3800c069 net: bridge: fix netlink export of vlan_stats_per_port option adfc12451123 net/tls: fix build without CONFIG_TLS_DEVICE 5e7171bf8db7 net: strparser: partially revert "strparser: Call skb_unclone conditionally" 96418eaa8e6a net/tls: don't leak partially sent record in device mode b30d9457b1dc net/tls: fix the IV leaks ae924f4e1c45 net: thunderx: don't allow jumbo frames with XDP a902fe6dd585 net: thunderx: raise XDP MTU to 1508 9be4e8224cd6 mlxsw: spectrum_router: Do not check VRF MAC address 61647856f32a mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw workqueue 87ffb893490a mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw ordered workqueue 565e18a0be10 mlxsw: core: Do not use WQ_MEM_RECLAIM for EMAD workqueue 6f180e411c3e mlxsw: spectrum_switchdev: Add MDB entries in prepare phase ed112abe6795 ipv4: ensure rcu_read_lock() in ipv4_link_failure() 6bd1ee0a993f ipv4: recompile ip options in ipv4_link_failure 8cc6c4767e49 vhost: reject zero size iova range e35fa0016788 tipc: missing entries in name table of publications aad7db2b23c1 team: set slave to promisc if team is already in promisc mode 8aa965e92750 tcp: tcp_grow_window() needs to respect tcp_space() 1274905c8e1b net: fou: do not use guehdr after iptunnel_pull_offloads in gue_udp_recv 49f472ba481b net: Fix missing meta data in skb with vlan packet a7a3382b1564 net: fec: manage ahb clock in runtime pm 88f561ab1bd4 net: bridge: multicast: use rcu to access port list from br_multicast_start_querier 88c58435304b net: bridge: fix per-port af_packet sockets 11ba95c4503b net: atm: Fix potential Spectre v1 vulnerabilities b633f6580b62 failover: allow name change on IFF_UP slave interfaces 7e2c712830d6 bonding: fix event handling for stacked bonds e4abcebedac3 Linux 5.0.9 2db9f8d63d74 paride/pcd: Fix potential NULL pointer dereference and mem leak e78434f4dcd2 paride/pf: Fix potential NULL pointer dereference b59d92ac8a32 IB/hfi1: Failed to drain send queue when QP is put into error state b05baa9f19d0 bpf: fix use after free in bpf_evict_inode d05fb50b3d0c include/linux/swap.h: use offsetof() instead of custom __swapoffset macro 1c108a1b6459 f2fs: fix to add refcount once page is tagged PG_private b5f51f7abb43 f2fs: fix to use kvfree instead of kzfree c55d13d94f8c f2fs: fix to dirty inode for i_mode recovery 4fb70c2107e9 rxrpc: Fix client call connect/disconnect race 78154e319888 lib/div64.c: off by one in shift f0f1c97f38b8 cifs: return -ENODATA when deleting an xattr that does not exist 2fbb0171b13a appletalk: Fix use-after-free in atalk_proc_exit a33383757975 drm/amdkfd: use init_mqd function to allocate object for hid_mqd (CI) 3835c46e6ff5 ARM: 8839/1: kprobe: make patch_lock a raw_spinlock_t ed3a6901a3d7 platform/x86: intel_pmc_core: Quirk to ignore XTAL shutdown 36f268740bce drm/nouveau/volt/gf117: fix speedo readout register 3b2457ce9997 f2fs: sync filesystem after roll-forward recovery b851a25507e2 PCI/ASPM: Save LTR Capability for suspend/resume 75e3256e2309 PCI: Blacklist power management of Gigabyte X299 DESIGNARE EX PCIe ports dce48c5878ab coresight: cpu-debug: Support for CA73 CPUs cf56bb03ffa3 RDMA/hns: Fix the Oops during rmmod or insmod ko when reset occurs 5ada4de03943 Revert "ACPI / EC: Remove old CLEAR_ON_RESUME quirk" 41c3883dfadb crypto: axis - fix for recursive locking from bottom half b9563b52e802 net: hns3: Fix NULL deref when unloading driver f1a2397542f6 drm/panel: panel-innolux: set display off in innolux_panel_unprepare 3fcb02749530 drm/amdgpu: psp_ring_destroy cause psp->km_ring.ring_mem NULL e7ab5c78e516 lkdtm: Add tests for NULL pointer dereference 8167ea40725d lkdtm: Print real addresses 8bc6ef890c86 ext4: prohibit fstrim in norecovery mode 642530739f19 x86/gart: Exclude GART aperture from kcore 14bec2dda7a0 cifs: Fix slab-out-of-bounds when tracing SMB tcon a419571b2da5 fix incorrect error code mapping for OBJECTID_NOT_FOUND 21edc981053f cifs: fix that return -EINVAL when do dedupe operation 92b646e27677 x86/hw_breakpoints: Make default case in hw_breakpoint_arch_parse() return an error aca4bd1a1cc6 iommu/vt-d: Save the right domain ID used by hardware d96516127498 iommu/vt-d: Check capability before disabling protected memory d9fb98c921a8 drm/nouveau/debugfs: Fix check of pm_runtime_get_sync failure f0a085e99ff7 x86/cpu/cyrix: Use correct macros for Cyrix calls on Geode processors aaddd952f3db x86/hyperv: Prevent potential NULL pointer dereference 105d043fedcb x86/hpet: Prevent potential NULL pointer dereference 1512c986c578 irqchip/mbigen: Don't clear eventid when freeing an MSI dc60ac49b040 irqchip/stm32: Don't set rising configuration registers at init d79220ee57b8 irqchip/stm32: Don't clear rising/falling config registers at init c24b1f67cea0 drm/exynos/mixer: fix MIXER shadow registry synchronisation code c43003451a01 blk-iolatency: #include "blk.h" 8bd30e5e0ec5 PM / Domains: Avoid a potential deadlock 66495ebfd4df ACPI / utils: Drop reference in test for device presence fd9f338db867 perf tests: Fix a memory leak in test__perf_evsel__tp_sched_test() 26980cd03ea6 perf tests: Fix memory leak by expr__find_other() in test__expr() 5ffefcfe9764 perf tests: Fix a memory leak of cpu_map object in the openat_syscall_event_on_all_cpus test ece1fd3f4023 perf evsel: Free evsel->counts in perf_evsel__exit() 05fe1d5b6ed1 perf top: Fix global-buffer-overflow issue 940df86f505d perf maps: Purge all maps from the 'names' tree 60b7f41c4aea perf map: Remove map from 'names' tree in __maps__remove() d86bf97d119d perf hist: Add missing map__put() in error case 4a66a027c1ba perf top: Fix error handling in cmd_top() 29dddb32f56b perf build-id: Fix memory leak in print_sdt_events() 86cb58f1a12f perf config: Fix a memory leak in collect_config() 5bb92662f2f1 perf config: Fix an error in the config template documentation d41f87ee413f perf tools: Fix errors under optimization level '-Og' 84b2a2ca6d41 perf list: Don't forget to drop the reference to the allocated thread_map 0c6568492019 perf stat: Fix --no-scale c957d798c11c scsi: qla2xxx: Fix NULL pointer crash due to stale CPUID 9ec3c84936f7 scsi: core: Also call destroy_rcu_head() for passthrough requests 638bf55940b9 tools/power turbostat: return the exit status of a command 4a45137bb2eb x86/mm: Don't leak kernel addresses 8764542aa21c sched/core: Fix buffer overflow in cgroup2 property cpu.max 02abd369fa77 sched/cpufreq: Fix 32-bit math overflow 7aa9be519579 scsi: iscsi: flush running unbind operations when removing a session b0b05ab719c3 thermal/intel_powerclamp: fix truncated kthread name 800e3fd7bfce thermal/int340x_thermal: fix mode setting 891fea677cca thermal/int340x_thermal: Add additional UUIDs f1a315ca06be thermal: bcm2835: Fix crash in bcm2835_thermal_debugfs 481c8a89e89a thermal: samsung: Fix incorrect check after code merge 74920ee161d4 thermal/intel_powerclamp: fix __percpu declaration of worker_data 6e684bd65a5c paride/pcd: cleanup queues when detection fails 77323732005a paride/pf: cleanup queues when detection fails 1f208b0adaee ALSA: opl3: fix mismatch between snd_opl3_drum_switch definition and declaration bdb43acc8858 mmc: davinci: remove extraneous __init annotation e52431f7547c i40iw: Avoid panic when handling the inetdev event 221b45319d05 IB/mlx4: Fix race condition between catas error reset and aliasguid flows b21723eda4cc drm/udl: use drm_gem_object_put_unlocked. 33550275bbcf auxdisplay: hd44780: Fix memory leak on ->remove() 4c12b50fc86a ALSA: sb8: add a check for request_region b3a964aea086 ALSA: echoaudio: add a check for ioremap_nocache 2c20533ea602 ext4: report real fs size after failed resize d45fc2ba0e39 ext4: add missing brelse() in add_new_gdb_meta_bg() e23981104716 ext4: avoid panic during forced reboot 0a7ef6820970 mips: bcm47xx: Enable USB power on Netgear WNDR3400v2 c5d7b6089be5 perf/core: Restore mmap record type correctly 7f434180c880 inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() 9005b534c2ba arc: hsdk_defconfig: Enable CONFIG_BLK_DEV_RAM 48de44356e07 ARC: u-boot args: check that magic number is correct 0b9132ee7429 Linux 5.0.8 eaa06ac5d1c1 drm/virtio: do NOT reuse resource ids 7af79a36d188 KVM: x86: nVMX: fix x2APIC VTPR read intercept b564364f22ac KVM: x86: nVMX: close leak of L0's x2APIC MSRs (CVE-2019-3887) 63bec9219c39 dm integrity: fix deadlock with overlapping I/O de022a3453e6 dm: disable DISCARD if the underlying storage no longer supports it ca7671084384 dm table: propagate BDI_CAP_STABLE_WRITES to fix sporadic checksum errors 50b2e5c3b0a8 dm: revert 8f50e358153d ("dm: limit the max bio size as BIO_MAX_PAGES * PAGE_SIZE") 556b7d910d5d dm integrity: change memcmp to strncmp in dm_integrity_ctr 78dbc2482a78 powerpc/64s/radix: Fix radix segment exception handling 49558542e0eb xprtrdma: Fix helper that drains the transport 8af91139a0a8 PCI: pciehp: Ignore Link State Changes after powering off a slot 9b63917c6a4c PCI: Add function 1 DMA alias quirk for Marvell 9170 SATA controller 025768c171b8 x86/perf/amd: Remove need to check "running" bit in NMI handler ecb09f75a9b9 x86/perf/amd: Resolve NMI latency issues for active PMCs c583b4d08f3a x86/perf/amd: Resolve race condition when disabling PMC 8b866ffe3d31 x86/asm: Use stricter assembly constraints in bitops 3783a3b1e218 x86/asm: Remove dead __GNUC__ conditionals 5866b5fc2b8a csky: Fix syscall_get_arguments() and syscall_set_arguments() b66f9a1ea65a xtensa: fix return_address e09deff8f8f4 sched/fair: Do not re-read ->h_load_next during hierarchical load calculation 05acf6f5b81c xen: Prevent buffer overflow in privcmd ioctl e0e77b23a73d IB/mlx5: Reset access mask when looping inside page fault handler 6b3b09cd4daa arm64/ftrace: fix inadvertent BUG() in trampoline check 36078cae3790 arm64: backtrace: Don't bother trying to unwind the userspace stack de2e5ed04711 arm64: dts: rockchip: fix rk3328 rgmii high tx error rate 7fcf2d915fa0 arm64: dts: rockchip: Fix vcc_host1_5v GPIO polarity on rk3328-rock64 68a6a619ebd7 arm64: futex: Fix FUTEX_WAKE_OP atomic ops with non-zero result value b0266ece310d ARM: dts: at91: Fix typo in ISC_D0 on PC9 a005242834ac ARM: dts: rockchip: Fix SD card detection on rk3288-tinker e74aa76752f4 ARM: dts: am335x-evm: Correct the regulators for the audio codec 724d26349abf ARM: dts: am335x-evmsk: Correct the regulators for the audio codec 4e34e23d5708 ARM: dts: rockchip: fix rk3288 cpu opp node reference f04200259be8 ARM: OMAP1: ams-delta: Fix broken GPIO ID allocation 4e6f0d588cd2 drm/i915/dp: revert back to max link rate and lane count on eDP 88fa815395e3 virtio: Honour 'may_reduce_num' in vring_create_virtqueue ec64558908d7 genirq: Initialize request_mutex if CONFIG_SPARSE_IRQ=n b8ad5278c4d3 genirq: Respect IRQCHIP_SKIP_SET_WAKE in irq_chip_set_wake_parent() fffb3e8b5920 block: fix the return errno for direct IO b4af1b3cb545 block: do not leak memory in bio_copy_user_iov() 43d15c041ad7 block: Revert v5.0 blk_mq_request_issue_directly() changes 6a184be78d3f riscv: Fix syscall_get_arguments() and syscall_set_arguments() ee02ae76d069 btrfs: prop: fix vanished compression property after failed set 41cd8693bfcc btrfs: prop: fix zstd compression parameter validation ddb27d3b30f7 Btrfs: do not allow trimming when a fs is mounted with the nologreplay option 4badea79434d ASoC: fsl_esai: fix channel swap issue when stream starts 7c394c70a394 ASoC: intel: Fix crash at suspend/resume after failed codec registration 3859d8fae2d8 mm: writeback: use exact memcg dirty counts c4727317b4e5 include/linux/bitrev.h: fix constant bitrev a1428aee0c69 kvm: svm: fix potential get_num_contig_pages overflow d2c5c9ea9a09 drm/udl: add a release method and delay modeset teardown 7029188253fc drm/sun4i: DW HDMI: Lower max. supported rate for H6 3e05b13e52e5 drm/i915/gvt: do not deliver a workload if its creation fails 56487f7b8330 alarmtimer: Return correct remaining time b4dfbd47a494 parisc: also set iaoq_b in instruction_pointer_set() 97ba69f22665 parisc: regs_return_value() should return gpr28 d347bbea0668 parisc: Detect QEMU earlier in boot process af2abcc62e64 mmc: sdhci-omap: Don't finish_mrq() on a command error during tuning 13771e12fb7d mmc: alcor: don't write data before command has completed 8a3bb1553d5b arm64: dts: rockchip: fix rk3328 sdmmc0 write errors 9e77cd4a9922 mm/huge_memory.c: fix modifying of page protection by insert_pfn_pmd() 89944d7e95e3 ALSA: hda - Add two more machines to the power_save_blacklist 3c20e6c50e03 ALSA: xen-front: Do not use stream buffer size before it is set 97bf09839964 ALSA: hda/realtek - Add quirk for Tuxedo XC 1509 acaf3a112008 ALSA: hda/realtek: Enable headset MIC of Acer TravelMate B114-21 with ALC233 df828c33163f ALSA: seq: Fix OOB-reads from strlcpy cb11af93e626 ACPICA: Namespace: remove address node from global list after method termination da6a87fb0ad4 ACPICA: Clear status of GPEs before enabling them bee8b4b4c79b HID: logitech: Handle 0 scroll events for the m560 0601ac3b4925 SMB3: Allow persistent handle timeout to be configurable on mount 4d4ec04ed77e hwmon: (occ) Fix power sensor indexing 026f98a1d51d hwmon: (w83773g) Select REGMAP_I2C to fix build error c231b6b0064d tty: ldisc: add sysctl to prevent autoloading of ldiscs e4ebae16792a tty: mark Siemens R3964 line discipline as BROKEN e2a0237494ce Revert "clk: meson: clean-up clock registration" 62a23bbaee09 lib/string.c: implement a basic bcmp 622902df9eba kbuild: clang: choose GCC_TOOLCHAIN_DIR not on LD 396f116f6d0a net/mlx5e: Update xon formula 29b4db4176da net/mlx5e: Update xoff formula 68ef6f3e1a70 net: mlx5: Add a missing check on idr_find, free buf 4fe853723d57 r8169: disable default rx interrupt coalescing on RTL8168 4b780e0fc986 net: core: netif_receive_skb_list: unlist skb before passing to pt->func b5f69a5648b0 net: vrf: Fix ping failed when vrf mtu is set to 0 c83447096390 net: thunderx: fix NULL pointer dereference in nicvf_open/nicvf_stop 502de75b3b34 net: bridge: always clear mcast matching struct on reports and leaves f4473ccd883c net: ip6_gre: fix possible use-after-free in ip6erspan_rcv b49e1837b15e net: ip_gre: fix possible use-after-free in erspan_rcv eefa6c2464c8 bnxt_en: Reset device on RX buffer errors. aecbbae850ed bnxt_en: Improve RX consumer index validity check. c43bbe6d49f4 nfp: disable netpoll on representors c974a681e996 nfp: validate the return code from dev_queue_xmit() 6fc42565470a net/mlx5e: Add a lock on tir list 44bd84f1b5a5 net/mlx5e: Fix error handling when refreshing TIRs 59c5f595a120 vrf: check accept_source_route on the original netdevice 71707cc55c39 tcp: fix a potential NULL pointer dereference in tcp_sk_exit bc7167651e30 tcp: Ensure DCTCP reacts to losses cd1b7376d8a3 sctp: initialize _pad of sockaddr_in before copying to user memory 3c36cc5bdf89 r8169: disable ASPM again cdeed1e0f47e qmi_wwan: add Olicard 600 3bcad39f08ca openvswitch: fix flow actions reallocation 48a1cd79cc7e net/sched: fix ->get helper of the matchall cls 4edf174b821e net/sched: act_sample: fix divide by zero in the traffic path 4e8d8e767f11 net: rds: force to destroy connection if t_sock is NULL in rds_tcp_kill_sock(). ec7aeb6a0709 netns: provide pure entropy for net_hash_mix() 6ced07adaead net/mlx5: Decrease default mr cache size 67b0fbfaf828 net-gro: Fix GRO flush when receiving a GSO packet. 88b9d6f6aff8 net: ethtool: not call vzalloc for zero sized memory request 351ddbdf532c kcm: switch order of device registration to fix a crash 472a290314f0 ipv6: sit: reset ip header pointer in ipip6_rcv ccec3a09c429 ipv6: Fix dangling pointer when ipv6 fragment fd4ecb124730 ip6_tunnel: Match to ARPHRD_TUNNEL6 for dev type 4f90b9ca3cb2 ibmvnic: Fix completion structure initialization b68b3427a2a2 hv_netvsc: Fix unwanted wakeup after tx_disable 5160fb3353f5 netfilter: nf_tables: add missing ->release_ops() in error path of newrule() 19589530ec6d netfilter: nf_tables: use-after-free in dynamic operations 43154d5c868c netfilter: nft_compat: use .release_ops and remove list of extension 93f7f61ed079 kbuild: pkg: use -f $(srctree)/Makefile to recurse to top Makefile 118003351916 drm/i915/gvt: do not let pin count of shadow mm go negative Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-30linux-yocto/5.0: update TCP patch to mainline versionBruce Ashfield
Updating the SRCREVs to drop our temporary workaround for TCP timeout issues and switch to the mainline version: tcp: add sanity tests in tcp_add_backlog() Revert "tcp: fix issues relaed to implement coalescing on backlog queue" Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-29linux-yocto_5.0: set devicetree for armv5Dengke Du
Signed-off-by: Dengke Du <dengke.du@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-29linux-yocto/5.0: integrate TCP timeout / hang fixBruce Ashfield
Integrating the following fix: [ tcp: fix issues relaed to implement coalescing on backlog queue As was discussed on -netdev, there's an issue with TCP timeouts and hangs due to new features introduced in the 5.0 kernel: https://www.spinics.net/lists/netdev/msg562928.html This is a temporary commit to widely test the proposed solution. It will be dropped when an official patch makes mainline. ] Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-29linux-yocto/5.0: port RAID configuration tweaks from masterBruce Ashfield
Porting the following three RAID config changes from master to the 5.0 branch: ffd8cf5baf8 intel-x86: add Intel VMD support 8edf951a15c cfg/efi.cfg: built-in CONFIG_EFIVAR_FS to support Intel VROC 041a6c04244 intel-x86: built-in nvme driver to support boot from nvme disk Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-29linux-yocto-rt/4.19: fix merge conflict in lru_drainBruce Ashfield
Paul Gortmaker sent along the following fixup for 4.19-rt: [ Author: Paul Gortmaker <paul.gortmaker@windriver.com> Date: Mon Apr 15 12:01:31 2019 -0400 Revert "mm: handle lru_add_drain_all for UP properly" This reverts commit e6e9d6e290028b0a6b83b563fad9fafa7f1d515e. It was a 4.19.31 backport of commit 6ea183d60c46 ("mm: handle lru_add_drain_all for UP properly"). In summary, what that did was to fix a possible harmless WARN_ON on non-SMP, introduced at commit 4d43d395fed1 ("workqueue: Try to catch flush_work() without INIT_WORK().") by adding non-SMP variants of lru functions. The combination of that, with the -rt commit 473f14a9f234 ("mm: perform lru_add_drain_all() remotely") at the merge of the two results in the following build failure: mm/swap.c:736:2: error: #endif without #if since the -rt change wants RT specific lru and the stable backport wants non-SMP specific lru, and a chunk of the backport with an #ifdef CONFIG_SMP is missing. However, before we add a four way cluster of ifdeffery to handle all cases, we note 4d43d395fed1 was added to the v5.1 release, and it was not (currently) backported to any 4.19.x stable release - so it is unclear to me why this commit was ever backported to 4.19.31 at all. Further, we note this change was to mm/swap.c -- and by definition, any preempt-rt deployment that uses swap for anything other than a failure contingency mitigation is broken by design. Given all that, I decided that the best path forward was to revert the two of the three chunks of the backport that remain in the -rt branch, and return us to the pre-4.19.31 merge behaviour for -rt. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> ] Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-16linux-yocto/4.19: update to v4.19.34Bruce Ashfield
Integrating the korg -stable releases that comprise the following commits: 4d552acf3370 Linux 4.19.34 d5813e77363c kprobes/x86: Blacklist non-attachable interrupt functions e7d26616c92b bcache: fix potential div-zero error of writeback_rate_p_term_inverse 09abe130820b ACPI / video: Extend chassis-type detection with a "Lunch Box" check d1d2ca98b78f net: stmmac: Avoid one more sometimes uninitialized Clang warning 972e31ba4bc2 drm/dp/mst: Configure no_stop_bit correctly for remote i2c xfers 986a2bb54a31 Input: soc_button_array - fix mapping of the 5th GPIO in a PNP0C40 device 6d2817e2ab8c dmaengine: tegra: avoid overflow of byte tracking 7386f095b709 clk: rockchip: fix frac settings of GPLL clock for rk3328 c8e4f8406842 clk: meson: clean-up clock registration 6251c1db04f2 drm/fb-helper: fix leaks in error path of drm_fb_helper_fbdev_setup 648b949b7870 x86/build: Mark per-CPU symbols as absolute explicitly for LLD 52cd9e0e43c7 wlcore: Fix memory leak in case wl12xx_fetch_firmware failure 05b23c66bb6e brcmfmac: Use firmware_request_nowarn for the clm_blob e30e0b0915b6 selinux: do not override context on context mounts d2053718e087 x86/build: Specify elf_i386 linker emulation explicitly for i386 objects e0662d00c98a drm/nouveau: Stop using drm_crtc_force_disable 1d377200482b drm: Auto-set allow_fb_modifiers when given modifiers at plane init 27d6de370cdc pinctrl: meson: meson8b: add the eth_rxd2 and eth_rxd3 pins 61174e34611f regulator: act8865: Fix act8600_sudcdc_voltage_ranges setting bcdd4a5ee1c5 media: s5p-jpeg: Check for fmt_ver_flag when doing fmt enumeration 9bfd4ab5e8e4 media: rcar-vin: Allow independent VIN link enablement 2e6bcc327b0b netfilter: physdev: relax br_netfilter dependency 24296fbc5445 dmaengine: qcom_hidma: initialize tx flags in hidma_prep_dma_* c55f4a6e798d dmaengine: qcom_hidma: assign channel cookie correctly afacaf85543b dmaengine: imx-dma: fix warning comparison of distinct pointer types fba4c61e9888 cpu/hotplug: Mute hotplug lockdep during init a6c671e23168 hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable dbeca415575f f2fs: UBSAN: set boolean value iostat_enable correctly 16b06b15dd53 HID: intel-ish: ipc: handle PIMR before ish_wakeup also clear PISR busy_clear bit 67c2be160519 soc/tegra: fuse: Fix illegal free of IO base address a3aa9d93b9ab hwrng: virtio - Avoid repeated init of completion 7aaa76e8a6ab media: mt9m111: set initial frame size other than 0x0 fd400e96c599 perf script python: Add trace_context extension module to sys.modules d90a375b786c perf script python: Use PyBytes for attr in trace-event-python f94e369fe7a8 platform/x86: intel-hid: Missing power button release on some Dell models 1e55e3f6c735 usb: dwc3: gadget: Fix OTG events when gadget driver isn't loaded 2b20c29bcdf6 ALSA: dice: add support for Solid State Logic Duende Classic/Mini 3abb3d0418e1 drm/amd/display: Enable vblank interrupt during CRC capture 06af7dda05b3 powerpc/pseries: Perform full re-add of CPU for topology update post-migration 57f03bbd4236 tty: increase the default flip buffer limit to 2*640K 2142eba848a1 backlight: pwm_bl: Use gpiod_get_value_cansleep() to get initial state d0bc74c5632f cgroup/pids: turn cgroup_subsys->free() into cgroup_subsys->release() to fix the accounting b52681e6e623 powerpc/64s: Clear on-stack exception marker upon exception return 118d38a3577f selftests/bpf: skip verifier tests for unsupported program types ae92cf4760f8 bpf: fix missing prototype warnings 06666a19d5a5 block, bfq: fix in-service-queue check for queue merging 30d503bae967 ARM: avoid Cortex-A9 livelock on tight dmb loops d8945878ded6 ARM: 8830/1: NOMMU: Toggle only bits in EXC_RETURN we are really care of 668713493a19 mt7601u: bump supported EEPROM version a2479c401054 soc: qcom: gsbi: Fix error handling in gsbi_probe() ce80ebf7a04e efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted 240a9050a3d8 ARM: dts: lpc32xx: Remove leading 0x and 0s from bindings notation b5c1dc9d8fa4 drm/vkms: Bugfix extra vblank frame e8e0bd4915ec sched/core: Use READ_ONCE()/WRITE_ONCE() in move_queued_task()/task_rq_lock() b12a060a0bd2 efi/memattr: Don't bail on zero VA if it equals the region's PA f056c90f079a sched/debug: Initialize sd_sysctl_cpus if !CONFIG_CPUMASK_OFFSTACK 442caac9fce9 ASoC: fsl-asoc-card: fix object reference leaks in fsl_asoc_card_probe b4410c7d731d iwlwifi: mvm: fix RFH config command with >=10 CPUs 080e00c8f6f9 staging: spi: mt7621: Add return code check on device_reset() f0eb935c50b9 i2c: of: Try to find an I2C adapter matching the parent 7c114e8605a9 platform/x86: intel_pmc_core: Fix PCH IP sts reading b9f257e27890 e1000e: Exclude device from suspend direct complete optimization c23242c36bdd e1000e: fix cyclic resets at link up with active tx efd85d83ac0f perf/aux: Make perf_event accessible to setup_aux() 355ffe6cc2a1 drm/amd/display: Disconnect mpcc when changing tg 6c68d1654c27 drm/amd/display: Don't re-program planes for DPMS changes 322a55a56a2a drm: rcar-du: add missing of_node_put 924af49998c2 cdrom: Fix race condition in cdrom_sysctl_register 6d293647f8d9 fbdev: fbmem: fix memory access if logo is bigger than the screen 2dd699432958 net: phy: consider latched link-down status in polling mode 5203cf8e29e5 iw_cxgb4: fix srqidx leak during connection abort a78aae93ba9c net: marvell: mvpp2: fix stuck in-band SGMII negotiation 1f3694865d56 genirq: Avoid summation loops for /proc/stat 98eddc19f9e9 bcache: improve sysfs_strtoul_clamp() b468e0007435 bcache: fix potential div-zero error of writeback_rate_i_term_inverse c7b687ebe0fb bcache: fix input overflow to sequential_cutoff 16975f04f2ca bcache: fix input overflow to cache set sysfs file io_error_halflife 845d4849b60c sched/topology: Fix percpu data types in struct sd_data & struct s_data ad02fb6a6cc8 usb: f_fs: Avoid crash due to out-of-scope stack ptr access 126f2f6af291 ath10k: fix shadow register implementation for WCN3990 ccce764322d8 ALSA: PCM: check if ops are defined before suspending PCM d21a63fc1e53 ARM: dts: meson8b: fix the Ethernet data line signals in eth_rgmii_pins d93fe5e6c9d9 ARM: 8833/1: Ensure that NEON code always compiles with Clang 3a1ce9793855 netfilter: conntrack: fix cloned unconfirmed skb->_nfct race in __nf_conntrack_confirm d53b295f7805 kprobes: Prohibit probing on RCU debug routine bc9d714395e2 kprobes: Prohibit probing on bsearch() c63cc8d1487c selftests: skip seccomp get_metadata test if not real root 2df541d0a665 ACPI / video: Refactor and fix dmi_is_desktop() d63105845ac5 iwlwifi: pcie: fix emergency path 5cdd025907b8 perf report: Add s390 diagnosic sampling descriptor size 5658279f50ea leds: lp55xx: fix null deref on firmware load failure 9154420173d5 jbd2: fix race when writing superblock a74ebf047e4f cgroup, rstat: Don't flush subtree root unless necessary b13eb5245f9f HID: intel-ish-hid: avoid binding wrong ishtp_cl_device c26d61ea90db vfs: fix preadv64v2 and pwritev64v2 compat syscalls with offset == -1 7273c2b1e79c xen/gntdev: Do not destroy context while dma-bufs are in use e9cd7f543764 mt76: usb: do not run mt76u_queues_deinit twice 5cde7721dd05 media: mtk-jpeg: Correct return type for mem2mem buffer helpers 745cdc344f97 media: mx2_emmaprp: Correct return type for mem2mem buffer helpers 73a4cc59054e media: s5p-g2d: Correct return type for mem2mem buffer helpers 3c6cd079058e media: rockchip/rga: Correct return type for mem2mem buffer helpers 55919fc28419 media: s5p-jpeg: Correct return type for mem2mem buffer helpers a23fd268fdbb media: sh_veu: Correct return type for mem2mem buffer helpers 635fabdd8202 media: ov7740: fix runtime pm initialization 1d836ce73a10 SoC: imx-sgtl5000: add missing put_device() d41687c82a70 perf report: Don't shadow inlined symbol with different addr range 801b8d8c7729 mwifiex: don't advertise IBSS features without FW support d323e59f58bb perf test: Fix failure of 'evsel-tp-sched' test on s390 345c7757fd54 drm/amd/display: Clear stream->mode_changed after commit 1ef1b20f8711 scsi: fcoe: make use of fip_mode enum complete 8032fc9120c2 scsi: megaraid_sas: return error when create DMA pool failed 2c6e3ec8a906 s390/ism: ignore some errors during deregistration d60f458e4c4d efi: cper: Fix possible out-of-bounds access e57f4676b92f cpufreq: acpi-cpufreq: Report if CPU doesn't support boost technologies eb70531a95c8 ASoC: qcom: Fix of-node refcount unbalance in qcom_snd_parse_of() e6786f8686ef perf annotate: Fix getting source line failure 763a895aa49c clk: fractional-divider: check parent rate only if flag is set d3ec442d609b IB/mlx4: Increase the timeout for CM cache 61584032c4d6 loop: set GENHD_FL_NO_PART_SCAN after blkdev_reread_part() 07a31820b241 platform/mellanox: mlxreg-hotplug: Fix KASAN warning 0bacfb4adc1b platform/x86: ideapad-laptop: Fix no_hw_rfkill_list for Lenovo RESCUER R720-15IKBN a64ffbaf7056 mlxsw: spectrum: Avoid -Wformat-truncation warnings 49dd86f0f5ec e1000e: Fix -Wformat-truncation warnings c6fb45d895e0 net: dsa: mv88e6xxx: Add lockdep classes to fix false positive splat 194b888af85e mmc: omap: fix the maximum timeout setting dcedd37957de btrfs: qgroup: Make qgroup async transaction commit more aggressive 6cf5f631bad0 powerpc/hugetlb: Handle mmap_min_addr correctly in get_unmapped_area callback fc96b44c05c2 iommu/io-pgtable-arm-v7s: Only kmemleak_ignore L2 tables d81bdb3c17f1 ARM: 8840/1: use a raw_spinlock_t in unwind 951307172652 serial: 8250_pxa: honor the port number from devicetree 2636ccec991e coresight: etm4x: Add support to enable ETMv4.2 c70214d519ed powerpc/xmon: Fix opcode being uninitialized in print_insn_powerpc 638ecaf58369 kbuild: invoke syncconfig if include/config/auto.conf.cmd is missing 5db107484403 scsi: core: replace GFP_ATOMIC with GFP_KERNEL in scsi_scan.c 4acf797458ce powerpc/powernv/ioda: Fix locked_vm counting for memory used by IOMMU tables 6030bcc04735 usb: chipidea: Grab the (legacy) USB PHY by phandle first b142c7973338 crypto: cavium/zip - fix collision with generic cra_driver_name d401d121113e crypto: crypto4xx - add missing of_node_put after of_device_is_available 241ebd2ea44b mt76: fix a leaked reference by adding a missing of_node_put 6115055b4efe wil6210: check null pointer in _wil_cfg80211_merge_extra_ies 9546c3662dc5 PCI/PME: Fix hotplug/sysfs remove deadlock in pcie_pme_remove() 224c996e48be tools lib traceevent: Fix buffer overflow in arg_eval 83c395332fdf fs: fix guard_bio_eod to check for real EOD errors 6a817a7aed1c jbd2: fix invalid descriptor block checksum ca66f667189c netfilter: conntrack: tcp: only close if RST matches exact sequence 709aaa09b200 netfilter: nf_tables: check the result of dereferencing base_chain->stats 36a3219e617a cifs: Fix NULL pointer dereference of devname d579b4eae836 cifs: Accept validate negotiate if server return NT_STATUS_NOT_SUPPORTED 4ab78f4d75c6 f2fs: fix to check inline_xattr_size boundary correctly 8c81fcd3d5c1 dm thin: add sanity checks to thin-pool and external snapshot creation 626d98bbdb30 cifs: use correct format characters a6c56bf63e87 page_poison: play nicely with KASAN d609ecd887f8 fs/file.c: initialize init_files.resize_wait 9b4f27667402 f2fs: do not use mutex lock in atomic context 20141feb9bde ocfs2: fix a panic problem caused by o2cb_ctl f09c424cea9f mm/slab.c: kmemleak no scan alien caches 8a0fc62e331e mm/vmalloc.c: fix kernel BUG at mm/vmalloc.c:512! 67abbb9c5422 mm, mempolicy: fix uninit memory access 9d785b92cf0d memcg: killed threads should not invoke memcg OOM killer eed3ca0a66cf mm,oom: don't kill global init via memory.oom.group ed3345a6607b mm, swap: bounds check swap_info array accesses to avoid NULL derefs 4c6d7dc741cb mm/page_ext.c: fix an imbalance with kmemleak f555b008c576 mm/cma.c: cma_declare_contiguous: correct err handling 7b287c47e452 mm/sparse: fix a bad comparison aea8c971b9c5 perf c2c: Fix c2c report for empty numa node c3f28d59c1a5 x86/hyperv: Fix kernel panic when kexec on HyperV 3e8d62218aa4 iio: adc: fix warning in Qualcomm PM8xxx HK/XOADC driver e27cced35a4b scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO fce6aeaf913e scsi: hisi_sas: Set PHY linkrate when disconnected e21f655c60fa libbpf: force fixdep compilation at the start of the build 6048330675cc enic: fix build warning without CONFIG_CPUMASK_OFFSTACK 9ec4860de95a net: stmmac: Avoid sometimes uninitialized Clang warnings b227f1571269 sysctl: handle overflow for file-max d6ad08aa3467 include/linux/relay.h: fix percpu annotation in struct rchan 4c96500e3658 gpio: gpio-omap: fix level interrupt idling 8c50ab86e288 net/mlx5: Avoid panic when setting vport mac, getting vport config 3bddc6149f02 net/mlx5: Avoid panic when setting vport rate b73c7d020452 tracing: kdb: Fix ftdump to not sleep d7391962d723 f2fs: fix to avoid deadlock in f2fs_read_inline_dir() 198c99857b30 f2fs: fix to adapt small inline xattr space in __find_inline_xattr() 56bb66c50296 h8300: use cc-cross-prefix instead of hardcoding h8300-unknown-linux- 2938651d36ca CIFS: fix POSIX lock leak and invalid ptr deref 442d5d171cd8 tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped b6b4bcb40be0 tty/serial: atmel: Add is_half_duplex helper 2dbc7c66d6da ext4: cleanup bh release code in ext4_ind_remove_space() bd62f1fe736e arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals 4b3a3ab00fa7 Linux 4.19.33 11008a9b0fc7 platform: x86: intel_cht_int33fe: Remove the old connections for the muxes 056cda45cfed usb: typec: class: Don't use port parent for getting mux handles 6875404a12f8 platform: x86: intel_cht_int33fe: Add connections for the USB Type-C port 681a9fc184b3 platform: x86: intel_cht_int33fe: Add connection for the DP alt mode 3bb446a3fe87 platform: x86: intel_cht_int33fe: Register all connections at once e99d90ce7750 drivers: base: Helpers for adding device connection descriptions f5959dec081a bpf: do not restore dst_reg when cur_state is freed 738dda85d181 staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() 83bbd66b3753 staging: erofs: fix error handling when failed to read compresssed data 3a18eabaa712 KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts b9733a74350d KVM: x86: update %rip after emulating IO 7ceedcefc2d2 KVM: Reject device ioctls from processes other than the VM's creator a0713e8103d1 x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y a56aa02e6f15 cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n 336f6b23b5b8 watchdog: Respect watchdog cpumask on CPU hotplug c91d07ad34d7 powerpc/64: Fix memcmp reading past the end of src/dest d7c00bbbfac4 powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes 0603e3a9281d objtool: Query pkg-config for libelf location a436cf6479c0 perf intel-pt: Fix TSC slip 5f9366330950 perf pmu: Fix parser error for uncore event alias f70ddae24bdf mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate 5966777dd807 mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified c9874d397807 iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging 62d342d67060 mm: add support for kmem caches in DMA32 zone 2392ffab085a usb: cdc-acm: fix race during wakeup blocking TX traffic 82a5090aad84 xhci: Don't let USB3 ports stuck in polling state prevent suspend 20a09a2e8703 usb: xhci: dbc: Don't free all memory with spinlock held c81b872281a1 xhci: Fix port resume done detection for SS ports with LPM enabled 093ccda1a041 usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk 015e5c17617a usb: common: Consider only available nodes for dr_mode ef4df134e77e USB: gadget: f_hid: fix deadlock in f_hidg_write() 614ac345bfec usb: mtu3: fix EXTCON dependency 66e44981de0e phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs 6ebe03734361 gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input b26f7e86d3cc gpio: exar: add a check for the return value of ida_simple_get fails df74e70ffec6 drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check 75f9e994b9fd drm/vkms: fix use-after-free when drm_gem_handle_create() fails eb1e552524b4 drm/vgem: fix use-after-free when drm_gem_handle_create() fails 07d0d2bd957a fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links c956914f1efa Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc 1c992ea006ce USB: serial: option: add Olicard 600 19151c645d0c USB: serial: option: add support for Quectel EM12 002795b0d9b3 USB: serial: option: set driver_info for SIM5218 and compatibles d7dfccfd3c4b USB: serial: mos7720: fix mos_parport refcount imbalance on error path 1f46db3cc133 USB: serial: ftdi_sio: add additional NovaTech products 2a63003545d0 USB: serial: cp210x: add new device id 59203f078cc6 serial: sh-sci: Fix setting SCSCR_TIE while transferring data b1e660c6f802 serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference f34ec64b3f6c serial: max310x: Fix to avoid potential NULL pointer dereference a090ed15420a staging: erofs: fix to handle error path of erofs_vmap() 3b6b76644ba5 staging: vt6655: Fix interrupt race condition on device start up. b9ddff2a41cd staging: vt6655: Remove vif check from vnt_interrupt 86092f2d5ccb staging: speakup_soft: Fix alternate speech with other synths d0360bf48143 staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest 668ba38d8950 tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup b9bbd1edddf7 tty: atmel_serial: fix a potential NULL pointer dereference 124e42064c0d tty: mxs-auart: fix a potential NULL pointer dereference 7fb7414da97e drm/rockchip: vop: reset scale mode when win is disabled a93cd9137fea scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices 983a543de13a scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host a52eb223a6ee scsi: sd: Quiesce warning if device does not report optimal I/O size d72658775c4b scsi: sd: Fix a race between closing an sd device and sd I/O 3b3fcc3d4ffd ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock 72b790c417b9 fs/open.c: allow opening only regular files during execve() aa7f29f87027 kbuild: modversions: Fix relative CRC byte order interpretation 4dfae837ceaf ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops 6f3dbb71085c ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 633d5db40280 ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 fd4000c77a5a ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 48e8e6a736b6 ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic 5fa5a8679b92 ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 5ec67684be9e ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 89ec6d400b5d ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB 522f06c9c00d ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO 5b93302bbc4e ALSA: pcm: Don't suspend stream in unrecoverable PCM state 7fc6064dc3b2 ALSA: pcm: Fix possible OOB access in PCM oss plugins b425f45295dd ALSA: seq: oss: Fix Spectre v1 vulnerability bd55e6727a33 ALSA: rawmidi: Fix potential Spectre v1 vulnerability a485919fe4cc net: dsa: qca8k: remove leftover phy accessors 64751542d3f3 NFSv4.1 don't free interrupted slot on open da57cba4f3f1 NFS: fix mount/umount race in nlmclnt. 0f273f0c3064 vfio: ccw: only free cp on final interrupt 92d4ee2e8276 powerpc: bpf: Fix generation of load/store DW instructions 9397f0d9948c ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time fd1b25364fef Btrfs: fix assertion failure on fsync with NO_HOLES enabled 0ae3b84b3fa6 btrfs: Avoid possible qgroup_rsv_size overflow in btrfs_calculate_inode_block_rsv_size 1cf4ab01eb5a btrfs: raid56: properly unmap parity page in finish_parity_scrub() d952c337b25d btrfs: don't report readahead errors and don't update statistics b57220cc9820 btrfs: remove WARN_ON in log_dir_items 22dcb30fb9d8 Btrfs: fix incorrect file size after shrinking truncate and fsync a1df5db3a9f1 powerpc/security: Fix spectre_v2 reporting 986f0c656749 powerpc/fsl: Fix the flush of branch predictor. b848d19c483a powerpc/fsl: Fixed warning: orphan section `__btb_flush_fixup' 632d839296bd powerpc/fsl: Update Spectre v2 reporting 43f40620d7a5 powerpc/fsl: Enable runtime patching if nospectre_v2 boot arg is used a46a50382639 powerpc/fsl: Flush branch predictor when entering KVM 3cb931c709d0 powerpc/fsl: Flush the branch predictor at each kernel entry (32 bit) cf72dad924cb powerpc/fsl: Flush the branch predictor at each kernel entry (64bit) 020e5f13805b powerpc/fsl: Add nospectre_v2 command line argument 4a6a2287e0e6 powerpc/fsl: Emulate SPRN_BUCSR register 4944f1d48d71 powerpc/fsl: Add macro to flush the branch predictor d67ab3d9a1b7 powerpc/fsl: Add infrastructure to fixup branch predictor flush e044d21c2999 tun: add a missing rcu_read_unlock() in error path 6bdb5fdc4787 thunderx: eliminate extra calls to put_page() for pages held for recycling ac8411d75962 thunderx: enable page recycling for non-XDP case a491de9041b4 net: sched: fix cleanup NULL pointer exception in act_mirr 7254ad094f4a ila: Fix rhashtable walker list corruption 979f8a675d3b vxlan: Don't call gro_cells_destroy() before device is unregistered 3b1386beeef4 vrf: prevent adding upper devices 8ea78da1aa3e tun: properly test for IFF_UP 52a7505c91a1 tipc: fix cancellation of topology subscriptions 1be6c0c737e4 tipc: change to check tipc_own_id to return in tipc_net_stop 24d1a6259706 tipc: allow service ranges to be connect()'ed on RDM/DGRAM 7115df614b09 tcp: do not use ipv6 header for ipv4 flow cab576f1b00f sctp: use memdup_user instead of vmemdup_user 97265479d7ca sctp: get sctphdr by offset in sctp_compute_cksum cf86f7a97561 rhashtable: Still do rehash when we get EEXIST 69cea7cf3170 packets: Always register packet sk in the same order d9d215be3a3a net-sysfs: call dev_hold if kobject_init_and_add success 8dcf078d92ae net: stmmac: fix memory corruption with large MTUs 7eeb12edf637 net: rose: fix a possible stack overflow a6f0168e6681 net: phy: meson-gxl: fix interrupt support 85ef72d829eb net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec 88c64f9c7d3f net: datagram: fix unbounded loop in __skb_try_recv_datagram() e4ff39e1ba80 net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 c408426292ee mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S e0f8c06f45c3 mac8390: Fix mmio access size probe be09211384c2 ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL 53adaacbbadb gtp: change NET_UDP_TUNNEL dependency to select 9b8ef421b481 genetlink: Fix a memory leak on error path 321461f2497f dccp: do not use ipv6 header for ipv4 flow 6bba17f6bce3 ipmi_si: Fix crash when using hard-coded device 15d6538a0d6e Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer 2318c0e4b87e Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt 3a2156c839c7 Linux 4.19.32 33bd347fee01 power: supply: charger-manager: Fix incorrect return value 19184190b029 ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec 156ba57f4ba6 ALSA: hda - Record the current power state before suspend/resume calls 0e0f7b307212 locking/lockdep: Add debug_locks check in __lock_downgrade() 206a76a684a7 x86/unwind: Add hardcoded ORC entry for NULL 367ccafbcbfe x86/unwind: Handle NULL pointer calls better in frame unwinder 3254dd301f80 loop: access lo_backing_file only when the loop device is Lo_bound 35cdcdc5c49d netfilter: ebtables: remove BUGPRINT messages 1fd916e879a9 f2fs: fix to avoid deadlock of atomic file operations 9dd5053c8cd5 RDMA/cma: Rollback source IP address if failing to acquire device 015b828bd66d drm: Reorder set_property_atomic to avoid returning with an active ww_ctx e365b94086f9 Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in hci_uart_set_proto() f67202f78fe3 Bluetooth: hci_ldisc: Initialize hci_dev before open() 4b39051363a0 Bluetooth: Fix decrementing reference count twice in releasing socket 4e0ca4bfa2bc Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() 6bef442eea18 media: v4l2-ctrls.c/uvc: zero v4l2_event d12d86411c03 ext4: brelse all indirect buffer in ext4_ind_remove_space() 76c9ee6bd5d2 ext4: fix data corruption caused by unaligned direct AIO 558331d0205b ext4: fix NULL pointer dereference while journal is aborted ff7a1f81c20e ALSA: ac97: Fix of-node refcount unbalance c8e91d756703 ALSA: hda/ca0132 - make pci_iounmap() call conditional 4a767459389a ALSA: x86: Fix runtime PM for hdmi-lpe-audio 38bd575b9aef SMB3: Fix SMB3.1.1 guest mounts to Samba aacf2cc814c2 irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp daaeeca918e7 objtool: Move objtool_file struct off the stack 37c6f8089806 perf probe: Fix getting the kernel map 14c52acaac86 cifs: allow guest mounts to work for smb3.11 36d52f5bcd57 futex: Ensure that futex address is aligned in handle_futex_death() 837becb30c3b scsi: ibmvscsi: Fix empty event pool access during host removal 04809b226e79 scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton b8ea151a7ab5 powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 9d91069f48cc MIPS: Fix kernel crash for R6 in jump label branch function 6e74961bd67d MIPS: Ensure ELF appended dtb is relocated 56bcf3df2552 mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. c72e90d94a14 udf: Fix crash on IO error during truncate 9cae232a8706 libceph: wait for latest osdmap in ceph_monc_blacklist_add() 869157135003 iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE 69e26237ed1e drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's ab483d1ca7ae drm/vmwgfx: Don't double-free the mode stored in par->set_mode 42f358b2d48c mmc: renesas_sdhi: limit block count to 16 bit for old revisions 65a5c93687b7 mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" 3b6870159e2e mmc: pxamci: fix enum type confusion 6339cc5181c0 ALSA: firewire-motu: use 'version' field of unit directory to identify model 023a1b28cf72 ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist a2cddfe2ce6e Linux 4.19.31 3053cb9701cd s390/setup: fix boot crash for machine without EDAT-1 e578f90d8a9c bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata 5ffb710b03d5 KVM: nVMX: Ignore limit checks on VMX instructions using flat segments 29b515c27c0a KVM: nVMX: Apply addr size mask to effective address for VMX instructions 9ce0ffeb68b6 KVM: nVMX: Sign extend displacements of VMX instr's mem operands c235af5a10f2 KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux 656e9e5d5529 KVM: x86/mmu: Detect MMIO generation wrap in any address space 23ad135ae66f KVM: Call kvm_arch_memslots_updated() before updating memslots 585715ef18bf drm/amd/display: don't call dm_pp_ function from an fpu block 17982c6a649b drm/amd/powerplay: correct power reading on fiji 808b1c1e28e8 drm/radeon/evergreen_cs: fix missing break in switch statement 9bc6e5673949 drm/fb-helper: generic: Fix drm_fbdev_client_restore() 87bfc7b695bd media: imx: csi: Stop upstream before disabling IDMA channel 54b941202391 media: imx: csi: Disable CSI immediately after last EOF 73236bf581e9 media: vimc: Add vimc-streamer for stream control 29e8c9ae99c7 media: uvcvideo: Avoid NULL pointer dereference at the end of streaming 77b4e7454bbd media: lgdt330x: fix lock status reporting 6039128dc6bf media: imx: prpencvf: Stop upstream before disabling IDMA channel e97a32a5a3bc rcu: Do RCU GP kthread self-wakeup from softirq and interrupt bce45a547546 tpm: Unify the send callback behaviour af0c1bd0c5e9 tpm/tpm_crb: Avoid unaligned reads in crb_recv() cc3b79d487e8 md: Fix failed allocation of md_register_thread 01088750f25e perf intel-pt: Fix divide by zero when TSC is not available 30cedf18d1e2 perf/x86/intel/uncore: Fix client IMC events return huge result a46a8cdfea3c perf intel-pt: Fix overlap calculation for padding fa592fc0bde5 perf auxtrace: Define auxtrace record alignment d8f691f29d91 perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols e25353a0ac44 perf intel-pt: Fix CYC timestamp calculation after OVF 3e5a054b0f70 x86/unwind/orc: Fix ORC unwind table alignment b05581b8ba9c vt: perform safe console erase in the right order 2ca85aac1213 stable-kernel-rules.rst: add link to networking patch queue 622afe5c7449 bcache: never writeback a discard operation cd73824636cb PM / wakeup: Rework wakeup source timer cancellation 43bceddcd7e2 svcrpc: fix UDP on servers with lots of threads 4af185feb9df NFSv4.1: Reinitialise sequence results before retransmitting a request ecab6ab1c227 nfsd: fix wrong check in write_v4_end_grace() 8056912c1c75 nfsd: fix memory corruption caused by readdir 10a68cdf1035 nfsd: fix performance-limiting session calculation 2c648caf630d NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() 63b0ee126f7e NFS: Fix an I/O request leakage in nfs_do_recoalesce be74fddc976e NFS: Fix I/O request leakages 4ea4f347662c cpcap-charger: generate events for userspace ce02d82c4e1a mfd: sm501: Fix potential NULL pointer dereference 5579d97e92f7 dm integrity: limit the rate of error messages 7668d6e45f3a dm: fix to_sector() for 32bit a441fdaf8c30 ipmi_si: fix use-after-free of resource->name 3cbae9fa85ce arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 c113a7fb017b arm64: debug: Ensure debug handlers check triggering exception level 85c8ea220f89 arm64: Fix HCR.TGE status for NMI contexts 58691e6a93d8 ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify d6d004b3dd70 powerpc/traps: Fix the message printed when stack overflows 461a52a44893 powerpc/traps: fix recoverability of machine check handling on book3s/32 baed68a953ac powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration 9d2e929c3bae powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning 344996a835d4 powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest 3bf8ff7bc667 powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit f6f03d6078b1 powerpc/83xx: Also save/restore SPRG4-7 during suspend b0934990125a powerpc/powernv: Make opal log only readable by root 9b5305504709 powerpc/wii: properly disable use of BATs when requested. 40b97853c200 powerpc/32: Clear on-stack exception marker upon exception return c7dad095f35a security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock e4f6f82c9edc selinux: add the missing walk_size + len check in selinux_sctp_bind_connect 584f390d1039 jbd2: fix compile warning when using JBUFFER_TRACE dbe4bc993836 jbd2: clear dirty flag when revoking a buffer from an older transaction 3545324fba52 serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup() 8225bb965f29 serial: 8250_pci: Fix number of ports for ACCES serial cards 9d0b55bb2aec serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart a4b021ec4b5a serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO 9920eb4003c5 bpf: only test gso type on gso packets 206fa92c9d52 drm/i915: Relax mmap VMA check 116a9e31237c can: flexcan: FLEXCAN_IFLAG_MB: add () around macro argument 6f29e4c2dbb1 gpio: pca953x: Fix dereference of irq data in shutdown e86a57ecdfac media: i2c: ov5640: Fix post-reset delay 5f9614d0540b i2c: tegra: fix maximum transfer size 25970b517db1 parport_pc: fix find_superio io compare code, should use equal test. 57c29a08c4cf intel_th: Don't reference unassigned outputs c835b4417c18 device property: Fix the length used in PROPERTY_ENTRY_STRING() 93c8a44a8297 kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv 09417dd35e37 mm/memory.c: do_fault: avoid usage of stale vm_area_struct c1ddc7b785b4 mm/vmalloc: fix size check for remap_vmalloc_range_partial() 234c0cc98221 mm: hwpoison: fix thp split handing in soft_offline_in_use_page() c7fd1a968c5d dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit 822e21853439 usb: typec: tps6598x: handle block writes separately with plain-I2C adapters 8415e718a06b usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() b1c1ef7b4d63 clk: ingenic: Fix doc of ingenic_cgu_div_info 4a04611fc266 clk: ingenic: Fix round_rate misbehaving with non-integer dividers 33e7604ac8fd clk: samsung: exynos5: Fix kfree() of const memory on setting driver_override 4d1de1e6d266 clk: samsung: exynos5: Fix possible NULL pointer exception on platform_device_alloc() failure 9aba7a8fd163 clk: clk-twl6040: Fix imprecise external abort for pdmclk 6e02a5f5aba3 clk: uniphier: Fix update register for CPU-gear 62600af3a7cb ext2: Fix underflow in ext2_max_size() c335b49379b5 cxl: Wrap iterations over afu slices inside 'afu_list_lock' 54674984d478 IB/hfi1: Close race condition on user context disable and close 09bc2f5a16a9 PCI: dwc: skip MSI init if MSIs have been explicitly disabled 13a9d14fbf1b PCI/DPC: Fix print AER status in DPC event handling c733cf4abfba PCI/ASPM: Use LTR if already enabled by platform 8a4fdc649ca9 ext4: fix crash during online resizing a0d876c77705 ext4: add mask of ext4 flags to swap 048bfb5bc05f ext4: update quota information while swapping boot loader inode 071f68163cc0 ext4: cleanup pagecache before swap i_data cdf9941b7707 ext4: fix check of inode in swap_inode_boot_loader ae228aca576d cpufreq: pxa2xx: remove incorrect __init annotation f65b34d0f979 cpufreq: tegra124: add missing of_node_put() 33565a76a7b2 cpufreq: kryo: Release OPP tables on module removal ee7d297fba24 x86/kprobes: Prohibit probing on optprobe template code a477075ebab3 irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code c8666ede18ec irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table b92fad6995c3 libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer 02c55be588b1 soc: qcom: rpmh: Avoid accessing freed memory from batch API 898488e2988c Btrfs: fix corruption reading shared and compressed extents after hole punching 1a00f7fd0fbf btrfs: ensure that a DUP or RAID1 block group has exactly two stripes 6e24f5a1ebb1 Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl 61f9209676e8 Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() fcbf12e23d99 m68k: Add -ffreestanding to CFLAGS 205f149f1a35 ovl: Do not lose security.capability xattr over metadata file copy-up 6f048ae2d25f ovl: During copy up, first copy up data and then xattrs 2af926fd52fc splice: don't merge into linked buffers 1c2123ff4312 fs/devpts: always delete dcache dentry-s in dput() d8ae662b400f scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware f4a9fd5652d5 scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock 852a4ab292bb scsi: sd: Optimal I/O size should be a multiple of physical block size e6e738e2b5ff scsi: aacraid: Fix performance issue on logical drives bd8a0e656935 scsi: virtio_scsi: don't send sc payload with tmfs 1653307cf0e7 s390/virtio: handle find on invalid queue gracefully b52bdf53130a s390/setup: fix early warning messages e19ca3fe6cf2 clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer instability ef8062e20614 clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown c1f45c10df2e clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR 06607b1b6cc9 regulator: s2mpa01: Fix step values for some LDOs c288e34df128 regulator: max77620: Initialize values for DT properties 462aee48a8a2 regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 15ead7e2a11e spi: pxa2xx: Setup maximum supported DMA transfer length e51c5ec99597 spi: ti-qspi: Fix mmap read when more than one CS in use 0d98ecb141a6 netfilter: ipt_CLUSTERIP: fix warning unused variable cn 6bd9959aa110 mmc:fix a bug when max_discard is 0 2946910ed837 mmc: sdhci-esdhc-imx: fix HS400 timing issue c19b9673487e ACPI / device_sysfs: Avoid OF modalias creation for removed device 468ff43f6274 xen: fix dom0 boot on huge systems 24d5097655eb tracing/perf: Use strndup_user() instead of buggy open-coded version f27077e5f5c5 tracing: Do not free iter->trace in fail path of tracing_open_pipe() ebca08d7e862 tracing: Use strncpy instead of memcpy for string keys in hist triggers 43eaa6cc1775 CIFS: Fix read after write for files with read caching dc8e8ad962a8 CIFS: Do not skip SMB2 message IDs on send failures 3ed9f22e28dd CIFS: Do not reset lease state to NONE on lease break 41e2d1c43c87 crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine d5a5bded80a6 crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling 66700c89f0ab crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP 8a9fcf4a9f1f crypto: x86/aesni-gcm - fix crash on empty plaintext 5d2a5172caa4 crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP 574c19d97e6b crypto: testmgr - skip crc32c context test for ahash algorithms e6c703f15872 crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails bb1ae0aadbf1 crypto: pcbc - remove bogus memcpy()s with src == dest c0bfdac6a471 crypto: morus - fix handling chunked inputs dc410d2d8405 crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 76f21678d64f crypto: arm64/crct10dif - revert to C code for short inputs 4bca5a9a5dcd crypto: arm64/aes-neonbs - fix returning final keystream block 0beb34b865e3 crypto: arm/crct10dif - revert to C code for short inputs 4c152af938ce crypto: aegis - fix handling chunked inputs 736807d69157 crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 7a8b048430c1 fix cgroup_do_mount() handling of failure exits 3b8da135a4cc libnvdimm: Fix altmap reservation size calculation 696c37524beb libnvdimm/pmem: Honor force_raw for legacy pmem regions 6a89ed7aa140 libnvdimm, pfn: Fix over-trim in trim_pfn_device() 2b88d92ea9d2 libnvdimm/label: Clear 'updating' flag after label-set update f4dfb94a0754 nfit/ars: Attempt short-ARS even in the no_init_ars case e6defe76600b nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot f5878c4f084d acpi/nfit: Fix bus command validation 8df25eb903c5 nfit: acpi_nfit_ctl(): Check out_obj->type in the right place eabd7d248e21 stm class: Prevent division by zero b3139fbb3b00 tmpfs: fix uninitialized return value in shmem_link d3f62d3eab0b selftests: fib_tests: sleep after changing carrier. again. 8cd89bf632b2 net: set static variable an initial value in atl2_probe() 29e4bfbc79b4 bnxt_en: Wait longer for the firmware message response to complete. b4baeab7e084 bnxt_en: Fix typo in firmware message timeout logic. a40fa9498707 nfp: bpf: fix ALU32 high bits clearance bug 7ca1faa52be7 nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K 4523507c52b8 net: thunderx: add nicvf_send_msg_to_pf result check for set_rx_mode_task 17bc53e73d0c net: thunderx: make CFG_DONE message to run through generic send-ack sequence 02f8211b75c9 bpf, lpm: fix lookup bug in map_delete_elem c5f37906ecb7 mac80211_hwsim: propagate genlmsg_reply return code ee01ac61d1d4 phonet: fix building with clang 8b9187e7df64 ARCv2: don't assume core 0x54 has dual issue 3220aa9b0065 ARCv2: support manual regfile save on interrupts 74b4dcea6756 ARC: uacces: remove lp_start, lp_end from clobber list 2fc69e55f370 ARCv2: lib: memcpy: fix doing prefetchw outside of buffer 2c049f195787 ixgbe: fix older devices that do not support IXGBE_MRQC_L3L4TXSWEN 064a61d3e7b5 tmpfs: fix link accounting when a tmpfile is linked in e6e9d6e29002 mm: handle lru_add_drain_all for UP properly f3a9c9be0eb4 net: marvell: mvneta: fix DMA debug warning e52578889c8e ARM: tegra: Restore DT ABI on Tegra124 Chromebooks f715466a3f23 arm64: Relax GIC version check during early boot 2f97f7125237 ARM: dts: armada-xp: fix Armada XP boards NAND description e4d14f616050 qed: Fix iWARP syn packet mac address validation. 821c67748623 qed: Fix iWARP buffer size provided for syn packet processing. 90fc2f95c418 ASoC: topology: free created components in tplg load error edd7b6b9be97 mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush timeout issue 6ac400b7c5e8 xfrm: Fix inbound traffic via XFRM interfaces across network namespaces 3a5321342361 net: mv643xx_eth: disable clk on error path in mv643xx_eth_shared_probe() a139d6a318de qmi_wwan: apply SET_DTR quirk to Sierra WP7607 13cb60c3c915 pinctrl: meson: meson8b: fix the sdxc_a data 1..3 pins 90a86d00af1a net: dsa: bcm_sf2: Do not assume DSA master supports WoL d33f5a0febfa net: systemport: Fix reception of BPDUs 3491857f4292 scsi: libiscsi: Fix race between iscsi_xmit_task and iscsi_complete_task 726832821903 keys: Fix dependency loop between construction record and auth key fac71ac37634 assoc_array: Fix shortcut creation 84657a1ba9bd ARM: 8835/1: dma-mapping: Clear DMA ops on teardown 978e0388c22b af_key: unconditionally clone on broadcast c7c68a1b9a16 bpf: fix lockdep false positive in stackmap 413e39852082 bpf: only adjust gso_size on bytestream protocols da3495301cda ARM: 8824/1: fix a migrating irq bug when hotplug cpu b92eaed36c4b esp: Skip TX bytes accounting when sending from a request socket 2f3b4f968619 clk: sunxi: A31: Fix wrong AHB gate number cacf3c0d8288 kallsyms: Handle too long symbols in kallsyms.c 980f44f8dd8a clk: sunxi-ng: v3s: Fix TCON reset de-assert bit 5050f03ff0b1 Input: st-keyscan - fix potential zalloc NULL dereference bf26feccf99c auxdisplay: ht16k33: fix potential user-after-free on module unload 8e770d996ea4 i2c: bcm2835: Clear current buffer pointers and counts after a transfer d9ce9aea3f63 i2c: cadence: Fix the hold bit setting 8f622a7d512c net: hns: Fix object reference leaks in hns_dsaf_roce_reset() 33e83ea302c0 mm: page_alloc: fix ref bias in page_frag_alloc() for 1-byte allocs a9503ade1bf7 x86/CPU: Add Icelake model number 388f3adb2729 net: dsa: bcm_sf2: potential array overflow in bcm_sf2_sw_suspend() 8ab49fd5b072 scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd 53dcaeeff145 Revert "mm: use early_pfn_to_nid in page_ext_init" 8b1a7762e0da mm/gup: fix gup_pmd_range() for dax 6c023d86b364 NFS: Don't use page_file_mapping after removing the page d84bc704b91e xprtrdma: Make sure Send CQ is allocated on an existing compvec e01f2b0821ea floppy: check_events callback should not return a negative number 5ca2ef674d74 ipvs: fix dependency on nf_defrag_ipv6 29452f665c2f blk-mq: insert rq with DONTPREP to hctx dispatch list when requeue e0e6b0d7e09c netfilter: compat: initialize all fields in xt_init a5a244451145 mac80211: Fix Tx aggregation session tear down with ITXQs bff33ba4f9ca mac80211: call drv_ibss_join() on restart 134891e124da Input: matrix_keypad - use flush_delayed_work() e91dc2092f7f Input: ps2-gpio - flush TX work when closing port 4fe714b750cb Input: cap11xx - switch to using set_brightness_blocking() f49f7007de59 ARM: OMAP2+: fix lack of timer interrupts on CPU1 after hotplug 8f07d76481d5 ASoC: samsung: Prevent clk_get_rate() calls in atomic context 459058f0e329 KVM: arm64: Forbid kprobing of the VHE world-switch code 04131dfcb910 KVM: arm/arm64: vgic: Always initialize the group of private IRQs c831293622b2 arm/arm64: KVM: Don't panic on failure to properly reset system registers b78379c33723 arm/arm64: KVM: Allow a VCPU to fully reset itself dfe9b4d992ca KVM: arm/arm64: Reset the VCPU without preemption and vcpu state loaded 20604435e2f4 ASoC: rsnd: fixup rsnd_ssi_master_clk_start() user count check e07aaaa7013e ASoC: dapm: fix out-of-bounds accesses to DAPM lookup tables f3f7a8b6faf8 ARM: OMAP2+: Variable "reg" in function omap4_dsi_mux_pads() could be uninitialized ad4507bd2bf1 ARM: dts: Configure clock parent for pwm vibra bac70a89419a Input: pwm-vibra - stop regulator after disabling pwm, not before 0ed72d3f6f1d Input: pwm-vibra - prevent unbalanced regulator 98a137cd0484 s390/dasd: fix using offset into zero size array error cdaf89ab8f77 arm64: dts: rockchip: fix graph_port warning on rk3399 bob kevin and excavator 5f4a64b040c9 KVM: arm/arm64: vgic: Make vgic_dist->lpi_list_lock a raw_spinlock ac696b0176b4 clocksource: timer-ti-dm: Fix pwm dmtimer usage of fck reparenting b2c642a1a618 ASoC: rt5682: Correct the setting while select ASRC clk for AD/DA filter 35ad2e6d7e46 gpu: ipu-v3: Fix CSI offsets for imx53 04c5c4c47c31 drm/imx: imx-ldb: add missing of_node_puts 1640b5288615 gpu: ipu-v3: Fix i.MX51 CSI control registers offset a308622febe1 drm/imx: ignore plane updates on disabled crtcs 2e0e1f9a1e41 crypto: rockchip - update new iv to device in multiple operations 5aabf06712c2 crypto: rockchip - fix scatterlist nents error 3c5d7703bbd0 crypto: ahash - fix another early termination in hash walk 1a10e6b5bb34 crypto: cfb - remove bogus memcpy() with src == dest 0b1871d041d3 crypto: cfb - add missing 'chunksize' property 6ed42ccca59d crypto: ccree - don't copy zero size ciphertext 0bdd345a3848 crypto: ccree - unmap buffer before copying IV 009eeb9878b4 crypto: ccree - fix free of unallocated mlli buffer 6f4c11b09770 crypto: caam - fix DMA mapping of stack memory 74fd74e1fc8d crypto: caam - fixed handling of sg list ce36d9fafb43 crypto: ccree - fix missing break in switch statement 32eeecf7ac87 crypto: caam - fix hash context DMA unmap size dd6ce0316e70 stm class: Fix an endless loop in channel allocation a253d1f3e490 mei: bus: move hw module get/put to probe/release 02c0c70fb36e mei: hbm: clean the feature flags on link reset dbcb0a590ecb iio: adc: exynos-adc: Fix NULL pointer exception on unbind 3f44122e065c ASoC: codecs: pcm186x: Fix energysense SLEEP bit 7d9e07582a7f ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() 098e0f89a341 ASoC: fsl_esai: fix register setting issue in RIGHT_J mode 85bdc9daff40 9p/net: fix memory leak in p9_client_create e08ba890dc29 9p: use inode->i_lock to protect i_size_write() under 32-bit 573d423a9bd7 media: videobuf2-v4l2: drop WARN_ON in vb2_warn_zero_bytesused() Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-16linux-yocto/5.0: update to v5.0.7Bruce Ashfield
Integrating the korg -stable releases which comprise the following commits: 8b298d3a0bd5 Linux 5.0.7 e73f145543fa kbuild: skip sub-make for in-tree build with GNU Make 4.x d972d1c0d76d kbuild: add workaround for Debian make-kpkg 38d2286e52ea bcache: fix potential div-zero error of writeback_rate_p_term_inverse ae050638bc97 ACPI / video: Extend chassis-type detection with a "Lunch Box" check 3e033b1b435a gpio: of: Restrict enable-gpio quirk to regulator-gpio ae42fc868cd5 appletalk: Fix compile regression a84b7c68966a net: stmmac: Avoid one more sometimes uninitialized Clang warning 36b39631cc85 drm/dp/mst: Configure no_stop_bit correctly for remote i2c xfers 8826838f43fe drm: Reorder set_property_atomic to avoid returning with an active ww_ctx 0a2e1a5b583b ASoC: simple-card-utils: check "reg" property on asoc_simple_card_get_dai_id() 45040e92500c Input: soc_button_array - fix mapping of the 5th GPIO in a PNP0C40 device 1ad62489b25a staging: iio: adt7316: fix dac_bits assignment 2bece1d313aa dmaengine: tegra: avoid overflow of byte tracking e84e0a8c3f22 clk: rockchip: fix frac settings of GPLL clock for rk3328 25fb6c323b55 ARM: shmobile: Fix R-Car Gen2 regulator quirk 9b0f430450cf clk: meson: clean-up clock registration a644d2d28baf drm/fb-helper: fix leaks in error path of drm_fb_helper_fbdev_setup c8a8dd1d85ca x86/build: Mark per-CPU symbols as absolute explicitly for LLD 38af5462fa51 wlcore: Fix memory leak in case wl12xx_fetch_firmware failure ab79dc3ef024 brcmfmac: Use firmware_request_nowarn for the clm_blob f836093a2eeb selinux: do not override context on context mounts 993f96415a72 x86/build: Specify elf_i386 linker emulation explicitly for i386 objects 16d4d75d8b6e drm/nouveau: Stop using drm_crtc_force_disable bfb59eabe2c9 drm: Auto-set allow_fb_modifiers when given modifiers at plane init 778c82db727a pinctrl: meson: meson8b: add the eth_rxd2 and eth_rxd3 pins 1048bfd8bf67 regulator: act8865: Fix act8600_sudcdc_voltage_ranges setting e78d5e16f1d6 audit: hand taken context to audit_kill_trees for syscall logging a43ea8ca1865 PCI: pciehp: Assign ctrl->slot_ctrl before writing it to hardware e5d1f1c0148d media: s5p-jpeg: Check for fmt_ver_flag when doing fmt enumeration 68ec6a13ef0d media: rcar-vin: Allow independent VIN link enablement ebd0f3066c35 netfilter: physdev: relax br_netfilter dependency d7e6e93b95f2 dmaengine: qcom_hidma: initialize tx flags in hidma_prep_dma_* 1bac8b82d95c dmaengine: qcom_hidma: assign channel cookie correctly 56d276b53614 dmaengine: imx-dma: fix warning comparison of distinct pointer types 964065d234c7 cpu/hotplug: Mute hotplug lockdep during init 8376acca6f18 pinctrl: sh-pfc: r8a77995: Fix MOD_SEL bit numbering e848354f28b7 pinctrl: sh-pfc: r8a77990: Fix MOD_SEL bit numbering 9d7ff2ae8fd6 pinctrl: meson: fix G12A ao pull registers base address e17a340f9598 hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable 283a29de66c3 f2fs: fix to initialize variable to avoid UBSAN/smatch warning 3d1a731bcec7 f2fs: UBSAN: set boolean value iostat_enable correctly d9f59ff251b4 HID: intel-ish: ipc: handle PIMR before ish_wakeup also clear PISR busy_clear bit 931480457bb3 selftests/bpf: suppress readelf stderr when probing for BTF support e01bc8baa867 soc/tegra: fuse: Fix illegal free of IO base address bf381e06af42 hwrng: virtio - Avoid repeated init of completion 64ef5941a6f8 media: mt9m111: set initial frame size other than 0x0 9acd16abab23 perf script python: Add trace_context extension module to sys.modules 8febc5d31032 perf script python: Use PyBytes for attr in trace-event-python 8f4264f58eb8 perf trace: Fixup etcsnoop example 631e6859c9ac platform/x86: intel-hid: Missing power button release on some Dell models 3ea0a48aa080 usb: dwc3: gadget: Fix OTG events when gadget driver isn't loaded bce56838a25d regulator: mcp16502: Include linux/gpio/consumer.h to fix build error f8d78138dd55 ALSA: dice: add support for Solid State Logic Duende Classic/Mini 504dfdea9c39 drm/amd/display: Enable vblank interrupt during CRC capture b32cff3dd086 powerpc/pseries: Perform full re-add of CPU for topology update post-migration 9ee0088f920b tty: increase the default flip buffer limit to 2*640K d9c61474aa77 backlight: pwm_bl: Use gpiod_get_value_cansleep() to get initial state b8498a26ffdb cgroup/pids: turn cgroup_subsys->free() into cgroup_subsys->release() to fix the accounting 07232db69580 powerpc/64s: Clear on-stack exception marker upon exception return cf651d7007c1 selftests/bpf: skip verifier tests for unsupported program types 08619450dbfe bpf: fix missing prototype warnings 8b3b22aa7c55 block, bfq: fix queue removal from weights tree c581587af717 block, bfq: fix in-service-queue check for queue merging 721360c972a3 ARM: avoid Cortex-A9 livelock on tight dmb loops 34164dfc56a4 ARM: 8830/1: NOMMU: Toggle only bits in EXC_RETURN we are really care of f7a2659378e7 mt7601u: bump supported EEPROM version a1fc32156354 drm/msm/dpu: Convert to a chained irq chip e0442dc492e5 soc: qcom: gsbi: Fix error handling in gsbi_probe() 65ae5c0808c7 efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted 6416e05b8190 ARM: dts: lpc32xx: Remove leading 0x and 0s from bindings notation 897a3b9ef31d drm/vkms: Bugfix extra vblank frame 1c76c3cf3060 drm/vkms: Bugfix racing hrtimer vblank handle 5ca05ecd2954 sched/core: Use READ_ONCE()/WRITE_ONCE() in move_queued_task()/task_rq_lock() 4e634952fe74 efi/memattr: Don't bail on zero VA if it equals the region's PA dd288d329d17 sched/debug: Initialize sd_sysctl_cpus if !CONFIG_CPUMASK_OFFSTACK 0da521452109 ASoC: fsl-asoc-card: fix object reference leaks in fsl_asoc_card_probe 8a838b44f70f iwlwifi: mvm: fix RFH config command with >=10 CPUs 9bd4debdd544 staging: spi: mt7621: Add return code check on device_reset() 3aa0518aacaa i2c: of: Try to find an I2C adapter matching the parent c1ac30ee10cf platform/x86: intel_pmc_core: Fix PCH IP sts reading b503ea08fe0d e1000e: Exclude device from suspend direct complete optimization 7f0a3a436e88 e1000e: fix cyclic resets at link up with active tx 4e4fba6d30f8 perf/aux: Make perf_event accessible to setup_aux() 81ee4eab3117 drm/amd/display: Disconnect mpcc when changing tg c730d6c156c6 powerpc/ptrace: Mitigate potential Spectre v1 8e74000fd656 x86/kexec: Fill in acpi_rsdp_addr from the first kernel 90c93fbede11 bpf: test_maps: fix possible out of bound access warning c60bf6e7594c drm/amd/display: Don't re-program planes for DPMS changes ada81ebc5f35 drm: rcar-du: add missing of_node_put 7208136a41f9 cdrom: Fix race condition in cdrom_sysctl_register e00ff3abfaaf fbdev: fbmem: fix memory access if logo is bigger than the screen 8e48664da19f net: phy: consider latched link-down status in polling mode c230484a3767 iw_cxgb4: fix srqidx leak during connection abort 3e45ebf5a16c net: marvell: mvpp2: fix stuck in-band SGMII negotiation c0ed04868506 genirq: Avoid summation loops for /proc/stat c984b1e68b0c bcache: improve sysfs_strtoul_clamp() 5db086d7c05f bcache: fix potential div-zero error of writeback_rate_i_term_inverse d4db0c5ee0b4 bcache: fix input overflow to sequential_cutoff f48bb10d7615 bcache: fix input overflow to cache set sysfs file io_error_halflife 83a6f919bbb7 sched/topology: Fix percpu data types in struct sd_data & struct s_data 9738742e4e38 usb: f_fs: Avoid crash due to out-of-scope stack ptr access db5177729062 ath10k: fix shadow register implementation for WCN3990 31f3d84c6d9f ALSA: PCM: check if ops are defined before suspending PCM 6c896df369d1 ARM: dts: meson8b: fix the Ethernet data line signals in eth_rgmii_pins c716b08e06ca ARM: 8833/1: Ensure that NEON code always compiles with Clang f74b0a4bf14c netfilter: conntrack: fix cloned unconfirmed skb->_nfct race in __nf_conntrack_confirm c4ea4a79f8b2 kprobes: Prohibit probing on RCU debug routine 170d42947604 kprobes: Prohibit probing on bsearch() 34968a446c4e selftests: skip seccomp get_metadata test if not real root 7981a5b4df77 selftests: ir: fix warning: "%s" directive output may be truncated ’ directive output may be truncated 7b27cb19942e ACPI / video: Refactor and fix dmi_is_desktop() 4f9f04ca4f83 iwlwifi: pcie: fix emergency path 2392dcb54ad2 perf coresight: Do not test for libopencsd by default 528033f554c8 perf report: Add s390 diagnosic sampling descriptor size 59c09689808e perf trace: Check if the 'fd' is negative when mapping it to pathname 8b4fdbce8ca4 perf beauty waitid options: Fix up prefix showing logic 336eb093ba16 tools build: Add test-reallocarray.c to test-all.c to fix the build 17e987679232 tools build: Add -lrt to FEATURE_CHECK_LDFLAGS-libaio 1cbdd2401798 leds: lp55xx: fix null deref on firmware load failure 34cbc429c56d jbd2: fix race when writing superblock 9489ac42680c regulator: core: Take lock before applying system load 7440c206c38f drm/sched: Fix entities with 0 rqs. aa6c9fcac011 efi: Fix build error due to enum collision between efi.h and ima.h 55d7152d37dc cgroup, rstat: Don't flush subtree root unless necessary 2fe8be270932 HID: intel-ish-hid: avoid binding wrong ishtp_cl_device e6eef5240054 vfs: fix preadv64v2 and pwritev64v2 compat syscalls with offset == -1 a8254b01ca21 xen/gntdev: Do not destroy context while dma-bufs are in use d6318df6b0cc gpio: of: Apply regulator-gpio quirk only to enable-gpios 7d361b8dbafe mt76: usb: do not run mt76u_queues_deinit twice af1ef012b95f media: rockchip/vpu: Correct return type for mem2mem buffer helpers d544b0856f3f media: mtk-jpeg: Correct return type for mem2mem buffer helpers 569ce17b4cd9 media: mx2_emmaprp: Correct return type for mem2mem buffer helpers 76499752191f media: s5p-g2d: Correct return type for mem2mem buffer helpers 8852dab94f04 media: rockchip/rga: Correct return type for mem2mem buffer helpers 9f31e32fd5a5 media: s5p-jpeg: Correct return type for mem2mem buffer helpers 21ad47c39835 media: sh_veu: Correct return type for mem2mem buffer helpers a6d9661c5d16 media: ov7740: fix runtime pm initialization ed83655ce8c2 SoC: imx-sgtl5000: add missing put_device() a75ad663203b perf report: Don't shadow inlined symbol with different addr range c3a8705881cc mwifiex: don't advertise IBSS features without FW support aa8c73c8682f perf test: Fix failure of 'evsel-tp-sched' test on s390 16a94480fb03 drm/amd/display: Clear stream->mode_changed after commit 456736ab1b78 scsi: fcoe: make use of fip_mode enum complete 952613125def scsi: megaraid_sas: return error when create DMA pool failed a3c1a668a014 s390/ism: ignore some errors during deregistration 5d1db4825e3c efi: cper: Fix possible out-of-bounds access 99bb2d19853a cpufreq: acpi-cpufreq: Report if CPU doesn't support boost technologies 4e7b5f9dc7a7 ASoC: qcom: Fix of-node refcount unbalance in qcom_snd_parse_of() a332ad5f006f powerpc/44x: Force PCI on for CURRITUCK 4974ca47f15c perf annotate: Fix getting source line failure 1a4faefc4680 clk: fractional-divider: check parent rate only if flag is set 869a72e08b86 IB/mlx4: Increase the timeout for CM cache 55bbe8fa7bfd i2c: designware: Do not allow i2c_dw_xfer() calls while suspended 600c30ca6124 loop: set GENHD_FL_NO_PART_SCAN after blkdev_reread_part() 540f120998df platform/mellanox: mlxreg-hotplug: Fix KASAN warning a21f5c44cb8e platform/x86: ideapad-laptop: Fix no_hw_rfkill_list for Lenovo RESCUER R720-15IKBN e2427570b374 i2c: Allow recovery of the initial IRQ by an I2C client device. 6f93033d93d1 mlxsw: spectrum: Avoid -Wformat-truncation warnings a782956c2a30 e1000e: Fix -Wformat-truncation warnings cae3c93ad96b veth: Fix -Wformat-truncation dd8ab7cdbcda net: hns3: fix setting of the hns reset_type for rdma hw errors 660b8b783aed net: dsa: mv88e6xxx: Add lockdep classes to fix false positive splat f9cf94eca1be mmc: omap: fix the maximum timeout setting 895927dc1c6a btrfs: don't enospc all tickets on flush failure 8f6019b404c8 btrfs: qgroup: Make qgroup async transaction commit more aggressive 9a27e9ef2338 perf script: Handle missing fields with -F +.. 565e4ecefeae ice: fix ice_remove_rule_internal vsi_list handling b3425e19f614 net: dsa: mv88e6xxx: Default CMODE to 1000BaseX only on 6390X 13fe58e28c21 powerpc/hugetlb: Handle mmap_min_addr correctly in get_unmapped_area callback 957b2d2317e9 iommu/io-pgtable-arm-v7s: Only kmemleak_ignore L2 tables af6366bb82e6 ARM: 8845/1: use unified assembler in c files dbda5b6625bd ARM: 8840/1: use a raw_spinlock_t in unwind 8cada074059f serial: 8250_pxa: honor the port number from devicetree 1e084b9e2037 coresight: etm4x: Add support to enable ETMv4.2 8e28ed0b7b8d powerpc/xmon: Fix opcode being uninitialized in print_insn_powerpc 5e91baea2c1f ath10k: don't report unset rssi values to mac80211 33cb50fa0930 drm/amd/display: Fix reference counting for struct dc_sink. 29b55af8a429 btrfs: save drop_progress if we drop refs at all e3e9d97396cd kbuild: make -r/-R effective in top Makefile for old Make versions 366a5ee958d0 kbuild: invoke syncconfig if include/config/auto.conf.cmd is missing 22efb9f2aeff scsi: core: replace GFP_ATOMIC with GFP_KERNEL in scsi_scan.c b17b4bd79afc powerpc/powernv/ioda: Fix locked_vm counting for memory used by IOMMU tables 7fe45a018fb3 usb: chipidea: Grab the (legacy) USB PHY by phandle first a133f9f7f96a tools/bpf: selftests: add map lookup to test_map_in_map bpf prog 547272b44afa crypto: cavium/zip - fix collision with generic cra_driver_name 1ee9d34d6861 crypto: crypto4xx - add missing of_node_put after of_device_is_available 2b52034346cd lockdep/lib/tests: Fix run_tests.sh a73713e53323 ath10k: Fix the wrong updation of BW in tx_stats debugfs entry e486c95f5d50 mt76: fix a leaked reference by adding a missing of_node_put 96e2fec0fd8c wil6210: check null pointer in _wil_cfg80211_merge_extra_ies d8f775092499 PCI/PME: Fix hotplug/sysfs remove deadlock in pcie_pme_remove() 88f0ced0d75f mm/resource: Return real error codes from walk failures 6e33632946e4 tools lib traceevent: Fix buffer overflow in arg_eval a1d9d2145c50 fs: fix guard_bio_eod to check for real EOD errors dee200aba7dc ext4: fix bigalloc cluster freeing when hole punching under load 1d62e75a00bb jbd2: fix invalid descriptor block checksum 87f8ad583c79 iommu/vt-d: Disable ATS support on untrusted devices b39898beee9d netfilter: conntrack: tcp: only close if RST matches exact sequence 8a0f1351bac1 PCI: mediatek: Fix memory mapped IO range size computation fdb08cf7dbee netfilter: nf_tables: check the result of dereferencing base_chain->stats dc8d8f83ea52 perf beauty msg_flags: Add missing %s lost when adding prefix suppression logic d6dd80425f5d cifs: Fix NULL pointer dereference of devname bcb99efab248 cifs: Accept validate negotiate if server return NT_STATUS_NOT_SUPPORTED 88596e78dae4 f2fs: fix to check inline_xattr_size boundary correctly e3eea74f61a8 dm thin: add sanity checks to thin-pool and external snapshot creation f2e34b4ff47e cifs: use correct format characters 64f336255228 kasan: fix kasan_check_read/write definitions 326ce03840eb page_poison: play nicely with KASAN 0326696a6769 fs/file.c: initialize init_files.resize_wait 902507dada43 f2fs: fix to data block override node segment by mistake 3667215198eb f2fs: do not use mutex lock in atomic context e92a6db09700 ocfs2: fix a panic problem caused by o2cb_ctl 8783c35917b6 mm/slab.c: kmemleak no scan alien caches f67cd526ce1d mm/vmalloc.c: fix kernel BUG at mm/vmalloc.c:512! 03bccbc025ed mm, mempolicy: fix uninit memory access c59c60824a9a memcg: killed threads should not invoke memcg OOM killer db5d8675b14a mm,oom: don't kill global init via memory.oom.group 66a4d4d03b7e docs/core-api/mm: fix user memory accessors formatting 34fa723765cf mm, swap: bounds check swap_info array accesses to avoid NULL derefs 57f5b77e9f46 mm/page_ext.c: fix an imbalance with kmemleak 93b7ebef7ee3 mm/cma.c: cma_declare_contiguous: correct err handling 90a70109697c mm/sparse: fix a bad comparison 60c86431ca4c perf c2c: Fix c2c report for empty numa node 11304c4b4ee4 x86/hyperv: Fix kernel panic when kexec on HyperV 34555ccacf94 iio: adc: fix warning in Qualcomm PM8xxx HK/XOADC driver 86aad65625cf scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO 776de12b9f8f scsi: hisi_sas: Set PHY linkrate when disconnected c5021aa17b05 libbpf: force fixdep compilation at the start of the build 267f65c94fb7 enic: fix build warning without CONFIG_CPUMASK_OFFSTACK aaad69802e17 net: stmmac: Avoid sometimes uninitialized Clang warnings 4e4d49798d86 sysctl: handle overflow for file-max fd9317a3e2a0 include/linux/relay.h: fix percpu annotation in struct rchan c7c82cea6985 gpio: gpio-omap: fix level interrupt idling 90833d08ffa5 clk: ti: clkctrl: Fix clkdm_name regression for TI_CLK_CLKCTRL_COMPAT b48475a66ef5 xsk: fix to reject invalid flags in xsk_bind 3cac5ce088c2 net/mlx5: Avoid panic when setting vport mac, getting vport config a1126c2008a3 net/mlx5: Avoid panic when setting vport rate d1e83bda0c30 net/mlx5e: Fix access to non-existing receive queue 043a440018e3 tracing: kdb: Fix ftdump to not sleep 4c6df358aa87 apparmor: fix double free when unpack of secmark rules fails a98984da006b f2fs: fix to avoid deadlock in f2fs_read_inline_dir() 8d661a663048 f2fs: fix to adapt small inline xattr space in __find_inline_xattr() e56d6fa7acf3 h8300: use cc-cross-prefix instead of hardcoding h8300-unknown-linux- 1eaf6713c5b3 nvme-loop: init nvmet_ctrl fatal_err_work when allocate 32b73dc525a1 nvme-fc: fix numa_node when dev is null fae38f280334 CIFS: fix POSIX lock leak and invalid ptr deref dc2b4d4ab0ae ext4: cleanup bh release code in ext4_ind_remove_space() 820c1fa51501 Linux 5.0.6 debaa517c16c mt76x02u: use usb_bulk_msg to upload firmware 046098f056e2 bpf: do not restore dst_reg when cur_state is freed b54f0c4976e7 KVM: x86: update %rip after emulating IO cc3f680dd076 KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts d50d46e303d4 KVM: Reject device ioctls from processes other than the VM's creator 8c0823aa123b x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y c3bcf0314665 cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n 53464ca9130b watchdog: Respect watchdog cpumask on CPU hotplug 1a0ecfd4e633 powerpc/pseries/mce: Fix misleading print for TLB mutlihit 4a2b2d5dc8fa powerpc/64: Fix memcmp reading past the end of src/dest e92932ef2862 powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes 8f84f7daabb2 objtool: Query pkg-config for libelf location a0de19f1c307 perf intel-pt: Fix TSC slip c9418d0addb0 perf pmu: Fix parser error for uncore event alias 8ad454a831e0 mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate 8a86a416c948 mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() 77a5258a57e7 mm/memory_hotplug.c: fix notification in offline error path 2b57282beb60 mm/debug.c: fix __dump_page when mapping->host is not set 8b2f31de5d15 mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified 467c01f2deea iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging ed3886c7d9f2 mm: add support for kmem caches in DMA32 zone eef9dbbad03f mm/hotplug: fix offline undo_isolate_page_range() d26254c4e7ca usb: typec: Fix unchecked return value a3bed8b549ec usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps 402f57808b9a usb: cdc-acm: fix race during wakeup blocking TX traffic c7a5ef0d64f4 xhci: Don't let USB3 ports stuck in polling state prevent suspend 448c39c360ef usb: xhci: dbc: Don't free all memory with spinlock held c08a998dec55 xhci: Fix port resume done detection for SS ports with LPM enabled 8e70eae1816b usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk 40b8282f9009 mm/memory.c: fix modifying of page protection by insert_pfn() 08213ad7465f usb: common: Consider only available nodes for dr_mode 80ff12631ba5 USB: gadget: f_hid: fix deadlock in f_hidg_write() 8f00b32d3991 usb: mtu3: fix EXTCON dependency dbc206874d67 phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs 494d26aa3915 gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input aa2250dec6ee gpio: exar: add a check for the return value of ida_simple_get fails 673bc99a6708 drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro 25c939a9a594 drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check 9241bd9b6401 drm/i915: Mark AML 0x87CA as ULX 0baddc2099dd drm/vkms: fix use-after-free when drm_gem_handle_create() fails 18e8f0f379a5 drm/vgem: fix use-after-free when drm_gem_handle_create() fails 5f0bf5cd357d cpufreq: scpi: Fix use after free 7466a2abe757 cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency 0dcb45879a5f blk-mq: fix sbitmap ws_active for shared tags 50076360f4a0 drivers/block/zram/zram_drv.c: fix idle/writeback string compare 79d8bdf334d6 fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links e44461a50380 Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc c6ed8bf0ad03 ACPI / CPPC: Fix guaranteed performance handling 72c1487ea0a4 USB: serial: option: add Olicard 600 623533deabb1 USB: serial: option: add support for Quectel EM12 b7a0e2163e0d USB: serial: option: set driver_info for SIM5218 and compatibles 4503b17ed496 USB: serial: mos7720: fix mos_parport refcount imbalance on error path 639f52d29012 USB: serial: ftdi_sio: add additional NovaTech products 7790bb1039fb USB: serial: cp210x: add new device id 4fc867dd92cb serial: sh-sci: Fix setting SCSCR_TIE while transferring data e39ecf48678e serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference 763eafe0dbf5 serial: max310x: Fix to avoid potential NULL pointer dereference 198b7b7fb6b6 staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() 22a76cf6a5eb staging: erofs: fix error handling when failed to read compresssed data a0fdd9036176 staging: erofs: fix to handle error path of erofs_vmap() be3d49395af0 staging: vt6655: Fix interrupt race condition on device start up. 37fc532d4d58 staging: vt6655: Remove vif check from vnt_interrupt 7d9cd1961a50 staging: speakup_soft: Fix alternate speech with other synths de6283bc5caf staging: olpc_dcon_xo_1: add missing 'const' qualifier da418a0b0963 staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest 5bff7cb2bc89 tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup 36e47853d0e9 tty: atmel_serial: fix a potential NULL pointer dereference ade797815046 tty: mxs-auart: fix a potential NULL pointer dereference 35070431105f tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped 70691073d296 tty/serial: atmel: Add is_half_duplex helper d5845d77e9e1 drm/rockchip: vop: reset scale mode when win is disabled 631d09fd0856 scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices e188df764406 scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host 143982417ad3 scsi: sd: Quiesce warning if device does not report optimal I/O size 98163d192bc5 scsi: sd: Fix a race between closing an sd device and sd I/O 310891a84396 ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock f2391e6767a6 fs/open.c: allow opening only regular files during execve() 95d78fc93943 kbuild: modversions: Fix relative CRC byte order interpretation a6c74dcb5909 ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops f2b1bfbc173a ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 c03c547b07d9 ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 dd1774f3d0cd ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 c672af11fbb0 ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic 12af8b3d94eb ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 9635b3bf1a5f ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 b6de98dcc02e ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB 8da540f343aa ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO 545d1fe70648 ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook c87a0bb99b83 ALSA: hda/realtek - Fixed Headset Mic JD not stable 56e3785b579b ALSA: pcm: Don't suspend stream in unrecoverable PCM state 94176d2a1d2b ALSA: pcm: Fix possible OOB access in PCM oss plugins a30c0ff829c6 ALSA: seq: oss: Fix Spectre v1 vulnerability abe5b0a76de9 ALSA: rawmidi: Fix potential Spectre v1 vulnerability ce1ae80cacf7 net: dsa: qca8k: remove leftover phy accessors 0110524398bb NFSv4.1 don't free interrupted slot on open e37c15d77d68 NFS: fix mount/umount race in nlmclnt. 7a4cdaf977c2 NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock,unlock}data() bd01ab90e8a5 vfio: ccw: only free cp on final interrupt 73d6cb884532 powerpc: bpf: Fix generation of load/store DW instructions a2216e2d0751 ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time 8bf47766a9f9 tracing: initialize variable in create_dyn_event() 7bcb002431ba locks: wake any locks blocked on request before deadlock check 3ba84d2d7581 Btrfs: fix assertion failure on fsync with NO_HOLES enabled 84104398e6f3 btrfs: Avoid possible qgroup_rsv_size overflow in btrfs_calculate_inode_block_rsv_size e3a605636a80 btrfs: Fix bound checking in qgroup_trace_new_subtree_blocks 4a0584a21542 btrfs: raid56: properly unmap parity page in finish_parity_scrub() da2dea634c22 btrfs: don't report readahead errors and don't update statistics 70c88bf99441 btrfs: remove WARN_ON in log_dir_items ab0600d45dd9 Btrfs: fix incorrect file size after shrinking truncate and fsync 0253563b8be5 powerpc/fsl: Fix the flush of branch predictor. bb06073a9cad tun: add a missing rcu_read_unlock() in error path d01bf3762e29 ila: Fix rhashtable walker list corruption 4951fc65d915 r8169: fix cable re-plugging issue fc8f36de7711 net: phy: don't clear BMCR in genphy_soft_reset aa3f1b029e4b net: mii: Fix PAUSE cap advertisement from linkmode_adv_to_lcl_adv_t() helper d9c13ecbf7c5 net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode 98bfc778c5d9 thunderx: eliminate extra calls to put_page() for pages held for recycling 10792c33d060 thunderx: enable page recycling for non-XDP case 0c421524c1f1 vxlan: Don't call gro_cells_destroy() before device is unregistered 1a44391e1d03 vrf: prevent adding upper devices e269f5f55c06 tun: properly test for IFF_UP 9868ffd44b25 tipc: fix cancellation of topology subscriptions e13fbdf6e872 tipc: change to check tipc_own_id to return in tipc_net_stop 30e2a9a38d0c tipc: allow service ranges to be connect()'ed on RDM/DGRAM 632f3ed848bc tcp: do not use ipv6 header for ipv4 flow 118ad2c7de1d sctp: use memdup_user instead of vmemdup_user d2af0ce54b1c sctp: get sctphdr by offset in sctp_compute_cksum 5a336f69cfa0 rhashtable: Still do rehash when we get EEXIST 278c7d7e4ecb packets: Always register packet sk in the same order 970d4fb2a231 net: usb: aqc111: Extend HWID table by QNAP device 566e793d051f net-sysfs: call dev_hold if kobject_init_and_add success 1b925f484028 net: stmmac: fix memory corruption with large MTUs 8cf288b55da9 net: rose: fix a possible stack overflow baa14468e57d net: phy: meson-gxl: fix interrupt support 3ca86ad4e57a net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec 475af63497f8 net: datagram: fix unbounded loop in __skb_try_recv_datagram() 017c90da5d8f net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 3e5c1acf0637 mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S 780e62a6a021 mac8390: Fix mmio access size probe 282c70c23454 ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL 8122233e877a gtp: change NET_UDP_TUNNEL dependency to select bd60a788b10b genetlink: Fix a memory leak on error path 3b58f24bdfec dccp: do not use ipv6 header for ipv4 flow 400dded59397 netfilter: nf_tables: fix set double-free in abort path a556547bae00 Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer 8dac9b8d27b5 Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-16linux-yocto-rt: update to 5.0.5-rt3Bruce Ashfield
Integrating the -r3 release, which has the following rt specific fixes: printk: An all-in-one commit to fix build failures powerpc/stackprotector: work around stack-guard init from atomic powerpc/pseries/iommu: Use a locallock instead local_irq_save() powerpc: reshuffle TIF bits tty/sysrq: Convert show_lock to raw_spinlock_t Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-16linux-yocto/5.0: update to v5.0.5Bruce Ashfield
Integrating the latest korg -stable releases which comprise the following commits: 1f6f316a537d Linux 5.0.5 a57af6d07512 ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec 6c77789fb46e ALSA: hda - Record the current power state before suspend/resume calls 8bc3816d6566 locking/lockdep: Add debug_locks check in __lock_downgrade() 0830cf62f529 x86/unwind: Add hardcoded ORC entry for NULL 0312f3032e35 x86/unwind: Handle NULL pointer calls better in frame unwinder 1e641e63fe0c loop: access lo_backing_file only when the loop device is Lo_bound da75d3775401 netfilter: ebtables: remove BUGPRINT messages a179695eddd9 aio: simplify - and fix - fget/fput for io_submit() 1c0fc5e9cb40 f2fs: fix to avoid deadlock of atomic file operations 648562c0a958 RDMA/cma: Rollback source IP address if failing to acquire device 244594c5f5c8 drm/vkms: Fix flush_work() without INIT_WORK(). 35228ce61a81 Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in hci_uart_set_proto() c8d311117c3e Bluetooth: hci_ldisc: Initialize hci_dev before open() 4d18023ade55 Bluetooth: Fix decrementing reference count twice in releasing socket 572ae5c7646b Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() c35a32eb2339 media: v4l2-ctrls.c/uvc: zero v4l2_event c29313c07f2d ext4: brelse all indirect buffer in ext4_ind_remove_space() f1902fd02d56 ext4: fix data corruption caused by unaligned direct AIO 635218fee409 ext4: fix NULL pointer dereference while journal is aborted 5b099547f29d ALSA: ac97: Fix of-node refcount unbalance 1fa1bfef5f4c ALSA: hda - Don't trigger jackpoll_work in azx_resume 2b1cf1a17a41 SMB3: Fix SMB3.1.1 guest mounts to Samba 809ecabb6d41 clocksource/drivers/riscv: Fix clocksource mask 70c1b15faf8b irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp dfa011546d27 objtool: Move objtool_file struct off the stack 198092b82db3 perf probe: Fix getting the kernel map 3bff3aabd586 cifs: allow guest mounts to work for smb3.11 8dfb1e702caa futex: Ensure that futex address is aligned in handle_futex_death() 72b8c5492f48 scsi: ibmvscsi: Fix empty event pool access during host removal bc1bf16d7def scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton e109bf21f4c6 scsi: qla2xxx: Fix FC-AL connection target discovery abe481cfe983 scsi: core: Avoid that a kernel warning appears during system resume e846d79bc1ba net/mlx5: Fix DCT creation bad flow 62362ccdd45c powerpc/security: Fix spectre_v2 reporting 7f5ffb4c7a71 powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 9e063d979422 MIPS: Fix kernel crash for R6 in jump label branch function de21552cc848 MIPS: Ensure ELF appended dtb is relocated 63703e8fd2af mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. e88f693e6e8d udf: Fix crash on IO error during truncate 48cce130d485 libceph: wait for latest osdmap in ceph_monc_blacklist_add() 027584c8ef01 iommu/iova: Fix tracking of recently failed iova address 98e2c51c1ac3 iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE 0c113ec08d71 drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's 5618b16763ce drm/vmwgfx: Don't double-free the mode stored in par->set_mode 109f5f9dff14 drm/amdgpu: fix invalid use of change_bit cdb57f82a4bc mmc: renesas_sdhi: limit block count to 16 bit for old revisions 1494408bf863 mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" 7e682a01b111 mmc: alcor: fix DMA reads cc8cd197411b mmc: pxamci: fix enum type confusion ae833c3eefaf ALSA: firewire-motu: use 'version' field of unit directory to identify model 3c09233b5dee ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist 239cc2c5a3c8 Linux 5.0.4 87e728e85559 SUNRPC: Respect RPC call timeouts when retrying transmission f6716abfd12b SUNRPC: Fix up RPC back channel transmission aed54941cf9e SUNRPC: Prevent thundering herd when the socket is not connected 1b2f5d715bbc s390/setup: fix boot crash for machine without EDAT-1 09bfb45ed842 net: dsa: lantiq_gswip: fix OF child-node lookups 8d244127d25f net: dsa: lantiq_gswip: fix use-after-free on failed probe 4e126cbd4f06 KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks 5de7f6cd6aeb KVM: nVMX: Ignore limit checks on VMX instructions using flat segments f88f29f81d59 KVM: nVMX: Apply addr size mask to effective address for VMX instructions 64d259a70642 KVM: nVMX: Sign extend displacements of VMX instr's mem operands 1e42327adb8d KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux c173d5417a11 KVM: x86/mmu: Detect MMIO generation wrap in any address space 5221117cd414 KVM: VMX: Zero out *all* general purpose registers after VM-Exit cf8d03a4fe59 KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run e1bdcf061b48 KVM: Call kvm_arch_memslots_updated() before updating memslots c61d88f39491 drm/amd/display: don't call dm_pp_ function from an fpu block ea7da9ef23a0 drm/amd/powerplay: correct power reading on fiji 3bc65d729765 drm/radeon/evergreen_cs: fix missing break in switch statement b78ee0965f86 drm/fb-helper: generic: Fix drm_fbdev_client_restore() c7a35a9877b8 media: imx: csi: Stop upstream before disabling IDMA channel 145cab144d75 media: imx: csi: Disable CSI immediately after last EOF e7a06193c52c media: imx-csi: Input connections to CSI should be optional e7ae48ae4722 media: vimc: Add vimc-streamer for stream control 6932b9b4e677 media: uvcvideo: Avoid NULL pointer dereference at the end of streaming 202ed62dea70 media: sun6i: Fix CSI regmap's max_register 1d433d48516e media: lgdt330x: fix lock status reporting f55d0cb10f5b media: imx: prpencvf: Stop upstream before disabling IDMA channel 9d032911a36c rcu: Do RCU GP kthread self-wakeup from softirq and interrupt 5d6f031fa782 tpm: Unify the send callback behaviour 65a2af7599c6 tpm/tpm_crb: Avoid unaligned reads in crb_recv() f484e220df15 x86/ftrace: Fix warning and considate ftrace_jmp_replace() and ftrace_call_replace() 384dada74d37 x86/kvmclock: set offset for kvm unstable clock 9b236e3f79d9 md: Fix failed allocation of md_register_thread 99e5abb7b895 perf intel-pt: Fix divide by zero when TSC is not available 85c9f1fb8a81 perf/x86/intel/uncore: Fix client IMC events return huge result 6228a6e3516f perf intel-pt: Fix overlap calculation for padding 2354deae355b perf auxtrace: Define auxtrace record alignment 0f43fd4bdb74 perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols 99c7a8ec4387 perf intel-pt: Fix CYC timestamp calculation after OVF a0203d4e717e x86/unwind/orc: Fix ORC unwind table alignment 194f1ecd4906 vt: perform safe console erase in the right order c8d3a581742f stable-kernel-rules.rst: add link to networking patch queue 0b60b354b33a bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata dddd539dc325 bcache: treat stale && dirty keys as bad keys 97cf758e172c bcache: never writeback a discard operation a8ce88427a9b PM / OPP: Update performance state when freq == old_freq c9c0e5f01245 PM / wakeup: Rework wakeup source timer cancellation f03f5295caf0 svcrpc: fix UDP on servers with lots of threads 1363f37fbd24 NFSv4.1: Reinitialise sequence results before retransmitting a request 867ae74fb190 nfsd: fix wrong check in write_v4_end_grace() f5bed084b482 nfsd: fix memory corruption caused by readdir 2ececa64d67a nfsd: fix performance-limiting session calculation 88f786a8e78a NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() 4fe2a7fda78a NFS: Fix an I/O request leakage in nfs_do_recoalesce e83b6ac7deed NFS: Fix I/O request leakages b41991d86722 cpuidle: governor: Add new governors to cpuidle_governors again 6eea03f8c368 cpcap-charger: generate events for userspace 9cc42d068f57 mfd: sm501: Fix potential NULL pointer dereference 83df21c731e6 media: cx25840: mark pad sig_types to fix cx231xx init b6246ffae5a0 dm integrity: limit the rate of error messages dca22c59e47e dm: fix to_sector() for 32bit a8964a63780c ipmi_si: fix use-after-free of resource->name d3432e5d0831 ipmi_si: Fix crash when using hard-coded device 98ab3b877400 Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" bf5615991a91 arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 4b6d75b38664 arm64: debug: Ensure debug handlers check triggering exception level 4f771d8acc74 arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals 9afab3b6b9c5 arm64: Fix HCR.TGE status for NMI contexts 8f67dd8570ac ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify 6a4c3ab2d53e powerpc/traps: Fix the message printed when stack overflows 24bf608e7438 powerpc/traps: fix recoverability of machine check handling on book3s/32 71bb4d024416 powerpc/smp: Fix NMI IPI xmon timeout 850a95bf2a46 powerpc/smp: Fix NMI IPI timeout fcf1ca937f59 powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration 4ca936a49360 powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning 55b852a06fe1 powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest 651db1461793 powerpc/64s/hash: Fix assert_slb_presence() use of the slbfee. instruction 702c1ab420ab powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit f7d68a102ad4 powerpc/kvm: Save and restore host AMR/IAMR/UAMOR 3b218d244482 powerpc/83xx: Also save/restore SPRG4-7 during suspend 16ee62368aaa powerpc/powernv: Make opal log only readable by root 8d2cc8c1c4fe powerpc/wii: properly disable use of BATs when requested. d0d33e87d143 powerpc/32: Clear on-stack exception marker upon exception return 232aa30f16b9 security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock 7e30471146d2 selinux: add the missing walk_size + len check in selinux_sctp_bind_connect f9897a30deb7 jbd2: fix compile warning when using JBUFFER_TRACE 8c343062c8fa jbd2: clear dirty flag when revoking a buffer from an older transaction bb47633ab15e serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup() 7271438208b6 serial: 8250_pci: Fix number of ports for ACCES serial cards c7388ba10902 serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart fa4d0361304f serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO 37fe1d56aa2c dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit 39367147f046 usb: typec: tps6598x: handle block writes separately with plain-I2C adapters 07e326fd07d7 usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() f11fa22a7a5f clk: ingenic: Fix doc of ingenic_cgu_div_info 7d4966247a99 clk: ingenic: Fix round_rate misbehaving with non-integer dividers 1a29715073a1 clk: samsung: exynos5: Fix kfree() of const memory on setting driver_override 7da58ad824b1 clk: samsung: exynos5: Fix possible NULL pointer exception on platform_device_alloc() failure d9d7760c1e45 clk: clk-twl6040: Fix imprecise external abort for pdmclk a712a38100b5 clk: uniphier: Fix update register for CPU-gear e1ac00773456 ext2: Fix underflow in ext2_max_size() 96728f35572e cxl: Wrap iterations over afu slices inside 'afu_list_lock' 25636de95557 IB/rdmavt: Fix concurrency panics in QP post_send and modify to error ada60723d7cd IB/rdmavt: Fix loopback send with invalidate ordering c8a23dfeb2d6 IB/hfi1: Close race condition on user context disable and close 2b9ef0bedaac PCI: pci-bridge-emul: Extend pci_bridge_emul_init() with flags d011c7871d16 PCI: pci-bridge-emul: Create per-bridge copy of register behavior ee0bf8d6e7fc PCI: pciehp: Disable Data Link Layer State Changed event on suspend 0d5bc50f524a PCI: dwc: skip MSI init if MSIs have been explicitly disabled 63a9e7ce6624 PCI: qcom: Don't deassert reset GPIO during probe eafa704de27b PCI/DPC: Fix print AER status in DPC event handling bae1cf68370d PCI/ASPM: Use LTR if already enabled by platform 4e9f8e86d6c7 swiotlb: Add is_swiotlb_active() function a4eeaa9cc9da swiotlb: Introduce swiotlb_max_mapping_size() 38c3a86a8226 dma: Introduce dma_max_mapping_size() db8913b46d74 ext4: fix crash during online resizing edc0bf6532ba ext4: add mask of ext4 flags to swap 7c2cfdf99ae9 ext4: update quota information while swapping boot loader inode ef2dfe6f8c82 gpio: pca953x: Fix dereference of irq data in shutdown 13cef9edc45b media: i2c: ov5640: Fix post-reset delay 8b82d499df87 i2c: tegra: update maximum transfer size 986d964baaaa i2c: tegra: fix maximum transfer size 775bd984147e parport_pc: fix find_superio io compare code, should use equal test. d91315e99c55 intel_th: Don't reference unassigned outputs 1a1d6860c539 device property: Fix the length used in PROPERTY_ENTRY_STRING() 9a638bb82ff5 nvmem: core: don't check the return value of notifier chain call d09e7041330b kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv 9a842b43e4b8 mm/memory.c: do_fault: avoid usage of stale vm_area_struct 8df6ab770e20 mm/vmalloc: fix size check for remap_vmalloc_range_partial() 84fe80428739 mm: hwpoison: fix thp split handing in soft_offline_in_use_page() 7a34997043f1 ext4: cleanup pagecache before swap i_data a0f6f657ac44 ext4: fix check of inode in swap_inode_boot_loader f9308e46e02b cpufreq: pxa2xx: remove incorrect __init annotation 272b28097c30 cpufreq: tegra124: add missing of_node_put() 144c3557b1e1 cpufreq: kryo: Release OPP tables on module removal 737f4ead9606 x86/kprobes: Prohibit probing on optprobe template code dbbb26db8938 irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code 830d66c95e02 irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table bd05a30753eb libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer 028cbca07ab5 soc: qcom: rpmh: Avoid accessing freed memory from batch API 1098803b8cb7 Btrfs: fix deadlock between clone/dedupe and rename 3486142a68e3 Btrfs: fix corruption reading shared and compressed extents after hole punching ebbb48419e8a btrfs: init csum_list before possible free 88e610ae4c3a btrfs: ensure that a DUP or RAID1 block group has exactly two stripes 9c58f2ada4fa btrfs: drop the lock on error in btrfs_dev_replace_cancel fb9c36acfab1 btrfs: scrub: fix circular locking dependency warning 9d7b327affb8 Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl 80dcd07c27df Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() 98bb142aaff2 m68k: Add -ffreestanding to CFLAGS 3381b362f74c ovl: Do not lose security.capability xattr over metadata file copy-up 0fa6688a2882 ovl: During copy up, first copy up data and then xattrs ef02f9fe5148 splice: don't merge into linked buffers 61d06e123502 fs/devpts: always delete dcache dentry-s in dput() a15cf4d9a622 scsi: qla2xxx: Use complete switch scan for RSCN events f54e2394acf7 scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not supported 54e834ee7a6e scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware 7d6d14a119c8 scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock 6c922faf889a scsi: sd: Optimal I/O size should be a multiple of physical block size 1ba35e5a3c5c scsi: aacraid: Fix performance issue on logical drives bd1558978695 scsi: virtio_scsi: don't send sc payload with tmfs ffd4a428a54e s390/virtio: handle find on invalid queue gracefully 39fdc16138b7 s390/setup: fix early warning messages 2aa8ab08c82c s390: vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem 4b280a0bfc6d clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer instability 773b445425d6 clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown de90b88a20de clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR 9d67c5e995da mt76: fix corrupted software generated tx CCMP PN 6b65a01d2dcc regulator: s2mpa01: Fix step values for some LDOs 60cb8b444fbf regulator: max77620: Initialize values for DT properties 4527a24a8f51 regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 a34758ac6ad4 spi: spi-gpio: fix SPI_CS_HIGH capability 618491014846 spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch 7406a055c507 spi: pxa2xx: Setup maximum supported DMA transfer length 5d919139baf9 spi: ti-qspi: Fix mmap read when more than one CS in use 4a9932c94626 mmc:fix a bug when max_discard is 0 aaf1e755f8f9 mmc: renesas_sdhi: Fix card initialization failure in high speed mode 351062f08fc1 mmc: sdhci-esdhc-imx: fix HS400 timing issue cb1c7a9d2897 ACPI / device_sysfs: Avoid OF modalias creation for removed device 050b87cb66c6 xen: fix dom0 boot on huge systems c0b8e1d95cbf vmw_balloon: release lock on error in vmballoon_reset() 020c90c694dc tracing/perf: Use strndup_user() instead of buggy open-coded version aca126f4a451 tracing: Do not free iter->trace in fail path of tracing_open_pipe() e5cde571ee5f tracing: Use strncpy instead of memcpy for string keys in hist triggers c892f4ee3db2 smb3: make default i/o size for smb3 mounts larger 3eb2412dd9da CIFS: Fix read after write for files with read caching c73a769b63fb CIFS: Do not skip SMB2 message IDs on send failures a992916a9c89 CIFS: Do not reset lease state to NONE on lease break 75bbb83e80c7 CIFS: Fix leaking locked VFS cache pages in writeback retry afaf9d664b0f crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine 741ae3caa62f crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling d78c34dfc288 crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP 814ec1461901 crypto: x86/aesni-gcm - fix crash on empty plaintext 2e0e52c3d618 crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP c9e34c3c34b9 crypto: testmgr - skip crc32c context test for ahash algorithms c58580801420 crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 0173f7ca0e22 crypto: pcbc - remove bogus memcpy()s with src == dest 9cbfb0a8d1af crypto: morus - fix handling chunked inputs c850ff289c4e crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 7007b2645f6e crypto: arm64/crct10dif - revert to C code for short inputs d78abd635e6c crypto: arm64/aes-neonbs - fix returning final keystream block 844351fc03b0 crypto: arm/crct10dif - revert to C code for short inputs e414d9bc86a7 crypto: aegis - fix handling chunked inputs 650b7246d460 crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 781bcac5b199 fix cgroup_do_mount() handling of failure exits 2ac714d69197 libnvdimm: Fix altmap reservation size calculation fefd9f16efc3 libnvdimm/pmem: Honor force_raw for legacy pmem regions 4b9d1f8b61e8 libnvdimm, pfn: Fix over-trim in trim_pfn_device() dd40489f6751 libnvdimm/label: Clear 'updating' flag after label-set update 5fa9cb709adc nfit/ars: Attempt short-ARS even in the no_init_ars case b3971c932d0d nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot 0c7979447489 acpi/nfit: Fix bus command validation a2690301c976 nfit: acpi_nfit_ctl(): Check out_obj->type in the right place 59a0e57f0cd3 nfit: Fix nfit_intel_shutdown_status() command submission 9cd805133b84 dax: Flush partial PMDs correctly c2ca8161971a crypto: rockchip - update new iv to device in multiple operations e400988e1dae crypto: rockchip - fix scatterlist nents error 20af3634022b crypto: ahash - fix another early termination in hash walk b03aa2833d56 crypto: ofb - fix handling partial blocks and make thread-safe 5d894501d423 crypto: cfb - remove bogus memcpy() with src == dest 64ae3c3d0c16 crypto: cfb - add missing 'chunksize' property ded8d6308ffd crypto: ccree - don't copy zero size ciphertext 4fc9f0e1c9ff crypto: ccree - unmap buffer before copying IV 37ff06fd9cb5 crypto: ccree - fix free of unallocated mlli buffer 6e905e258c50 crypto: caam - fix DMA mapping of stack memory e86dc780320e crypto: caam - fixed handling of sg list 4a18213573b8 crypto: ccree - fix missing break in switch statement fce3d391401a crypto: caam - fix hash context DMA unmap size 9b2fdbdce1fb stm class: Fix an endless loop in channel allocation 2adb36ff325d stm class: Prevent division by zero 1cfec5613090 mei: bus: move hw module get/put to probe/release 55ced4559dbf mei: hbm: clean the feature flags on link reset f644d56fe1d7 iio: adc: exynos-adc: Use proper number of channels for Exynos4x12 a52251155bab iio: adc: exynos-adc: Fix NULL pointer exception on unbind 61328520e0b6 ASoC: codecs: pcm186x: Fix energysense SLEEP bit 5bd4f972e594 ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() a7abca8506b5 ASoC: fsl_esai: fix register setting issue in RIGHT_J mode 5ababa4e34db 9p/net: fix memory leak in p9_client_create 3cccba9a38d5 9p: use inode->i_lock to protect i_size_write() under 32-bit Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-11kernel-devsrc: check for localversion files in the kernel source treeBeniamin Sandu
The kernel-devsrc rework doesn't take into account localversion files in the kernel source tree. This might result in modules with an incomplete version magic when building out-of-tree using the SDK. Before: root@qemux86:~# insmod hello.ko [ 42.000212] hello: version magic '5.0.3-yocto-standard SMP preempt mod_unload PENTIUMM ' should be '5.0.3-my-custom-release-yocto-standard SMP preempt mod_unload PENTIUMM ' [ 42.008200] hello: version magic '5.0.3-yocto-standard SMP preempt mod_unload PENTIUMM ' should be '5.0.3-my-custom-release-yocto-standard SMP preempt mod_unload PENTIUMM ' insmod: can't insert 'hello.ko': invalid module format After: root@qemux86:~# insmod hello.ko [ 39.094288] hello: loading out-of-tree module taints kernel. [ 39.108044] Hello World! Signed-off-by: Beniamin Sandu <beniamin.sandu@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto/4.18: remove versioned recipesBruce Ashfield
The 4.18 kernel has been replaced by 4.19 and 5.0 in master. poky-tiny has been tested against 5.0, so we can now remove the 4.18 recipes. The 4.18 branches will continue to be maintained, but we only want two active kernels in the master/releases branches. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto/5.0: tweak qemuarm -tiny configurationBruce Ashfield
Tweaking the qemuarm -tiny configuration so it will boot to a prompt. There are still some remaining issues (like hvc console warnings), but this is much better than a silent boot, or boot hang like we previously had. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10qemumips: Enable the poweroff driverBruce Ashfield
Integrating the following configuration change: Author: Kevin Hao <kexin.hao@windriver.com> Date: Wed Apr 3 19:30:58 2019 +0800 mips: Enable the poweroff driver for the qemumips/qemumips64 As Indicated by Richard Purdie, in order to shutdown the machine we have to explicitly enable the PIIX4 poweroff driver for the qemumips/qemumips64 after the kernel commit dd129c6374e9 ("MIPS: Malta: Use PIIX4 poweroff driver to power down") is merged. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto/4.18: update to v4.18.33Bruce Ashfield
Integrating Paul Gortmaker's -stable ports to 4.18 which comprise the following commits: 56f9fe35a4c5 Linux 4.18.33 bf44ff79b855 net: hns: Fixes the missing put_device in positive leg for roce reset 81614c514f4e mm: Use fixed constant in page_frag_alloc instead of size + 1 035b5a7a3e3f ipvs: fix warning on unused variable 58ab04e46d92 intel_th: gth: Fix an off-by-one in output unassigning 8cb600d53c6c ARM: dts: exynos: Fix max voltage for buck8 regulator on Odroid XU3/XU4 f11b815f39bf s390/setup: fix boot crash for machine without EDAT-1 4059d23a36a6 KVM: nVMX: Ignore limit checks on VMX instructions using flat segments d94637dc73e5 KVM: nVMX: Apply addr size mask to effective address for VMX instructions ee356457f2a3 KVM: nVMX: Sign extend displacements of VMX instr's mem operands b4485d9eb039 KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux fe7d69927661 KVM: x86/mmu: Detect MMIO generation wrap in any address space c34cae89374b KVM: Call kvm_arch_memslots_updated() before updating memslots 9fb8b858d552 drm/amd/display: don't call dm_pp_ function from an fpu block d4302b79ffbd drm/amd/powerplay: correct power reading on fiji 5f8c51055244 drm/radeon/evergreen_cs: fix missing break in switch statement 3fc39cdce701 media: imx: csi: Stop upstream before disabling IDMA channel 5c008f7971b8 media: imx: csi: Disable CSI immediately after last EOF 74a5ff7db3b2 media: uvcvideo: Avoid NULL pointer dereference at the end of streaming 142a9bd66395 media: lgdt330x: fix lock status reporting 465204a0c772 media: imx: prpencvf: Stop upstream before disabling IDMA channel 42a2c1a40db0 rcu: Do RCU GP kthread self-wakeup from softirq and interrupt f9480ca4fb29 tpm: Unify the send callback behaviour 5f28509f81ad tpm/tpm_crb: Avoid unaligned reads in crb_recv() ea37270d4c87 md: Fix failed allocation of md_register_thread bd77b69a20ba perf intel-pt: Fix divide by zero when TSC is not available c9a63c17458f perf/x86/intel/uncore: Fix client IMC events return huge result 63a25bdd4227 perf intel-pt: Fix overlap calculation for padding 66a57e3b95b5 perf auxtrace: Define auxtrace record alignment 76650254e18e perf intel-pt: Fix CYC timestamp calculation after OVF 274ef4840d79 x86/unwind/orc: Fix ORC unwind table alignment 3928a903e185 vt: perform safe console erase in the right order 645a7ca69855 stable-kernel-rules.rst: add link to networking patch queue 1c14622adb15 bcache: never writeback a discard operation 261aad0b3ea7 PM / wakeup: Rework wakeup source timer cancellation ee610ce938cd svcrpc: fix UDP on servers with lots of threads 0530b66bfd53 NFSv4.1: Reinitialise sequence results before retransmitting a request 9a1d7090b36e nfsd: fix wrong check in write_v4_end_grace() e7edb30fd6b7 nfsd: fix memory corruption caused by readdir 672f2e600d21 nfsd: fix performance-limiting session calculation 624865483faa NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() 2b5fef7c9927 NFS: Fix an I/O request leakage in nfs_do_recoalesce 63adecfe53e9 NFS: Fix I/O request leakages 0b0545dd7e6e cpcap-charger: generate events for userspace 8f27f8570fa7 mfd: sm501: Fix potential NULL pointer dereference f964d308797d dm integrity: limit the rate of error messages 1ed46c0c4f65 dm: fix to_sector() for 32bit ea77e999f649 ipmi_si: fix use-after-free of resource->name 5a0bc68e9a0d arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 9dc4a1a6447e arm64: debug: Ensure debug handlers check triggering exception level c33e96f8ddb2 arm64: Fix HCR.TGE status for NMI contexts bb7edb8a409a ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify e8d7edd36a92 powerpc/traps: Fix the message printed when stack overflows fbea0579063f powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration 88d0042148f0 powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning b0fc119506bf powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest 6e975dad4a8e powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit fcf2d15a0a32 powerpc/83xx: Also save/restore SPRG4-7 during suspend 87481c65c805 powerpc/powernv: Make opal log only readable by root 12319dcc9a80 powerpc/wii: properly disable use of BATs when requested. be851891b1c9 powerpc/32: Clear on-stack exception marker upon exception return 24d0b4b51dd1 security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock 3ea70bdc892f selinux: add the missing walk_size + len check in selinux_sctp_bind_connect 00d550a195f2 jbd2: fix compile warning when using JBUFFER_TRACE b18848cc624a jbd2: clear dirty flag when revoking a buffer from an older transaction 108ba9f62780 serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup() a79bc3e5fb7c serial: 8250_pci: Fix number of ports for ACCES serial cards 78e39f8bb56e serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart 04eb2755b4e9 serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO 9007ccc01a91 bpf: only test gso type on gso packets ef5b4e1f5735 drm/i915: Relax mmap VMA check 23ca68189393 can: flexcan: FLEXCAN_IFLAG_MB: add () around macro argument 8529fecb481e gpio: pca953x: Fix dereference of irq data in shutdown 31e04ac8a8ba media: i2c: ov5640: Fix post-reset delay 1855d8c9e6c4 i2c: tegra: fix maximum transfer size 8bc3433b216d parport_pc: fix find_superio io compare code, should use equal test. 2c0542dbb267 intel_th: Don't reference unassigned outputs c64422307c34 device property: Fix the length used in PROPERTY_ENTRY_STRING() c88db9c0d127 kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv 5374924c9332 mm/memory.c: do_fault: avoid usage of stale vm_area_struct db693b432779 mm/vmalloc: fix size check for remap_vmalloc_range_partial() 1811478753e3 mm: hwpoison: fix thp split handing in soft_offline_in_use_page() 492ea426ddce dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit f1bb88d5cee1 usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() 9377917b523a clk: ingenic: Fix doc of ingenic_cgu_div_info f0412cfc06af clk: ingenic: Fix round_rate misbehaving with non-integer dividers b6b4011ce7d1 clk: samsung: exynos5: Fix kfree() of const memory on setting driver_override 715fe29adfd1 clk: samsung: exynos5: Fix possible NULL pointer exception on platform_device_alloc() failure eb9aa4ebf835 clk: clk-twl6040: Fix imprecise external abort for pdmclk 917fa829bbf5 clk: uniphier: Fix update register for CPU-gear 80d526380136 ext2: Fix underflow in ext2_max_size() bbf30be02326 cxl: Wrap iterations over afu slices inside 'afu_list_lock' 94f31d712f26 IB/hfi1: Close race condition on user context disable and close a80eceacf85c PCI: dwc: skip MSI init if MSIs have been explicitly disabled 084005af4966 PCI/ASPM: Use LTR if already enabled by platform 821934eb7e75 ext4: fix crash during online resizing 01767d409537 ext4: add mask of ext4 flags to swap f21830e67d5d ext4: update quota information while swapping boot loader inode 4de71f7481a7 ext4: cleanup pagecache before swap i_data 4821bf3c61bb ext4: fix check of inode in swap_inode_boot_loader 3cd2f1153739 cpufreq: pxa2xx: remove incorrect __init annotation dc4443928ee2 cpufreq: tegra124: add missing of_node_put() a0e15a764318 cpufreq: kryo: Release OPP tables on module removal d28564a8e60e x86/kprobes: Prohibit probing on optprobe template code 56955276ba2e irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code 14dda7949f82 irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table 3a8560230470 libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer 7e7e5728d161 Btrfs: fix corruption reading shared and compressed extents after hole punching be1ee0e2fd42 btrfs: ensure that a DUP or RAID1 block group has exactly two stripes cb292a678ee2 Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl f1f0ee2859e6 Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() 0e6de290666f m68k: Add -ffreestanding to CFLAGS f78f0d35d43a splice: don't merge into linked buffers 433cbc2d30f3 fs/devpts: always delete dcache dentry-s in dput() dbb3e594eecd scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock 528af139ff6b scsi: sd: Optimal I/O size should be a multiple of physical block size ee579fc4e875 scsi: aacraid: Fix performance issue on logical drives 818838eea45d scsi: virtio_scsi: don't send sc payload with tmfs 478bd6b7f170 s390/virtio: handle find on invalid queue gracefully 47c6ea331f58 s390/setup: fix early warning messages 69304bcf9021 clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer instability 947a053a6d47 clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown 084c1f5522f1 clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR 95d7c41e448f regulator: s2mpa01: Fix step values for some LDOs 69913dbd2d55 regulator: max77620: Initialize values for DT properties 060c4f4e5d0c regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 9a215e43276c spi: pxa2xx: Setup maximum supported DMA transfer length 913cb6579c9a spi: ti-qspi: Fix mmap read when more than one CS in use bb427df35f34 netfilter: ipt_CLUSTERIP: fix warning unused variable cn 8fb8fb9b67bb mmc:fix a bug when max_discard is 0 85d7e5a8000a mmc: sdhci-esdhc-imx: fix HS400 timing issue 882b6b31ea55 ACPI / device_sysfs: Avoid OF modalias creation for removed device b3a0dfcfdd64 tracing/perf: Use strndup_user() instead of buggy open-coded version 054dec51d4e6 tracing: Do not free iter->trace in fail path of tracing_open_pipe() 9031822970ed tracing: Use strncpy instead of memcpy for string keys in hist triggers 9367b21da22c CIFS: Fix read after write for files with read caching db6a6106224d CIFS: Do not reset lease state to NONE on lease break aef1cf600f41 crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine 134135d884be crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling 6779d6bdf611 crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP 2dc6214860a1 crypto: x86/aesni-gcm - fix crash on empty plaintext a6e83e8b0777 crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP f62b08c81429 crypto: testmgr - skip crc32c context test for ahash algorithms 817cbacff744 crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails bc647ef1085e crypto: pcbc - remove bogus memcpy()s with src == dest 9fb0d7b8f9c2 crypto: morus - fix handling chunked inputs 76bc71692818 crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails 67a69738546d crypto: arm64/crct10dif - revert to C code for short inputs e1369ad2e0fc crypto: arm64/aes-neonbs - fix returning final keystream block 7807003aab85 crypto: arm/crct10dif - revert to C code for short inputs f54fbb0e595b crypto: aegis - fix handling chunked inputs 1e1f858caf7d crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails c81bf050b880 fix cgroup_do_mount() handling of failure exits 638f4fb4ec67 libnvdimm: Fix altmap reservation size calculation 5ebf4aa4cf6b libnvdimm/pmem: Honor force_raw for legacy pmem regions 8f42d7ac37af libnvdimm, pfn: Fix over-trim in trim_pfn_device() 68ab49b299fb libnvdimm/label: Clear 'updating' flag after label-set update 063d65ab9fdd nfit/ars: Attempt short-ARS even in the no_init_ars case 387b9f01ac16 nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot b4a1581c801d acpi/nfit: Fix bus command validation 0c27d62e5752 nfit: acpi_nfit_ctl(): Check out_obj->type in the right place fd8e9cd85f26 stm class: Prevent division by zero dd1250b50c61 tmpfs: fix uninitialized return value in shmem_link f4cadb1ec900 selftests: fib_tests: sleep after changing carrier. again. 7d856eb21fd5 net: set static variable an initial value in atl2_probe() 193e19cdf7a0 bnxt_en: Wait longer for the firmware message response to complete. 36ca3daa9b6a bnxt_en: Fix typo in firmware message timeout logic. aae48df6d81b nfp: bpf: fix ALU32 high bits clearance bug 9fbe31fda762 nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K a58be12de08d net: thunderx: add nicvf_send_msg_to_pf result check for set_rx_mode_task 76320607b755 net: thunderx: make CFG_DONE message to run through generic send-ack sequence 6d0ebfc3fd3c bpf, lpm: fix lookup bug in map_delete_elem 4e9c4ca54607 mac80211_hwsim: propagate genlmsg_reply return code ce8e30135705 phonet: fix building with clang 92f628f3c945 ARCv2: don't assume core 0x54 has dual issue 1faac2e0838b ARCv2: support manual regfile save on interrupts 53fc181c111c ARC: uacces: remove lp_start, lp_end from clobber list 515122c2d88a ARCv2: lib: memcpy: fix doing prefetchw outside of buffer b1ba6184493e ixgbe: fix older devices that do not support IXGBE_MRQC_L3L4TXSWEN a7bc4915f286 tmpfs: fix link accounting when a tmpfile is linked in 5beffa8382a9 mm: handle lru_add_drain_all for UP properly 7bd326b49004 net: marvell: mvneta: fix DMA debug warning 70e79b53dd95 arm64: Relax GIC version check during early boot e3ca5da971e0 ARM: dts: armada-xp: fix Armada XP boards NAND description 2ac1b780dae0 qed: Fix iWARP syn packet mac address validation. 9e1395d75177 qed: Fix iWARP buffer size provided for syn packet processing. 5db253fa68bf ASoC: topology: free created components in tplg load error 31983c568574 mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush timeout issue 98b9e4e542eb net: mv643xx_eth: disable clk on error path in mv643xx_eth_shared_probe() d19e6c11ca1f qmi_wwan: apply SET_DTR quirk to Sierra WP7607 59e3fdbb9d45 pinctrl: meson: meson8b: fix the sdxc_a data 1..3 pins 63c87ecf5134 net: dsa: bcm_sf2: Do not assume DSA master supports WoL a2e5d18914c1 net: systemport: Fix reception of BPDUs 8d33e97da9c5 scsi: libiscsi: Fix race between iscsi_xmit_task and iscsi_complete_task 1c976b2c9f19 keys: Fix dependency loop between construction record and auth key 590d6228f163 assoc_array: Fix shortcut creation 5aa6e4f891a2 af_key: unconditionally clone on broadcast 8cae27e41068 bpf: fix lockdep false positive in stackmap c16b543d92ee bpf: only adjust gso_size on bytestream protocols 908e6fda5d7d ARM: 8824/1: fix a migrating irq bug when hotplug cpu d6fb8e0d9e7d esp: Skip TX bytes accounting when sending from a request socket 2dd0beec5a84 clk: sunxi: A31: Fix wrong AHB gate number 48db12b60b5b kallsyms: Handle too long symbols in kallsyms.c 882dbe3d5c03 clk: sunxi-ng: v3s: Fix TCON reset de-assert bit 1ab0225d6786 Input: st-keyscan - fix potential zalloc NULL dereference 8a6ef92721b7 auxdisplay: ht16k33: fix potential user-after-free on module unload 53f4d6948b35 i2c: bcm2835: Clear current buffer pointers and counts after a transfer 60bc9292260f i2c: cadence: Fix the hold bit setting e6e2c6c26a58 net: hns: Fix object reference leaks in hns_dsaf_roce_reset() bf6be978fece mm: page_alloc: fix ref bias in page_frag_alloc() for 1-byte allocs 7f72a70062d7 x86/CPU: Add Icelake model number 4342d099969c net: dsa: bcm_sf2: potential array overflow in bcm_sf2_sw_suspend() 6093401c933b scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd 09f4a1b6edf1 Revert "mm: use early_pfn_to_nid in page_ext_init" 7b9dd6a4976b mm/gup: fix gup_pmd_range() for dax 3cd584b00e50 NFS: Don't use page_file_mapping after removing the page 7d8cf3eb1dc7 xprtrdma: Make sure Send CQ is allocated on an existing compvec 5c64b19db5ce floppy: check_events callback should not return a negative number 1cae395dd7c0 ipvs: fix dependency on nf_defrag_ipv6 d05d4feda816 blk-mq: insert rq with DONTPREP to hctx dispatch list when requeue 0af0889613a8 netfilter: compat: initialize all fields in xt_init f2883b8eb0a9 mac80211: Fix Tx aggregation session tear down with ITXQs 665cb8ebf0f3 mac80211: call drv_ibss_join() on restart 0a1d76449997 Input: matrix_keypad - use flush_delayed_work() 375152e09de2 Input: ps2-gpio - flush TX work when closing port b15599627bd0 Input: cap11xx - switch to using set_brightness_blocking() a1e0fb446a4b ARM: OMAP2+: fix lack of timer interrupts on CPU1 after hotplug 7a587d77b211 ASoC: samsung: Prevent clk_get_rate() calls in atomic context bf74076b7dd3 KVM: arm64: Forbid kprobing of the VHE world-switch code d74df61de605 arm/arm64: KVM: Don't panic on failure to properly reset system registers 58d6ec80a286 arm/arm64: KVM: Allow a VCPU to fully reset itself c05c5a6e1f0e KVM: arm/arm64: Reset the VCPU without preemption and vcpu state loaded ba274486de32 ASoC: dapm: fix out-of-bounds accesses to DAPM lookup tables a3d8ea1f2555 ARM: OMAP2+: Variable "reg" in function omap4_dsi_mux_pads() could be uninitialized 237e6c308062 Input: pwm-vibra - stop regulator after disabling pwm, not before 6a48d09a77a1 Input: pwm-vibra - prevent unbalanced regulator fcae9decbc8f s390/dasd: fix using offset into zero size array error f98a25dc02b7 KVM: arm/arm64: vgic: Make vgic_dist->lpi_list_lock a raw_spinlock 74b6b1e49d06 gpu: ipu-v3: Fix CSI offsets for imx53 1c0723cba9a9 drm/imx: imx-ldb: add missing of_node_puts 321e0fbdae09 gpu: ipu-v3: Fix i.MX51 CSI control registers offset f0e52962b9f2 drm/imx: ignore plane updates on disabled crtcs 38fc637ca52e crypto: rockchip - update new iv to device in multiple operations 5d89757429b3 crypto: rockchip - fix scatterlist nents error 2365ae3a03c9 crypto: ahash - fix another early termination in hash walk 512b0d76c2c9 crypto: cfb - remove bogus memcpy() with src == dest 66b1348939de crypto: cfb - add missing 'chunksize' property 40c76d76e11f crypto: ccree - don't copy zero size ciphertext 2ff9501c582f crypto: ccree - fix free of unallocated mlli buffer ba3c72efd404 crypto: caam - fixed handling of sg list 5d9cee322faf crypto: ccree - fix missing break in switch statement e0ea8deb72db stm class: Fix an endless loop in channel allocation 95b10e2f6a61 mei: bus: move hw module get/put to probe/release 1af8d0304685 iio: adc: exynos-adc: Fix NULL pointer exception on unbind 513052a27dab ASoC: codecs: pcm186x: Fix energysense SLEEP bit d5f37b5d7009 ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() da21c5d9bacf ASoC: fsl_esai: fix register setting issue in RIGHT_J mode b3e4f70db4f3 9p/net: fix memory leak in p9_client_create 4b84eeface08 9p: use inode->i_lock to protect i_size_write() under 32-bit 4441736404a3 media: videobuf2-v4l2: drop WARN_ON in vb2_warn_zero_bytesused() 3f7de80a22c6 perf/core: Fix impossible ring-buffer sizes warning Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto-tiny/4.18: point KBRANCH to 4.18Bruce Ashfield
The other kernel versions had the -tiny KBRANCH typo of 4.15 fixed, but 4.18 was missed. So we update the kbranch to the right version for 4.18 as well. [YOCTO #13247] Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto/5.0: update CGL audit configuration fragmentBruce Ashfield
Integrating the follow config tweak: cgl: audit: Remove CONFIG_AUDIT_WATCH and CONFIG_AUDIT_WATCH In the following commits, these two options have been replaced by CONFIG_AUDITSYSCALL which is in audit.cfg. c8fc5d49c341 ("audit: remove WATCH and TREE config options") cb74ed278f80 ("audit: always enable syscall auditing when supported and audit is enabled") Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-04-10linux-yocto-rt/4.19: fix duplicate TIF_NEED_RESCHED_LAZYBruce Ashfield
Integrating Kevin's patch that cleans up a build warning: x86: Drop the duplicate define of TIF_NEED_RESCHED_LAZY The two merge commits 107b161b1cbaf ("Merge branch 'v4.19/standard/base' into v4.19/standard/preempt-rt/base") and dc37b7080cd55 ("Merge tag 'v4.19.8' into linux-4.19.y-rt") almost have the same content, but introduce two define of TIF_NEED_RESCHED_LAZY for x86 arch. Drop one of them to fix the build warning. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>