aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-10-12xf86-video-armada / libdrm-armada: removedunfellAndreas Müller
Not necessary any more / sources are finally gone Fixes: #1553. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> (cherry picked from commit 73e068409ffe01d6c52f329f3673cc601773f774)
2023-08-01Merge pull request #1631 from dv1/imxdmabuffer-imxvpuapi-gstimx-upgrades-dunfellOtavio Salvador
Dunfell specific upgrades for libimxdmabuffer, libimxvpuapi2, gstreamer-imx
2023-08-01gstreamer1.0-plugins-imx: Upgrade to version 2.2.0Carlos Rafael Giani
* imx2d: * Add 10-bit tiled NV12/21 formats and extend Imx2dPixelFormatInfo * Fix corner case when imx2d format has no GStreamer counterpart In such a case, no GStreamer format string exists, so format_str stays NULL, and the format_string_gvalue is not taken into the format_list_gvalue array. Unset it to prevent followup g_value_init() calls from failing. * Replace num_first_plane_bpp with pixel_stride pixel_stride is more useful and more intuitive in calculations, and works properly with tiled 10-bit formats. * Fix flickering when using DPU-emulated G2D rendering * Free surface during destroy * Add support for specifying colorimetry * Take into account chroma subsampling in alignments * Add special format specific stride alignment specifier * Add overlay composition support to imx2d video sinks * ipu: Add support for YUY2 (aka YUYV) * ipu: Add video sink Even though the IPU isn't actually flexible enough for use in a video sink, it can be useful for diagnostics and debugging, so add one. * g2d: Don't restrict calls to one thread if G2D is new enough * g2d: Check if Amphion tile enums are present * g2d: Enable YVYU and NV61 when using G2D newer than 1.x * g2d: Check for colorimetry support * vpu: * Raise minimum required libimxvpuapi version to 2.3.0 A number of API additions and critical bug fixes in libimxvpuapi make it essential to raise the minimum required version. * Fix case when a gap event arrives before the caps event does * Fix gst_imx_vpu_dec_drain() return type * Free element_name after registering * encoder: Add closed-gop-interval property * encoder: Handle force-keyframe-headers flag and add sync points * encoder: Fix h264/h265 AUD handling and add enable-aud property AUDs are not enabled by "au" caps. "au" instead means that buffers contain entire access units, which is what all imx6 and imx8 VPUs produce. Fix this by always setting "au" in the output caps and adding an "enable-aud" GObject property. * decoder: Add support for producing 4x4 tiled frames The 4x4 tile format is available with Hantro VPUs. Especially when using formats that are produced by the G2 VPU, using tiled formats can yield significant performance improvements, because the VPU does not have to perform internal detiling before handing over the decoded frame to the caller. The 4x4 tile format corresponds to the GStreamer NV12_4L4 format. If GStreamer is older than 1.18, this is disabled, since NV12_4L4 was introduced in 1.18.0. * decoder: When draining before setting format, don't treat EOS as error * v4l2video: * Add ISI transform and Amphion decoder elements These are meant for older imx-kernels (<5.15) that have broken drivers for V4L2 mem2mem ISI and Amphion decoder devices. These custom elements use workarounds to address the issues these drivers have. Newer kernels use different drivers that aren't broken, so the custom elements are not needed there. * v4l2videosrc: Minor logging fixes * v4l2videosrc: Support non-mxc_v4l2 devices (like USB cameras) This enables support for devices that aren't based on the mxc_v4l2 driver. Useful for being able to use the same imxv4l2videosrc element with both MIPI/CSI and USB cameras. * v4l2videosrc: Read back format with G_FMT after having set it with S_FMT Usually, the driver should set any changes in the parameters right in the S_FMT call, but some don't (they return defaults instead), so to be safe, actually issue the G_FMT ioctl instead. * v4l2videosrc: Copy bytesperline and sizeimage into videoinfo struct This is important if the driver picked a different format, since then, the originally chosen sizes and the new ones can differ significantly. * v4l2videosrc: Unref old v4l2 object before creating new one This fixes cases where a caps renegotiation happens and the old object still keeps the V4L2 device open, preventing some of the new object's ioctls from succeeding. * Added ov5645 mipi camera * v4l2videosrc: Check for V4L2_CAP_SDR_OUTPUT and V4L2_CAP_TOUCH presence * v4l2videosrc: Don't exit with error if mxc_v4l2 chip ID is not available * Add prelude header This fixes build errors due to undeclared symbols * v4l2videosrc: Don't use V4L2 sizeimage for single-planar pixel formats * Explicitly calculate plane stride and offset values * Remove pixel-aspect-ratio from probed device caps These unfixated template caps can mislead downstream fixation logic, leading to it using a PAR of 1/maxint, which in turn causes integer overflow errors. Elements do not normally specify that kind of pixel aspect ratio range, and just omit it from the template caps. * Use sys/time.h instead of time.h * imx-gst-libs: * common: Fix incorrect imx_dma_buffer_deallocate() calls If the gst_imx_dmabuf_allocator_activate() call inside alloc() fails, imx_dma_buffer_deallocate() would be called even though no imxdmabuffer was allocated. Fix this by adding an imx_dma_buffer check. * common: Add gst_imx_dmabuf_allocator_get_physical_address() * common: Misc GstImxDmaBufAllocator improvements * common: Fix gst_imx_dmabuf_allocator_wrap_dmabuf() call This function tries to get a physical address before activating the allocator. Switch this around to make this call work with allocators like the ION allocator. * common: Replace dup() with memory ref'ing in dmabuf uploader Using dup() was causing an FD leak because the dup'ed FD was not being closed correctly. But also, just using dup() risks data races because producers can still write to the same dma-buf memory that consumers are processing. Instead, ref the input dmabuf gstmemory to let the rest of the pipeline know that the gstmemory is in use. * common: Remove volatile qualifier in allocator GType This addresses the warning: warning: argument 2 of ‘__atomic_load’ discards ‘volatile’ qualifier * common: Fix assertion in raw_buffer_upload_method_create() * common: Synchronize imx gstmemory access with mutexes * video: Move GstImx2dVideoBufferPool to video/ GstImx2dVideoBufferPool is not actually imx2d specific, and can be reused in other plugins. Move it to gst-libs/gst/imx/video/ for that purpose. * video: Add functions to videobufferpool for getting info * video: Add GstImxVideoDmaBufferPool * video: Set videometa plane stride & offset values in pool * video: Take into account chroma subsampling in alignments * video: Adjust video meta before doing a CPU based frame copy * video: Fix video dma buffer pool info size modifications * video: Add function for setting new video uploader alignments Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2023-08-01libimxvpuapi2: Upgrade to version 2.3.0Carlos Rafael Giani
* vpu: Implement first working version of VC8000E encoder integration This adds support for the Hanto VC8000E encoder that can be found on the i.MX8m plus. The VC8000E encoder integration is not finished. h.264 encoding works fine. h.265 encoding is not yet done. And, changing framerate mid-stream is currently not supported. * Replace mxcfb.h with ipu.h in option description Some BSPs no longer ship with the mxcfb.h header. * imx6-coda: Fix ENC_ENABLE_SOF_STUFF check The check was being performed incorrectly, leading to nullbytes being inserted at the end of the SOF0 marker. * imx6-coda: Insert JFIF APP0 segment The VPU does not insert this segment on its own. Some programs need JFIF data to be present in JPEG files, so insert APP0 manually. * imx6-coda: Fix decoder and encoder alignments * imx6-coda: Add more IPU detiler logging * imx6-coda: Fix decoder Y/U/V offset alignments As it turns out, these must be aligned to 8-byte boundaries, not to 4096 byte ones. The latter caused incorrect offset calculations. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2023-07-30libimxdmabuffer: Upgrade to version 1.1.3Carlos Rafael Giani
* waf: update to 2.0.25 * g2d: Fix typo in G2D allocator that caused build errors * Don't check for mxcfb.h in build script mxcfb.h is no longer present in some sysroots anymore, so it is not a reliable way for verifying the imx linux headers path. Just use the path directly; if it is wrong, the build will fail anyway. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2023-07-30imx-vpu-hantro-vc: add do_install functionCarlos Rafael Giani
The encoding library was not previously being installed. (Backported original commit 1acf098972f9f86b26eee815827667dbd2fcdeaf to dunfell) Signed-off-by: Chris Dimich <Chris.Dimich@boundarydevices.com> Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2023-03-31Merge pull request #1470 from thochstein/dunfellOtavio Salvador
Move from codeaurora to github
2023-03-31Move from codeaurora to githubTom Hochstein
Fixes: #1469 Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
2023-03-08Merge pull request #1446 from sapiippo/dunfellOtavio Salvador
imx-mkimage: use mkimage tool from sysroot
2023-03-08imx-mkimage: use mkimage tool from sysrootAndrey Zhizhikin
mkimage tool is provided as a part of sysroot and should not be used as a local copy, since it contains runtime dependencies which local copy does not account for. Drop the local copy on mkimage, introduce the patch that fixes mkimage invocations in build system. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> (cherry picked from commit c59f817b0d1ee70ef224405ff8acd31e0743ed91) Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
2022-12-29Merge pull request #1351 from Freescale/backport-1348-to-dunfellOtavio Salvador
[Backport dunfell] libimxvpuapi2: Upgrade to version 2.2.2
2022-12-29libimxvpuapi2: Upgrade to version 2.2.2Carlos Rafael Giani
* imx6-coda: Skip incomplete frames instead of just reporting them * imx6-coda: Only flush bit buffer when framebuffers were registered This prevents misleading error-level log lines from occurring * imx6-coda: Prefer semi planar modes over fully planar ones * imx8m-hantro: Reset decoder write_offset to fill_level when moving read_offset * Add imx_vpu_api_is_color_format_tiled() function * update waf to 2.0.24 * Add closed_gop_interval field to ImxVpuApiEncOpenParams This allows for enforcing regularly occurring IDR boundaries when encoding to h.264 * imx8m-hantro: Fix supported decoder color formats and include tiled formats * Fix and improve h.264 max level estimation for encoding * imx6-coda: Use 2-row alignment in encoder * imx6-coda: Fix JPEG encoding quantization parameter handling in encoder Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> (cherry picked from commit b30dde7a1a0b8a42b401c01a0f239a972bc00639)
2022-10-11Merge pull request #1257 from fschrempf/dunfell-fix-linux-mfgtoolOtavio Salvador
linux-mfgtool.inc: Fix KERNEL_PACKAGE_NAME
2022-10-11linux-mfgtool.inc: Fix KERNEL_PACKAGE_NAMEFrieder Schrempf
Using a KERNEL_PACKAGE_NAME without the "linux-" prefix causes parsing errors like: ERROR: [...]/meta-freescale/recipes-kernel/linux/linux-fslc-mfgtool_5.4.bb: QA Issue: [...]/meta-freescale/recipes-kernel/linux/linux-fslc-mfgtool_5.4.bb: Variable RDEPENDS is set as not being package specific, please fix this. [pkgvarcheck] Fix this by setting KERNEL_PACKAGE_NAME to "linux-mfgtools", which also reflects the value mentioned in the original commit's message [1]. [1] https://github.com/Freescale/meta-freescale/commit/9a5a143d97345871d4c258ce6ce13567d87f5ba7 Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
2022-10-07Merge pull request #1254 from Freescale/backport-1253-to-dunfellOtavio Salvador
[Backport dunfell] qt4-imx-support: fix typo
2022-10-07qt4-imx-support: fix typoMauro Salvini
Signed-off-by: Mauro Salvini <m.salvini@koansoftware.com> (cherry picked from commit 3abc09fe62ca4de5b16a55a813cc24a9d7c1e919)
2022-09-29Merge pull request #1236 from Freescale/backport-1235-to-dunfellOtavio Salvador
[Backport dunfell] qt4-imx-support: change format of patches added by commit 4aed4a5
2022-09-29qt4-imx-support: change format of patches added by commit 4aed4a5Mauro Salvini
Patches are the same but now are in git format ad have Signed-off-by and From fields as required (cherry picked from commit 24a68cbea9424b7ebc888c402068a09996a5ba17)
2022-09-28Merge pull request #1233 from Freescale/backport-1232-to-dunfellOtavio Salvador
[Backport dunfell] qt4-imx-support: fix build for imxgpu2d SOCs
2022-09-28qt4-imx-support: fix build for imxgpu2d SOCsMauro Salvini
Before this change, when imxgpu2d is selected, the qt4 do_configure fails with the following error: | EGL (EGL/egl.h) auto-detection... () | compiling egl.cpp ... | /home/wrk/yocto/build-qt4/tmp/work/imx8mmevk-fslc-linux/qt4-embedded/4.8.7-r0/recipe-sysroot/usr/include/EGL/eglplatform.h:150:10: fatal error: X11/Xlib.h: No such file or directory | 150 | #include <X11/Xlib.h> | | ^~~~~~~~~~~~ | compilation terminated. | Makefile:178: recipe for target 'egl.o' failed | make: *** [egl.o] Error 1 | EGL (EGL/egl.h) disabled. | EGL (GLES/egl.h) auto-detection... () ... | /home/wrk/yocto/build-qt4/tmp/work/imx8mmevk-fslc-linux/qt4-embedded/4.8.7-r0/recipe-sysroot/usr/include/EGL/eglplatform.h:150:10: fatal error: X11/Xlib.h: No such file or directory | 150 | #include <X11/Xlib.h> | | ^~~~~~~~~~~~ | compilation terminated. | Makefile:178: recipe for target 'egl4gles1.o' failed | make: *** [egl4gles1.o] Error 1 | EGL (GLES/egl.h) disabled. | The EGL functionality test failed! This is because the -DLINUX=1 and -DEGL_API_FB=1 flags added to QT_CONFIG_FLAGS are not pushed down during these configuration tests. This commit adds these two flags directly to the related .pro files in Qt4 sources. Since it's been a long time that meta-qt4 is not updated anymore, the patch can be backported to LTS releases. Signed-off-by: Mauro Salvini <m.salvini@koansoftware.com> (cherry picked from commit 4aed4a58335af8e96815124f17f47060d1053c48)
2022-08-01Merge pull request #1156 from Freescale/backport-1155-to-dunfellOtavio Salvador
[Backport dunfell] classes: fsl-kernel-localversion: fix usage with devtool
2022-08-01classes: fsl-kernel-localversion: fix usage with devtoolFrancesco Valla
Make fsl-kernel-localversion devtool-compatible, avoiding to depend on ${WORKDIR}/defconfig to be present. Two approaches are taken: - for recipes inheriting kernel-yocto, LINUX_VERSION_EXTENSION is set to LOCALVERSION; in this way, the do_kernel_configme task will use it to set CONFIG_LOCALVERSION once the .config file is generated; - for recipes not inheriting kernel-yocto, CONFIG_LOCALVERSION is simply appended to the .config file contained inside the build directory. The do_kernel_localversion is being made executed after do_kernel_configme rather than do_kernel_metadata; in this way, modifications are applied after the config-by-fragments step has already been performed. Signed-off-by: Francesco Valla <valla.francesco@gmail.com> (cherry picked from commit 5d96d634568636aa41faf72356c47f0d04532c87)
2022-07-01Merge pull request #1129 from Freescale/backport-1127-to-dunfellOtavio Salvador
[Backport dunfell] imx-boot: Use public key injected DTB when FIT signature is enabled
2022-07-01imx-boot: Use public key injected DTB when FIT signature is enabledLoic Poulain
When UBOOT_SIGN_ENABLE we want to use the DTB in which mkimage has added the signature node. Signed-off-by: Loic Poulain <loic.poulain@linaro.org> (cherry picked from commit 6824fc6603adfd2b0d4e7ef9d854120eec7b3129)
2022-05-11Merge pull request #1076 from dv1/dunfellOtavio Salvador
libimxdmabuffer, libimxvpuapi2, gstreamer1.0-plugins-imx upgrades and backports for dunfell
2022-05-11gstreamer1.0-plugins-imx: Backport version 2.1.0 from kirkstoneCarlos Rafael Giani
gstreamer1.0-plugins-imx version 0.13 remains preferred by default to maintain compatibility with existing BSPs. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-05-11libimxvpuapi2: Upgrade to version 2.2.1Carlos Rafael Giani
* Add option to not compile examples * imx8m-hantro: Allow for reusing decoder after drain mode finishes * imx6-coda: Reset drain mode after EOS processed * imx6-coda: Reset drain mode flags when flushing * Use libimxdmabuffer 1.1.2 sync access functions to ensure cache coherence * Add imx_vpu_api_is_color_format_10bit() function * Documentation fixes Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-05-11libimxdmabuffer: Upgrade to version 1.1.2Carlos Rafael Giani
* waf: update to 2.0.23 * dma-heap: Add support for uncached dma-heap memory imx_dma_buffer_dma_heap_allocator_new_from_fd() is a new function that partially deprecates the dma_heap_fd argument of imx_dma_buffer_dma_heap_allocator_new(). * Add sync access functions to ensure cache coherency when allocating cached DMA memory; only done by dma-heap allocator at this time * Relax buffer mapping flags checks * Add API functions to retrieve dma-heap / ION FDs Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-04-14Merge pull request #902 from dv1/enable-ion-mmgr-for-imx6-7Otavio Salvador
Enable ION memory manager for i.MX6 and 7
2022-04-14libixmdmabuffer: Enable ION for all imx machinesCarlos Rafael Giani
With the imx6 and imx7 kernel configurations changed to have ION enabled, all imx machines that libimxdmabuffer supports are capable of using ION. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-04-14linux-fslc: Enable ION DMA memory allocator for imx6 and imx7Carlos Rafael Giani
The ION allocator is capable of allocating DMA memory blocks that are accessible through DMA-BUF. No other allocator has this feature, and ION is already enabled on all imx8 variants. In kernel 5.6, the dma-heap allocator is introduced, which replaces ION. Still, since Yocto Dunfell will not get a linux-imx version >= 5.6, enable ION to get a DMABUF-capable allocator also on imx6 and imx7 machines. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-04-14linux-imx: Enable ION DMA memory allocator for imx6 and imx7Carlos Rafael Giani
The ION allocator is capable of allocating DMA memory blocks that are accessible through DMA-BUF. No other allocator has this feature, and ION is already enabled on all imx8 variants. In kernel 5.6, the dma-heap allocator is introduced, which replaces ION. Still, since Yocto Dunfell will not get a linux-imx version >= 5.6, enable ION to get a DMABUF-capable allocator also on imx6 and imx7 machines. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-04-14linux-fslc-imx: Enable ION DMA memory allocator for imx6 and imx7Carlos Rafael Giani
The ION allocator is capable of allocating DMA memory blocks that are accessible through DMA-BUF. No other allocator has this feature, and ION is already enabled on all imx8 variants. In kernel 5.6, the dma-heap allocator is introduced, which replaces ION. Still, since Yocto Dunfell will not get a linux-imx version >= 5.6, enable ION to get a DMABUF-capable allocator also on imx6 and imx7 machines. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-04-11Merge pull request #1044 from jpuhlman/dunfell-fixOtavio Salvador
linux-qoriq: Fix task order of merge_delta_config task
2022-04-11linux-qoriq: Fix task order of merge_delta_config taskOtavio Salvador
The merge_delta_config must run before do_kernel_localversion task, which is what fsl-kernel-localversion now use. Fixes: #721. Fixes: 49299998 ("classes: fsl-kernel-localversion: Fix task dependency") Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> (cherry picked from commit 33653d391b7f8bd9f932e613da46c2f61f2fc336) Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
2022-03-31Merge pull request #1025 from dv1/dunfellOtavio Salvador
libimxdmabuffer: Fix allocator packageconfigs for mx8qm and mx8qxp SoCs
2022-03-31libimxdmabuffer: Fix allocator packageconfigs for mx8qm and mx8qxp SoCsCarlos Rafael Giani
The i.MX8 QuadMax and QuadXPlus SoCs can use the ION allocator. Also, if there is a DPU, then G2D will be emulated via the DPU. However, the emulation's allocation functions are broken, so disable the G2D allocator then. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2022-02-25Merge pull request #988 from Freescale/backport-986-to-dunfellOtavio Salvador
[Backport dunfell] linux-imx-headers: whitelist version.h header (Fixes Hantro VPU for honister/master)
2022-02-25linux-imx-headers: whitelist version.h headerGary Bisson
As some recipes, like imx-vpu-hantro, need to know the imx kernel version instead of the toolchain header version. As an example, Honister toolchain uses 5.14 kernel headers. In that case, imx-vpu-hantro believes it needs to use dmabuf allocation mechanism although this latter will only be enabled in upcoming NXP kernel 5.15. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> (cherry picked from commit a1c7e7bb6b141c81f8430087d236eab1e0dbb428)
2022-01-24Merge pull request #960 from ↵Otavio Salvador
danielbatw/dunfell_backport_imx-boot_fix_for_spi-nor imx-boot: Add dependency on xxd-native
2022-01-24imx-boot: Add dependency on xxd-nativeNathan Rossi
The fspi_packer.sh script uses xxd in order to generate the SPI flash configuration header. If xxd is missing no error is produced and the output image does not work. The log however contains the following error messages (e.g. for iMX8MP flash_evk_flexspi target): ./../scripts/fspi_packer.sh ../scripts/fspi_header ./../scripts/fspi_packer.sh: 5: xxd: not found dd: failed to open 'qspi-header': No such file or directory 3333+1 records in 3333+1 records out 3413776 bytes (3.4 MB, 3.3 MiB) copied, 0.00566483 s, 603 MB/s dd: failed to open 'qspi-header.off': No such file or directory cp: cannot stat 'qspi-header.off': No such file or directory rm: cannot remove 'qspi-header*': No such file or directory F(Q)SPI IMAGE PACKED xxd is not in HOSTTOOLS or HOSTTOOLS_NONFATAL, as such the explicit DEPENDS is required. Signed-off-by: Nathan Rossi <nathan.rossi@digi.com> (cherry picked from commit 71a0623ada456790778213a0ea2bb6b1535bd069)
2022-01-19Merge pull request #949 from mnme/kernel-upgrade-dunfellOtavio Salvador
[dunfell]: linux-fslc Kernel update (up to v5.4.172)
2022-01-18linux-fslc: update to v5.4.172Nicolas Jeker
Kernel repository has been upgraded up to v5.4.172 from stable korg. Following upstream commits are included in this version: ---- b7f70762d158 Linux 5.4.172 f415409551b0 staging: greybus: fix stack size warning with UBSAN 65c2e7176f77 drm/i915: Avoid bitwise vs logical OR warning in snb_wm_latency_quirk() 86ded7a6cf40 staging: wlan-ng: Avoid bitwise vs logical OR warning in hfa384x_usb_throttlefn() a459686f986c media: Revert "media: uvcvideo: Set unique vdev name based in type" 7e07bedae159 random: fix crash on multiple early calls to add_bootloader_randomness() 517ab153f503 random: fix data race on crng init time 90ceecdaa062 random: fix data race on crng_node_pool a4fa4377c91b can: gs_usb: gs_can_start_xmit(): zero-initialize hf->{flags,reserved} e90a7524b5c8 can: gs_usb: fix use of uninitialized variable, detach device on reception of invalid USB data 9e9241d3345a drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) functions ada3805f1423 mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() d08a0a88db88 veth: Do not record rx queue hint in veth_xmit a6722b497401 mmc: sdhci-pci: Add PCI ID for Intel ADL 1199f0928488 USB: Fix "slab-out-of-bounds Write" bug in usb_hcd_poll_rh_status 43aac50196f3 USB: core: Fix bug in resuming hub's handling of wakeup requests ed5c2683b67b Bluetooth: bfusb: fix division by zero in send path 784e873af3dc Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() ad07b60837b2 workqueue: Fix unbind_workers() VS wq_worker_running() race ---- Link: https://lore.kernel.org/r/20220114081541.465841464@linuxfoundation.org # 5.4.172 Link: https://github.com/Freescale/linux-fslc/pull/525 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.171Nicolas Jeker
Kernel repository has been upgraded up to v5.4.171 from stable korg. Following upstream commits are included in this version: ---- 0a4ce4977bbe Linux 5.4.171 0101f118529d mISDN: change function names to avoid conflicts 34821931e18e atlantic: Fix buff_ring OOB in aq_ring_rx_clean 44065cc11797 net: udp: fix alignment problem in udp4_seq_show() 0ad45baead37 ip6_vti: initialize __ip6_tnl_parm struct in vti6_siocdevprivate 8b36aa5af4da scsi: libiscsi: Fix UAF in iscsi_conn_get_param()/iscsi_conn_teardown() 6a3ffcc9ffd0 usb: mtu3: fix interval value for intr and isoc f0e57098243c ipv6: Do cleanup if attribute validation fails in multipath route c94999cfbbbe ipv6: Continue processing multipath route even if gateway attribute is invalid 2a6a811a45fd phonet: refcount leak in pep_sock_accep db0c834abbc1 rndis_host: support Hytera digital radios 72eb522ae6f1 power: reset: ltc2952: Fix use of floating point literals 159eaafee69b power: supply: core: Break capacity loop 102af6edfd3a xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate 10f2c336929d net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 c0db2e1e60c6 sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc bcbfc7780047 batman-adv: mcast: don't send link-local multicast to mcast routers 76936ddb4913 lwtunnel: Validate RTA_ENCAP_TYPE attribute length 2ebd777513d9 ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route a02d2be7eb48 ipv6: Check attribute length for RTA_GATEWAY in multipath route 34224e936a9d ipv4: Check attribute length for RTA_FLOW in multipath route 125d91f07233 ipv4: Check attribute length for RTA_GATEWAY in multipath route 1f46721836ee i40e: Fix incorrect netdev's real number of RX/TX queues f98acd3b4dcf i40e: Fix for displaying message regarding NVM version c340d45148c4 i40e: fix use-after-free in i40e_sync_filters_subtask() 38fbb1561d66 mac80211: initialize variable have_higher_than_11mbit 7646a340b25b RDMA/uverbs: Check for null return of kmalloc_array 5eb5d9c6591d RDMA/core: Don't infoleak GRH fields 415fc3f59595 iavf: Fix limit of total number of queues to active queues of VF 23ebe9cfda5e ieee802154: atusb: fix uninit value in atusb_set_extended_addr aa171d748a36 tracing: Tag trace_percpu_buffer as a percpu pointer db50ad6eec87 tracing: Fix check for trace_percpu_buffer validity in get_trace_buf() cbbed1338d76 selftests: x86: fix [-Wstringop-overread] warn in test_process_vm_readv() 6904679c8400 Input: touchscreen - Fix backport of a02dcde595f7cbd240ccd64de96034ad91cffc40 6e80d2ee44c6 f2fs: quota: fix potential deadlock ---- Link: https://lore.kernel.org/r/20220110071815.647309738@linuxfoundation.org # 5.4.171 Link: https://github.com/Freescale/linux-fslc/pull/520 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.170Nicolas Jeker
Kernel repository has been upgraded up to v5.4.170 from stable korg. Following upstream commits are included in this version: ---- 047dedaa38ce Linux 5.4.170 2c3920c58e03 perf script: Fix CPU filtering of a script's switch events fe5838c22b98 net: fix use-after-free in tw_timer_handler 46556c4ecd63 Input: spaceball - fix parsing of movement data packets 975774ea7528 Input: appletouch - initialize work before device registration 436f6d0005d6 scsi: vmw_pvscsi: Set residual data length conditionally 103b16a8c51f binder: fix async_free_space accounting for empty parcels 98cde4dd5ec8 usb: mtu3: set interval of FS intr and isoc endpoint 585e2b244dda usb: mtu3: fix list_head check warning 50434eb6098f usb: mtu3: add memory barrier before set GPD's HWO 240fc586e83d usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. 20d80640fa61 xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. b364fcef9615 uapi: fix linux/nfc.h userspace compilation errors 245c5e43cd25 nfc: uapi: use kernel size_t to fix user-space builds 9e4a3f47eff4 i2c: validate user data in compat ioctl a7d3a1c6d9d9 fsl/fman: Fix missing put_device() call in fman_port_probe 2dc95e936414 net/ncsi: check for error return from call to nla_put_u32 ef01d63140f5 selftests/net: udpgso_bench_tx: fix dst ip argument 20f6896787c5 net/mlx5e: Fix wrong features assignment in case of error b85f87d30dba ionic: Initialize the 'lif->dbid_inuse' bitmap 1cd4063dbc91 NFC: st21nfca: Fix memory leak in device probe and remove 44cd64aa1c43 net: lantiq_xrx200: fix statistics of received bytes 3477f4b67ee4 net: usb: pegasus: Do not drop long Ethernet frames 831de271452b sctp: use call_rcu to free endpoint 3218d6bd6195 selftests: Calculate udpgso segment count without header adjustment 0a2e9f6a8f33 udp: using datalen to cap ipv6 udp max gso segments db484d35a948 net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources cc926b8f4d39 scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() 44937652afdb selinux: initialize proto variable in selinux_ip_postroute_compat() b536e357e73c recordmcount.pl: fix typo in s390 mcount regex 8d86b486e0de memblock: fix memblock_phys_alloc() section mismatch error 4606bfdaeb16 platform/x86: apple-gmux: use resource_size() with res 930d4986a432 tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). 7978ddae240b Input: i8042 - enable deferred probe quirk for ASUS UM325UA f93d5dca7d84 Input: i8042 - add deferred probe support 940e68e57ab6 tee: handle lookup of shm with reference count 0 4b38b12092b4 HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option 4ca2eaf1d477 Linux 5.4.169 48c76fc53582 phonet/pep: refuse to enable an unbound pipe a5c6a13e9056 hamradio: improve the incomplete fix to avoid NPD ef5f7bfa19e3 hamradio: defer ax25 kfree after unregister_netdev df8f79bcc2e4 ax25: NPD bug when detaching AX25 device 0333eaf38500 hwmon: (lm90) Do not report 'busy' status bit as alarm bf260ff4a42f hwmom: (lm90) Fix citical alarm status for MAX6680/MAX6681 f373298e1bf0 pinctrl: mediatek: fix global-out-of-bounds issue bf04afb6137f mm: mempolicy: fix THP allocations escaping mempolicy restrictions f5db6bc93494 KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state 06c13e039d92 usb: gadget: u_ether: fix race in setting MAC address in setup phase b0406b5ef4e2 f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() 806142c805ca tee: optee: Fix incorrect page free bug 5478b90270a3 ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling 1c3d4122bec6 mmc: core: Disable card detect during shutdown e9db8fc6c7af mmc: sdhci-tegra: Fix switch to HS400ES mode d9031ce0b071 pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines c7b2e5850ba6 x86/pkey: Fix undefined behaviour with PKRU_WD_BIT ddc1d49e10a7 parisc: Correct completer in lws start 8467c8cb94a4 ipmi: fix initialization when workqueue allocation fails 8efd6a3391f7 ipmi: ssif: initialize ssif_info->client early cd24bafefc17 ipmi: bail out if init_srcu_struct fails 5525d80dc9dd Input: atmel_mxt_ts - fix double free in mxt_read_info_block 737a98d91b07 ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 8df036befbc3 ALSA: drivers: opl3: Fix incorrect use of vp->state fdaf41977d77 ALSA: jack: Check the return value of kstrdup() 44c743f63dd3 hwmon: (lm90) Drop critical attribute support for MAX6654 4615c9740575 hwmon: (lm90) Introduce flag indicating extended temperature support c2242478f28d hwmon: (lm90) Add basic support for TI TMP461 d939660eff62 hwmon: (lm90) Add max6654 support to lm90 driver 055ca98d48ba hwmon: (lm90) Fix usage of CONFIG2 register in detect function a7f95328c6f0 Input: elantech - fix stack out of bound access in elantech_change_report_id() e12dcd4aa7f4 sfc: falcon: Check null pointer of rx_queue->page_ring c11a41e26985 drivers: net: smc911x: Check for error irq 5d556b1437e1 fjes: Check for error irq d7024080db82 bonding: fix ad_actor_system option setting to default 992649b8b168 ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module 2460d96c19a8 net: skip virtio_net_hdr_set_proto if protocol already set 621d5536b452 net: accept UFOv6 packages in virtio_net_hdr_to_skb 0b01c51c4f47 qlcnic: potential dereference null pointer of rx_queue->page_ring 685fc8d22489 netfilter: fix regression in looped (broad|multi)cast's MAC handling 79dcbd817615 IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() 78874bca4f27 spi: change clk_disable_unprepare to clk_unprepare 0c0ac2547c87 arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode 6fa4e2992717 HID: holtek: fix mouse probing 2712816c10b3 serial: 8250_fintek: Fix garbled text for console 51c925a9bccc net: usb: lan78xx: add Allied Telesis AT29M2-AF 8f843cf57202 Linux 5.4.168 0d99b3c6bd39 xen/netback: don't queue unlimited number of packages 8bfcd0385211 xen/netback: fix rx queue stall detection 560e64413b4a xen/console: harden hvc_xen against event channel storms 3e68d099f09c xen/netfront: harden netfront against event channel storms 4ed9f5c511ce xen/blkfront: harden blkfront against event channel storms 192fe5739571 Revert "xsk: Do not sleep in poll() when need_wakeup set" e281b7199236 net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info 96a1550a2b43 mac80211: fix regression in SSN handling of addba tx 66aba15a144a rcu: Mark accesses to rcu_state.n_force_qs b847ecff8507 scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() f9f300a92297 ovl: fix warning in ovl_create_real() ba2a9d8f8ef1 fuse: annotate lock in fuse_reverse_inval_entry() 96f182c9f48b media: mxl111sf: change mutex_init() location 095ad3969b62 xsk: Do not sleep in poll() when need_wakeup set 29e9fdf7b681 ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name f6e9e7be9b80 Input: touchscreen - avoid bitwise vs logical OR warning 3d45573dfb6e mwifiex: Remove unnecessary braces from HostCmd_SET_SEQ_NO_BSS_INFO a19cf6844b50 mac80211: validate extended element ID is present e070c0c990d7 drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE c9ee8144e409 libata: if T_LENGTH is zero, dma direction should be DMA_NONE 62889094939c timekeeping: Really make sure wall_to_monotonic isn't positive 241d36219aaa USB: serial: option: add Telit FN990 compositions d2bb4378e2bb USB: serial: cp210x: fix CP2105 GPIO registration bae7f0808202 usb: xhci: Extend support for runtime power management for AMD's Yellow carp. 3dc6b5f2a4d5 PCI/MSI: Mask MSI-X vectors only on success c520e7cf82ac PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error ed31692a9758 USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) aae3448b78d9 USB: gadget: bRequestType is a bitfield, not a enum ad0ed314d616 sit: do not call ipip6_dev_free() from sit_init_net() c675256a7f13 net: systemport: Add global locking for descriptor lifecycle 2bf888fa4a5c net/smc: Prevent smc_release() from long blocking 56a6ffea18c2 net: Fix double 0x prefix print in SKB dump 027a13973dad net/packet: rx_owner_map depends on pg_vec 699e794c12a3 netdevsim: Zero-initialize memory for new map's value in function nsim_bpf_map_alloc a97e7dd4b713 ixgbe: set X550 MDIO speed before talking to PHY 8addba6cab94 igbvf: fix double free in `igbvf_probe` 36844e250a2e igb: Fix removal of unicast MAC filters of VFs bca4a53ea72c soc/tegra: fuse: Fix bitwise vs. logical OR warning 166f0adf7e75 rds: memory leak in __rds_conn_create() 9cb405ee5334 flow_offload: return EOPNOTSUPP for the unsupported mpls action type 066a637d1ce7 net: sched: lock action when translating it to flow_action infra e7660f9535ad mac80211: fix lookup when adding AddBA extension element f363af7c7045 mac80211: accept aggregation sessions on 6 GHz 1e6526148149 mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock ceb30f48d817 mac80211: agg-tx: refactor sending addba eeaf9c0609e0 selftest/net/forwarding: declare NETIFS p9 p10 2252220d9ebb dmaengine: st_fdma: fix MODULE_ALIAS 18203fe17643 selftests: Fix IPv6 address bind tests b46f0afa74e7 selftests: Fix raw socket bind tests with VRF 7b5596e53125 inet_diag: fix kernel-infoleak for UDP sockets 2c589cf07bd5 inet_diag: use jiffies_delta_to_msecs() 0d80462fbdca sch_cake: do not call cake_destroy() from cake_init() 2fba53ccfb1b s390/kexec_file: fix error handling when applying relocations b380bf012d2b selftests: net: Correct ping6 expected rc from 2 to 1 ec5c00be7836 clk: Don't parent clks until the parent is fully registered f83ed203c822 ARM: socfpga: dts: fix qspi node compatible 46b9e29db201 mac80211: track only QoS data frames for admission control a6f18191c6c1 arm64: dts: rockchip: fix audio-supply for Rock Pi 4 86f2789e3c15 arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply 4bb01424330d arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas-edge e0759696de68 nfsd: fix use-after-free due to delegation race 7243aa71509a iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda 0d3277eabd54 audit: improve robustness of the audit queue handling 501ecd90efdc dm btree remove: fix use after free in rebalance_children() b25e213522f6 recordmcount.pl: look for jgnop instruction as well as bcrl on s390 c0954f1010ad virtio_ring: Fix querying of maximum DMA mapping size for virtio device 802a1a850156 firmware: arm_scpi: Fix string overflow in SCPI genpd driver 33f0dfab3187 mac80211: send ADDBA requests using the tid/queue of the aggregation session 873e664a83ef mac80211: mark TX-during-stop for TX in in_reconfig ff3e3fdc737a KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE e8ef940326ef Linux 5.4.167 c97579584fa8 arm: ioremap: don't abuse pfn_valid() to check if pfn is in RAM 6026d4032dbb arm: extend pfn_valid to take into account freed memory map alignment 492f4d3cde95 memblock: ensure there is no overflow in memblock_overlaps_region() bdca964781a0 memblock: align freed memory map on pageblock boundaries with SPARSEMEM 60111b30be0b memblock: free_unused_memmap: use pageblock units instead of MAX_ORDER 3e8e272805e7 hwmon: (dell-smm) Fix warning on /proc/i8k creation error f6f1d1911492 bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc b06b1f46306a selinux: fix race condition when computing ocontext SIDs 2fb8e4267c47 KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req 467359957ad2 tracing: Fix a kmemleak false positive in tracing_map fb8cd2b336e4 drm/amd/display: add connector type check for CRC source set 8fc2f28e3348 drm/amd/display: Fix for the no Audio bug with Tiled Displays c0315e93552e net: netlink: af_netlink: Prevent empty skb by adding a check on len. 7ff666e6fdc0 i2c: rk3x: Handle a spurious start completion interrupt flag 409ecd029ac5 parisc/agp: Annotate parisc agp init functions with __init 4233fbd459ac net/mlx4_en: Update reported link modes for 1/10G b6158d968b3e drm/msm/dsi: set default num_data_lanes d731ecc6f2ea nfc: fix segfault in nfc_genl_dump_devices_done c32c40ff8092 Linux 5.4.166 eb1b5eaaddec netfilter: selftest: conntrack_vrf.sh: fix file permission 7f70428f0109 Linux 5.4.165 3a99b4baff3c bpf: Add selftests to cover packet access corner cases b8a2c49aa956 misc: fastrpc: fix improper packet size calculation 8f9a25e452f8 irqchip: nvic: Fix offset for Interrupt Priority Offsets 61981e5fee6d irqchip/irq-gic-v3-its.c: Force synchronisation when issuing INVALL fc20091b3f97 irqchip/armada-370-xp: Fix support for Multi-MSI interrupts a3689e694b39 irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() 8c163a142771 iio: accel: kxcjk-1013: Fix possible memory leak in probe and remove 20f0fb418b6c iio: ad7768-1: Call iio_trigger_notify_done() on error b68f44829b73 iio: adc: axp20x_adc: fix charging current reporting on AXP22x e79d86de1e96 iio: at91-sama5d2: Fix incorrect sign extension 5f3d932f91cb iio: dln2: Check return value of devm_iio_trigger_register() 7447f0450825 iio: dln2-adc: Fix lockdep complaint 4c0fa7ed5a3a iio: itg3200: Call iio_trigger_notify_done() on error e67d60c5ebb0 iio: kxsd9: Don't return error code in trigger handler f143cfdccfc9 iio: ltr501: Don't return error code in trigger handler acf0088ac073 iio: mma8452: Fix trigger reference couting 02553e971255 iio: stk3310: Don't return error code in interrupt handler 1374297ccf61 iio: trigger: stm32-timer: fix MODULE_ALIAS 1dadba28a829 iio: trigger: Fix reference counting ec0cddcc2454 xhci: avoid race between disable slot command and host runtime suspend 8d45969ca31a usb: core: config: using bit mask instead of individual bits d1eee0a3936f xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime suspending d2f242d7a9ce usb: core: config: fix validation of wMaxPacketValue entries 9978777c5409 USB: gadget: zero allocate endpoint 0 buffers fd6de5a0cd42 USB: gadget: detect too-big endpoint 0 requests 46d3477cdef3 selftests/fib_tests: Rework fib_rp_filter_test() caff29d1129c net/qla3xxx: fix an error code in ql_adapter_up() 4aa28ac9373c net, neigh: clear whole pneigh_entry at alloc time f23f60e81af2 net: fec: only clear interrupt of handling queue in fec_enet_rx_queue() 05bc4d266eaf net: altera: set a couple error code in probe() 84a890d6959e net: cdc_ncm: Allow for dwNtbOutMaxSize to be unset or zero e9ca63a07dd3 tools build: Remove needless libpython-version feature check that breaks test-all fast path 49e59d514408 dt-bindings: net: Reintroduce PHY no lane swap binding b78a27fa58cc mtd: rawnand: fsmc: Fix timing computation 7596d0deec7f mtd: rawnand: fsmc: Take instruction delay into account 9f88ca269c41 i40e: Fix pre-set max number of queues for VF 171527da8414 i40e: Fix failed opcode appearing if handling messages from VF ee8bfa62bf79 ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer 43dcb79c1d9b qede: validate non LSO skb length 727858a98ac9 block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) 9ba5635cfad7 tracefs: Set all files to the same group ownership as the mount option 4105e6a128e8 aio: fix use-after-free due to missing POLLFREE handling 380185111fa8 aio: keep poll requests on waitqueue until completed aac8151624b6 signalfd: use wake_up_pollfree() 1a478a0522e5 binder: use wake_up_pollfree() e0c03d15cd03 wait: add wake_up_pollfree() 6db0db1657cb libata: add horkage for ASMedia 1092 050ac9da6768 x86/sme: Explicitly map new EFI memmap table as encrypted 9f5b334ee654 can: m_can: Disable and ignore ELO interrupt abb4eff3dcd2 can: pch_can: pch_can_rx_normal: fix use after free 291a164ac1f3 drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. f53b73953ff8 clk: qcom: regmap-mux: fix parent clock lookup e871f89ebfe2 tracefs: Have new files inherit the ownership of their parent f5734b1714ca nfsd: Fix nsfd startup race (again) 412498e9e54b btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling aa4740bc8595 btrfs: clear extent buffer uptodate when we fail to write it 434927e938ce ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() 76f19e4cbb54 ALSA: pcm: oss: Limit the period size to 16MB f12c8a7515f6 ALSA: pcm: oss: Fix negative period/buffer sizes 5b06fa0cd2be ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform caaea6bd3e18 ALSA: ctl: Fix copy of updated id with element read/write a7ea5c099ad4 mm: bdi: initialize bdi_min_ratio when bdi is unregistered b8a79804056b IB/hfi1: Correct guard on eager buffer deallocation ab1be91cf1ec iavf: Fix reporting when setting descriptor count c21bb711d0fb iavf: restore MSI state on reset c8ae8c812e16 udp: using datalen to cap max gso segments ef8804e47c0a seg6: fix the iif in the IPv6 socket control block 2e0e072e62fd nfp: Fix memory leak in nfp_cpp_area_cache_add() 3db6482523ea bonding: make tx_rebalance_counter an atomic 143ceb9b6736 ice: ignore dropped packets during init 4174bd4221c2 bpf: Fix the off-by-two error in range markings 15f987473d33 vrf: don't run conntrack on vrf with !dflt qdisc 8d3563ecbca3 selftests: netfilter: add a vrf+conntrack testcase 48fcd08fdbe0 nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done 1a295fea90e1 can: sja1000: fix use after free in ems_pcmcia_add_card() fbcb12bc9dbf can: kvaser_pciefd: kvaser_pciefd_rx_error_frame(): increase correct stats->{rx,tx}_errors counter 68daa476f499 can: kvaser_usb: get CAN clock frequency from device a7944962ee1f HID: check for valid USB device for many HID drivers e9114b9dc8ea HID: wacom: fix problems when device is not a valid USB device 8e0ceff632f4 HID: bigbenff: prevent null pointer dereference 31520ec149d2 HID: add USB_HID dependancy on some USB HID drivers f8a6538587b4 HID: add USB_HID dependancy to hid-chicony ee8477d1dbce HID: add USB_HID dependancy to hid-prodikeys 6e1e0a014258 HID: add hid_is_usb() function to make it simpler for USB detection 1e8db541c2be HID: google: add eel USB id cb7b13c98218 HID: quirks: Add quirk for the Microsoft Surface 3 type-cover f99b2013793f ntfs: fix ntfs_test_inode and ntfs_init_locked_inode function type eb246f58e1fc serial: tegra: Change lower tolerance baud rate limit for tegra20 and tegra30 e3c95128def1 Linux 5.4.164 5df7d6a012fc ipmi: msghandler: Make symbol 'remove_work_wq' static 5d1e83fffbc9 net/tls: Fix authentication failure in CCM mode cffd7583c92e parisc: Mark cr16 CPU clocksource unstable on all SMP machines 23b40edec832 iwlwifi: mvm: retry init flow if failed 8d6e4b422d0c serial: 8250_pci: rewrite pericom_do_set_divisor() 181cf7622ce2 serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array c5da8aa44105 serial: core: fix transmit-buffer reset and memleak 7ed4a98a174c serial: pl011: Add ACPI SBSA UART match id 9e16682c94ec tty: serial: msm_serial: Deactivate RX DMA for polling support b5dd5a467ec6 x86/64/mm: Map all kernel memory into trampoline_pgd 72736a3b90ef x86/tsc: Disable clocksource watchdog for TSC on qualified platorms fe3cd48420cd x86/tsc: Add a timer to make sure TSC_adjust is always checked 957a203fe1b7 usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect 7fbde744374e USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub 095a39a2cc27 xhci: Fix commad ring abort, write all 64 bits to CRCR register. caedb12c7737 vgacon: Propagate console boot parameters before calling `vc_resize' a42944686249 parisc: Fix "make install" on newer debian releases fbe7eacab7eb parisc: Fix KBUILD_IMAGE for self-extracting kernel c6a9060be53f sched/uclamp: Fix rq->uclamp_max not set on first enqueue 8ae8ccd2402f KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register ee38eb8cf9a7 ipv6: fix memory leak in fib6_rule_suppress 9d1596282644 drm/msm: Do hw_init() before capturing GPU state 10bad5a1977f net/smc: Keep smc_close_final rc during active close 3f2a23fd13ff net/rds: correct socket tunable error in rds_tcp_tune() 01c60b3f477b ipv4: convert fib_num_tclassid_users to atomic_t efb073981756 net: annotate data-races on txq->xmit_lock_owner bfec04c689af net: marvell: mvpp2: Fix the computation of shared CPUs d4034bb9b532 net: usb: lan78xx: lan78xx_phy_init(): use PHY_POLL instead of "0" if no IRQ is available 3e70e3a72d80 rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() ae8a253f3fe6 selftests: net: Correct case name e461a9816a1a net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() af120fcffd64 siphash: use _unaligned version by default f70c6281eafb net: mpls: Fix notifications when deleting a device bbeb0325a746 net: qlogic: qlcnic: Fix a NULL pointer dereference in qlcnic_83xx_add_rings() 49ab33623107 natsemi: xtensa: fix section mismatch warnings 063d2233623a i2c: cbus-gpio: set atomic transfer callback f5d7bd03f888 i2c: stm32f7: stop dma transfer in case of NACK 9fce2ead76f4 i2c: stm32f7: recover the bus on access timeout bc0215cbd162 i2c: stm32f7: flush TX FIFO upon transfer errors 742a5ae18c5f sata_fsl: fix warning in remove_proc_entry when rmmod sata_fsl 77393806c76b sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl 03d4462ba3bc fget: check that the fd still exists after getting a ref to it a78b607e1b43 s390/pci: move pseudo-MMIO to prevent MIO overlap 006edd736dc8 cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() 648813c26d64 ipmi: Move remove_work to dedicated workqueue 3f8f7eef8c32 rt2x00: do not mark device gone on EPROTO errors during start c2e2ccaac3d9 kprobes: Limit max data_size of the kretprobe instances 03ee5e8c63c3 vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit f82013d1d68f net/smc: Avoid warning of possible recursive locking df5990db088d perf report: Fix memory leaks around perf_tip() b380d09e44e8 perf hist: Fix memory leak of a perf_hpp_fmt 57247f703539 net: ethernet: dec: tulip: de4x5: fix possible array overflows in type3_infoblock() 77ff16690945 net: tulip: de4x5: fix the problem that the array 'lp->phy[8]' may be out of bound 99bb25cb6753 ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port() 0f89c59e75ac ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile 36c8f686956d scsi: iscsi: Unblock session then wake up error handler dbbc8aeaf7a1 thermal: core: Reset previous low and high trip during thermal zone init ebc8aed3b9eb btrfs: check-integrity: fix a warning on write caching disabled disk 5db28ea9f1a4 s390/setup: avoid using memblock_enforce_memory_limit 5d93fc221c5d platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep 96274948989c net: return correct error code 89d15a2e40d7 atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait d6e981ec9491 net/smc: Transfer remaining wait queue entries during fallback a1671b224bc0 mac80211: do not access the IV when it was stripped 3200cf7b9b7e drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY 7ef990365059 gfs2: Fix length of holes reported at end-of-file fe915dbd0f83 can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM fb158a26544c arm64: dts: mcbin: support 2W SFP modules 39b3b131d10d of: clk: Make <linux/of_clk.h> self-contained aad716bd144a NFSv42: Fix pagecache invalidation after COPY/CLONE ---- Link: https://lore.kernel.org/r/20220104073839.317902293@linuxfoundation.org # 5.4.170 Link: https://github.com/Freescale/linux-fslc/pull/514 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.163Nicolas Jeker
Kernel repository has been upgraded up to v5.4.163 from stable korg. Following upstream commits are included in this version: ---- 57899c4e26bf Linux 5.4.163 6c728efe164f tty: hvc: replace BUG_ON() with negative return value c3024e1945fe xen/netfront: don't trust the backend response data blindly 828b1d3861a1 xen/netfront: disentangle tx_skb_freelist 5b757077dacd xen/netfront: don't read data from request on the ring page 5c374d830e1b xen/netfront: read response from backend only once 3456a07614b1 xen/blkfront: don't trust the backend response data blindly 6392f51a9d2e xen/blkfront: don't take local copy of a request from the ring page ce011335cb42 xen/blkfront: read response from backend only once 61826a7884cb xen: sync include/xen/interface/io/ring.h with Xen's newest version 54f682cd4849 fuse: release pipe buf after last use eff32973ecc3 NFC: add NCI_UNREG flag to eliminate the race 43788453983e shm: extend forced shm destroy to support objects from several IPC nses b23c0c4c9e0a s390/mm: validate VMA in PGSTE manipulation functions 3c9a213e0edb tracing: Check pid filtering when creating events dda227cccf14 vhost/vsock: fix incorrect used length reported to the guest 2eacc0acf6ea smb3: do not error on fsync when readonly 51be334da375 f2fs: set SBI_NEED_FSCK flag when inconsistent node block found 3ceecea047c2 net: mscc: ocelot: correctly report the timestamping RX filters in ethtool ee4e3f9d3dd7 net: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP 0ea2e5497b8c net: hns3: fix VF RSS failed problem after PF enable multi-TCs 3b961640399b net/smc: Don't call clcsock shutdown twice when smc shutdown 5e44178864b3 net: vlan: fix underflow for the real_dev refcnt 296139e1de16 MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 9f5838471aed igb: fix netpoll exit with traffic 25980820c4f0 nvmet: use IOCB_NOWAIT only if the filesystem supports it d54662a91faa tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited flows 562fe6a6d2c5 PM: hibernate: use correct mode for swsusp_close() 2654e6cfc483 net/ncsi : Add payload to be 32-bit aligned to fix dropped packets 080f6b694ef1 nvmet-tcp: fix incomplete data digest send 6c0ab2caa8d1 net/smc: Ensure the active closing peer first closes clcsock 7854de57be29 scsi: core: sysfs: Fix setting device state to SDEV_RUNNING 67a6f64a0c84 net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group cca61bb17042 net: ipv6: add fib6_nh_release_dsts stub ddd0518c1e09 nfp: checking parameter process for rx-usecs/tx-usecs is invalid b638eb32c64d ipv6: fix typos in __ip6_finish_output() 8029ced6d775 iavf: Prevent changing static ITR values if adaptive moderation is on 4374e414fcbf drm/vc4: fix error code in vc4_create_object() 7e324f734a91 scsi: mpt3sas: Fix kernel panic during drive powercycle test dc9eb93d5a0a ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE a078967dd34b NFSv42: Don't fail clone() unless the OP_CLONE operation failed ce50e97a06bd firmware: arm_scmi: pm: Propagate return value to caller 7360abf31ce0 net: ieee802154: handle iftypes as u32 4421a196fdaf ASoC: topology: Add missing rwsem around snd_ctl_remove() calls 76867d0cb83f ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer a848a22e9434 ARM: dts: BCM5301X: Add interrupt properties to GPIO node 03f7379e2c69 ARM: dts: BCM5301X: Fix I2C controller interrupt 17a763eab714 netfilter: ipvs: Fix reuse connection if RS weight is 0 fd7974c547ab proc/vmcore: fix clearing user buffer by properly using clear_user() 66d6eacba7a6 arm64: dts: marvell: armada-37xx: Set pcie_reset_pin to gpio function 3a4baf070c6a pinctrl: armada-37xx: Correct PWM pins definitions 086226048bcd PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge 7c517d7b8898 PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge 44b2776a9307 PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated bridge bbc6201152fb PCI: aardvark: Fix link training 3d770a20950b PCI: aardvark: Simplify initialization of rootcap on virtual bridge a06ace0d317d PCI: aardvark: Implement re-issuing config requests on CRS response 75faadcc3a0e PCI: aardvark: Fix PCIe Max Payload Size setting c697885a1281 PCI: aardvark: Configure PCIe resources from 'ranges' DT property e3c51ac70aae PCI: pci-bridge-emul: Fix array overruns, improve safety ea6eef03dafb PCI: aardvark: Update comment about disabling link training fe8a8c3a408e PCI: aardvark: Move PCIe reset card code to advk_pcie_train_link() 14311e77c93e PCI: aardvark: Fix compilation on s390 93491c5d26f7 PCI: aardvark: Don't touch PCIe registers if no card connected 8b0f7b8b7839 PCI: aardvark: Replace custom macros by standard linux/pci_regs.h macros e090b2e2708e PCI: aardvark: Issue PERST via GPIO 0ad291db2d01 PCI: aardvark: Improve link training 063a98c00528 PCI: aardvark: Train link immediately after enabling training bbe213fd12fb PCI: aardvark: Fix big endian support 5551081d845e PCI: aardvark: Wait for endpoint to be ready before training link 65d962199b7f PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() 57c7d46e8b1d mdio: aspeed: Fix "Link is Down" issue e466278662be mmc: sdhci: Fix ADMA for PAGE_SIZE >= 64KiB e09e868c6341 tracing: Fix pid filtering when triggers are attached f5bbebfd7ca1 tracing/uprobe: Fix uprobe_perf_open probes iteration 5c895828f421 KVM: PPC: Book3S HV: Prevent POWER7/8 TLB flush flushing SLB 4f1adc3f572a xen: detect uninitialized xenbus in xenbus_init 173fe1aedf67 xen: don't continue xenstore initialization in case of errors 2e1ec01af2c7 staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() e72e981d16fc staging/fbtft: Fix backlight 9b406e39e539 HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts c03ad97293d2 Revert "parisc: Fix backtrace to always include init funtion names" 4a6f918a92b0 media: cec: copy sequence field for the reply 8d0b9ea19174 ALSA: ctxfi: Fix out-of-range access aaa83768ba39 binder: fix test regression due to sender_euid change d797fde8644a usb: hub: Fix locking issues with address0_mutex 4b354aeea431 usb: hub: Fix usb enumeration issue due to address0 race d00bf013aed2 usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts 7b6f44856da5 net: nexthop: fix null pointer dereference when IPv6 is not enabled 9ad421aedc55 usb: dwc2: hcd_queue: Fix use of floating point literal e44a934f9e04 usb: dwc2: gadget: Fix ISOC flow for elapsed frames c2e05c4ed8a3 USB: serial: option: add Fibocom FM101-GL variants ee034eae9d9b USB: serial: option: add Telit LE910S1 0x9200 composition 9334f48f5673 Linux 5.4.162 46a8e16fcf2c ALSA: hda: hdac_stream: fix potential locking issue in snd_hdac_stream_assign() 293385739d68 ALSA: hda: hdac_ext_stream: fix potential locking issues 201340ca4eb7 hugetlbfs: flush TLBs correctly after huge_pmd_unshare e7891b22b251 tlb: mmu_gather: add tlb_flush_*_range APIs 10e34766d8ac ice: Delete always true check of PF pointer 101485e566ce usb: max-3421: Use driver data instead of maintaining a list of bound devices 4e1b3e718f24 ASoC: DAPM: Cover regression by kctl change notification fix 56a32c82761a batman-adv: Don't always reallocate the fragmentation skb head 08bceb1e30c2 batman-adv: Reserve needed_*room for fragments 374c55d416ab batman-adv: Consider fragmentation for needed_headroom 9eff9854f82d perf/core: Avoid put_page() when GUP fails e0122ea133cd Revert "net: mvpp2: disable force link UP during port init procedure" 4efa2509d3aa drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga and dvi connectors c0276de0be48 drm/i915/dp: Ensure sink rate values are always valid 1c4af56ffbfb drm/nouveau: use drm_dev_unplug() during device removal 9e98622aa508 drm/udl: fix control-message timeout 52affc201fc2 cfg80211: call cfg80211_stop_ap when switch from P2P_GO type ca9834a1148b parisc/sticon: fix reverse colors 670f6b3867c8 btrfs: fix memory ordering between normal and ordered work functions 1c3882215946 udf: Fix crash after seekdir f79957d274b0 s390/kexec: fix memory leak of ipl report buffer b0e44dfb4e4c x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails f2e0cd42f198 mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag 95de3703a1d0 ipc: WARN if trying to remove ipc object which is absent 8997bb6d1ecc hexagon: export raw I/O routines for modules 01a7ecd36d1e tun: fix bonding active backup with arp monitoring 7c8f778f0a3a arm64: vdso32: suppress error message for 'make mrproper' e636f65b3d8f s390/kexec: fix return code handling cc093e5a966d perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server cc63a789d80d perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server 47a810817823 KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() 307d2e6cebfc NFC: reorder the logic in nfc_{un,}register_device da3a87eeb990 drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame e418bb556ff8 NFC: reorganize the functions in nci_request bbb8376d58ac i40e: Fix display error code in dmesg 69e5d27af579 i40e: Fix creation of first queue by omitting it if is not power of two 5564e9129f1f i40e: Fix ping is lost after configuring ADq on VF 8509178dc001 i40e: Fix changing previously set num_queue_pairs for PFs c30162da9132 i40e: Fix NULL ptr dereference on VSI filter sync 0a0308af22a5 i40e: Fix correct max_pkt_size on VF RX queue fb2dbc124a7f net: virtio_net_hdr_to_skb: count transport header in UFO d74ff10ed2d9 net: dpaa2-eth: fix use-after-free in dpaa2_eth_remove 8b2c66b0f2a0 net: sched: act_mirred: drop dst for the direction from egress to ingress edd783162bf2 scsi: core: sysfs: Fix hang when device state is set via sysfs 446882f216ac platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' 453b5b614b93 mips: lantiq: add support for clk_get_parent() 477653f3e4e4 mips: bcm63xx: add support for clk_get_parent() 426fed211b49 MIPS: generic/yamon-dt: fix uninitialized variable error 67334abd4fb7 iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset 98f3badc414f iavf: validate pointers 92cecf349121 iavf: prevent accidental free of filter structure 63f032a956ed iavf: Fix failure to exit out from last all-multicast mode 926e8c83d4c1 iavf: free q_vectors before queues in iavf_disable_vf f0222e7eee0c iavf: check for null in iavf_fix_features b5638bc64a69 net: bnx2x: fix variable dereferenced before check fbba0692ec4b perf tests: Remove bash construct from record+zstd_comp_decomp.sh 9e0df711f8db perf bench futex: Fix memory leak of perf_cpu_map__new() 642fc22210a5 perf bpf: Avoid memory leak from perf_env__insert_btf() 6bf5523090a7 RDMA/netlink: Add __maybe_unused to static inline in C file ef82c3716a5a tracing/histogram: Do not copy the fixed-size char array field over the field size 80b777606925 tracing: Save normal string variables 8928e31a776a sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() a93a58bae950 mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set 05311b9192be clk: qcom: gcc-msm8996: Drop (again) gcc_aggre1_pnoc_ahb_clk ee1317e1f4b0 clk/ast2600: Fix soc revision for AHB d6c32b4c83f6 clk: ingenic: Fix bugs with divided dividers 982d31ba5533 sh: define __BIG_ENDIAN for math-emu 214cd15d3675 sh: math-emu: drop unused functions 3d774e776f68 sh: fix kconfig unmet dependency warning for FRAME_POINTER 7727659e45f8 f2fs: fix up f2fs_lookup tracepoints d7c612f6b1f3 maple: fix wrong return value of maple_bus_init(). 9823ba8f17f8 sh: check return code of request_irq 94292e4577a2 powerpc/dcr: Use cmplwi instead of 3-argument cmpli c6d2cefdd05c ALSA: gus: fix null pointer dereference on pointer block 513543f1eda1 powerpc/5200: dts: fix memory node unit name 3a9eae47a550 iio: imu: st_lsm6dsx: Avoid potential array overflow in st_lsm6dsx_set_odr() a3ecee8a8fd7 scsi: target: Fix alua_tg_pt_gps_count tracking 14934afd4f5d scsi: target: Fix ordered tag handling 1ab3b4f4f46f MIPS: sni: Fix the build d491c84df5c4 tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc 80709beddb8d ALSA: ISA: not for M68K 2f8cda43c415 ARM: dts: ls1021a-tsn: use generic "jedec,spi-nor" compatible for flash 723c1af01c35 ARM: dts: ls1021a: move thermal-zones node out of soc/ f98986b7acb4 usb: host: ohci-tmio: check return value after calling platform_get_resource() e187c2f3f25e ARM: dts: omap: fix gpmc,mux-add-data type 3b9d8d3e4af2 firmware_loader: fix pre-allocated buf built-in firmware use cc248790bfdc scsi: advansys: Fix kernel pointer leak bcc1eac0bd49 ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect c9428e13417d clk: imx: imx6ul: Move csi_sel mux to correct base register e5f8c43c8546 ASoC: SOF: Intel: hda-dai: fix potential locking issue cb074c00b71a arm64: dts: freescale: fix arm,sp805 compatible string a14d7038ea20 arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency 30dcfcda8992 usb: typec: tipd: Remove WARN_ON in tps6598x_block_read 3ee15f1af174 usb: musb: tusb6010: check return value after calling platform_get_resource() ba9579f832bd RDMA/bnxt_re: Check if the vlan is valid before reporting bf6a633b0736 arm64: dts: hisilicon: fix arm,sp805 compatible string 16bcbfb56d75 scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() 51c94d6aee59 ARM: dts: NSP: Fix mpcore, mmc node names 1390f32ea964 arm64: zynqmp: Fix serial compatible string 31df0f0f1882 arm64: zynqmp: Do not duplicate flash partition label property 5c088fba39af Linux 5.4.161 b786cb3236e1 erofs: fix unsafe pagevec reuse of hooked pclusters 83de35ae27a1 erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() b37f6da8c3fc PCI: Add MSI masking quirk for Nvidia ION AHCI db1390b60e89 PCI/MSI: Deal with devices lying about their MSI mask capability 49b55a7792ec PCI/MSI: Destroy sysfs before freeing entries 7186be970c11 parisc/entry: fix trace test in syscall exit path 258c42a8fb31 fortify: Explicitly disable Clang support 4f9a3cda1660 scsi: ufs: Fix tm request when non-fatal error happens c468f9249d84 ext4: fix lazy initialization next schedule time computation in more granular unit 307c6f728728 MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL 7be773a0288e scsi: ufs: Fix interrupt error message for shared interrupts e3c97ba4a69e soc/tegra: pmc: Fix imbalanced clock disabling in error code path ---- Link: https://lore.kernel.org/r/20211129181707.392764191@linuxfoundation.org # 5.4.163 Link: https://github.com/Freescale/linux-fslc/pull/507 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.160Nicolas Jeker
Kernel repository has been upgraded up to v5.4.160 from stable korg. Following upstream commits are included in this version: ---- 17efa1a44c7f Linux 5.4.160 66bd28d6be90 selftests/bpf: Fix also no-alu32 strobemeta selftest e7ea088cd030 ath10k: fix invalid dma_addr_t token assignment 20a951afb7d5 SUNRPC: Partial revert of commit 6f9f17287e78 5b7a0a4f7cbe PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros 256a1e009b9b powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload fe02d37870c9 s390/cio: make ccw_device_dma_* more robust 8a8d007bae0e s390/tape: fix timer initialization in tape_std_assign() 5ef14af16629 s390/cio: check the subchannel validity for dev_busid b0989ae51d01 video: backlight: Drop maximum brightness override for brightness zero 66938ba12857 mm, oom: do not trigger out_of_memory from the #PF d6648b55ed39 mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks c6f9a5c11a91 powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC 453b779d2b8f powerpc/security: Add a helper to query stf_barrier type 84b3fbfd8ed8 powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 7edda4bd9eb9 powerpc/bpf: Validate branch ranges 0347c001c909 powerpc/lib: Add helper to check if offset is within conditional branch range c4461ca7a835 ovl: fix deadlock in splice write 8d750efc8dd6 9p/net: fix missing error check in p9_check_errors aba12bb38b10 net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE 223985fa1b5f f2fs: should use GFP_NOFS for directory inodes af73b240e09e irqchip/sifive-plic: Fixup EOI failed when masked 53014c1c4162 parisc: Fix set_fixmap() on PA1.x CPUs 645d6dfdcb0b parisc: Fix backtrace to always include init funtion names 62c4e0a3d81a ARM: 9156/1: drop cc-option fallbacks for architecture selection 61a5e446bbff ARM: 9155/1: fix early early_iounmap() dc3357424610 selftests/net: udpgso_bench_rx: fix port argument dd3a418ba5e6 cxgb4: fix eeprom len when diagnostics not implemented 1800c9eecd5e net/smc: fix sk_refcnt underflow on linkdown and fallback b2d1b6624bde vsock: prevent unnecessary refcnt inc for nonblocking connect 72aca95f958e net: hns3: allow configure ETS bandwidth of all TCs 07b218db54a4 net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any 18f2809441ef bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding 180a9b539cf6 arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions 572599cbf17a nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails c1d5f943bbc3 llc: fix out-of-bound array index in llc_sk_dev_hash() bdf94057aae6 perf bpf: Add missing free to bpf_event__print_bpf_prog_info() 23def86bbf71 zram: off by one in read_block_state() d26835de40db mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() 46d695e870c4 bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed dce69e0a065d ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses 700602b662d7 net: vlan: fix a UAF in vlan_dev_real_dev() 98e0ab88f435 net: davinci_emac: Fix interrupt pacing disable 70ecaadb49c2 xen-pciback: Fix return in pm_ctrl_init() 7f57b9bc8ee6 i2c: xlr: Fix a resource leak in the error handling path of 'xlr_i2c_probe()' 53ad06ff3b4e NFSv4: Fix a regression in nfs_set_open_stateid_locked() c9dcb51ae473 scsi: qla2xxx: Turn off target reset during issue_lip 211f08d1ffc8 scsi: qla2xxx: Fix gnl list corruption 9b180f3c2d92 ar7: fix kernel builds for compiler test 59e97c74d159 watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT 162a1cfcd5ca m68k: set a default value for MEMORY_RESERVE 9770f8c29f81 signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) 9e6985190f04 dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` fd1de3590123 netfilter: nfnetlink_queue: fix OOB when mac header was cleared 15351d5e8bb4 soc: fsl: dpaa2-console: free buffer before returning from dpaa2_console_read be832f781dc4 auxdisplay: ht16k33: Fix frame buffer device blanking c441943075fd auxdisplay: ht16k33: Connect backlight to fbdev 1fa9803de9e3 auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string e63507ea4369 dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro 04317e74745a mtd: core: don't remove debugfs directory if device is in use 59929f9a573a mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() a83aaf15077e fs: orangefs: fix error return code of orangefs_revalidate_lookup() c79c37c77550 NFS: Fix deadlocks in nfs_scan_commit_list() 5a893e0eab16 opp: Fix return in _opp_add_static_v2() 98ac69821650 PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge 819925eff0c5 PCI: aardvark: Don't spam about PIO Response Status bab1cfec7ae2 drm/plane-helper: fix uninitialized variable reference 4b48c6ede329 pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds 2b2fdb6f4892 rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined bd48bdbfd9c4 apparmor: fix error check a7b294764945 power: supply: bq27xxx: Fix kernel crash on IRQ handler register error 3f698d97f7c5 mips: cm: Convert to bitfield API to fix out-of-bounds access fb7b73cd9418 powerpc/44x/fsp2: add missing of_node_put d3dd1a057c9a HID: u2fzero: properly handle timeouts in usb_submit_urb b216a39b3212 HID: u2fzero: clarify error check and length calculations fae0552d83ff serial: xilinx_uartps: Fix race condition causing stuck TX 818e100c2bf4 phy: qcom-qusb2: Fix a memory leak on probe de43e75917bc ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER f00ff5357b61 ASoC: cs42l42: Correct some register default values baf5c1225eb2 ARM: dts: stm32: fix SAI sub nodes register range bb74ce1feb36 staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC 73aaa6222ac7 RDMA/mlx4: Return missed an error if device doesn't support steering 20dfad97dbd6 scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() 5ead6f4feaa7 power: supply: rt5033_battery: Change voltage values to µV fdbe8e8a08bf usb: gadget: hid: fix error code in do_config() 15355466cded serial: 8250_dw: Drop wrong use of ACPI_PTR() d8241e7a2144 video: fbdev: chipsfb: use memset_io() instead of memset() e7df004eb14e clk: at91: check pmc node status before registering syscore ops 44a2dcd146dc memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe 03fe35ce9a0e soc/tegra: Fix an error handling path in tegra_powergate_power_up() 543d85602f9c arm: dts: omap3-gta04a4: accelerometer irq fix 7cf7d9b83d79 ALSA: hda: Reduce udelay() at SKL+ position reporting d1cf71d79e00 JFS: fix memleak in jfs_mount 56911ee5375f MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT ee49b6598cfb scsi: dc395: Fix error case unwinding dd49dee254db ARM: dts: at91: tse850: the emac<->phy interface is rmii 1df7102f265b arm64: dts: meson-g12a: Fix the pwm regulator supply properties 681c58f34434 RDMA/bnxt_re: Fix query SRQ failure 50eca29537b0 ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY 863e71a3afb7 arm64: dts: rockchip: Fix GPU register width for RK3328 6694960195b7 ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() d27580c1b027 clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths 9212ebb1c6d8 RDMA/rxe: Fix wrong port_cap_flags cf234bc5fbd8 ibmvnic: Process crqs after enabling interrupts bc4061648176 ibmvnic: don't stop queue in xmit a91c8ee2ed84 udp6: allow SO_MARK ctrl msg to affect routing 9ff14503f498 selftests/bpf: Fix fclose/pclose mismatch in test_progs af51aa2b8586 crypto: pcrypt - Delay write to padata->info 9be9cb2a2be4 net: phylink: avoid mvneta warning when setting pause parameters 077410c7907c net: amd-xgbe: Toggle PLL settings during rate change 63a3b1af0474 drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits 9ca0d107428b wcn36xx: add proper DMA memory barriers in rx path a3256ae45b0d libertas: Fix possible memory leak in probe and disconnect 427583b93d5a libertas_tf: Fix possible memory leak in probe and disconnect 2339ff4162a6 KVM: s390: Fix handle_sske page fault handling 3f3b4054e214 samples/kretprobes: Fix return value if register_kretprobe() failed 9435b2f9c006 tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() a8226599cbab irq: mips: avoid nested irq_enter() ae5a24464872 s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() 8fb436d146c7 libbpf: Fix BTF data layout checks and allow empty BTF 03a818c09677 smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi 12ccb5737925 drm/msm: Fix potential NULL dereference in DPU SSPP dc18f0806297 clocksource/drivers/timer-ti-dm: Select TIMER_OF c523474f2a45 PM: hibernate: fix sparse warnings 0d22f55014d2 nvme-rdma: fix error code in nvme_rdma_setup_ctrl 67ba6c8e715f phy: micrel: ksz8041nl: do not use power down mode ae213c059a8b mwifiex: Send DELBA requests according to spec 3a781e213164 rsi: stop thread firstly in rsi_91x_init() error handling ad4cd0130757 mt76: mt76x02: fix endianness warnings in mt76x02_mac.c bdbc9311f10f platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning 3446e5ecdf91 block: ataflop: fix breakage introduced at blk-mq refactoring 2918a29fc8ba mmc: mxs-mmc: disable regulator on error and in the remove function b631c603b5fb net: stream: don't purge sk_error_queue in sk_stream_kill_queues() f27fbff86280 drm/msm: uninitialized variable in msm_gem_import() 32ac072c24b5 ath10k: fix max antenna gain unit 218fb43ffff0 hwmon: (pmbus/lm25066) Let compiler determine outer dimension of lm25066_coeff 8384c4a7bcb3 hwmon: Fix possible memleak in __hwmon_device_register() f7fd072039d6 net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE 9498f5272a44 memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() 5f462b38ce7a memstick: avoid out-of-range warning 3a7525d5d7bf mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured dc73f7cae11d b43: fix a lower bounds test 1b6365fdae77 b43legacy: fix a lower bounds test c51ac7fd0256 hwrng: mtk - Force runtime pm ops for sleep ops 52d2cdab5288 crypto: qat - disregard spurious PFVF interrupts 4d7881430ffb crypto: qat - detect PFVF collision after ACK a3d3f9c5dca3 media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() 73dd601bec0d netfilter: nft_dynset: relax superfluous check on set updates 62f6260f7065 EDAC/amd64: Handle three rank interleaving mode f399e650c095 ath9k: Fix potential interrupt storm on queue reset 843ff688eb83 media: em28xx: Don't use ops->suspend if it is NULL e577924b7021 cpuidle: Fix kobject memory leaks in error paths 18fdbdbecf72 crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency a993159a2ad0 kprobes: Do not use local variable when creating debugfs file 71411bd79e24 media: cx23885: Fix snd_card_free call on null card pointer 1c2c8030e7eb media: tm6000: Avoid card name truncation 61266f852fb5 media: si470x: Avoid card name truncation 4e65b9ec2158 media: radio-wl1273: Avoid card name truncation 8eeec127d5cf media: mtk-vpu: Fix a resource leak in the error handling path of 'mtk_vpu_probe()' 2b9ae7bac92e media: TDA1997x: handle short reads of hdmi info frame. 23b65152a069 media: dvb-usb: fix ununit-value in az6027_rc_query e2b2d221a446 media: cxd2880-spi: Fix a null pointer dereference on error handling path f46da0c6af3a media: em28xx: add missing em28xx_close_extension 14f3d77c770d drm/amdgpu: fix warning for overflow check 465dc8a1b1c1 ath10k: Fix missing frame timestamp for beacon/probe-resp 7c12c2fe4568 net: dsa: rtl8366rb: Fix off-by-one bug 674637270edd rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() d4cd7a167c87 crypto: caam - disable pkc for non-E SoCs 555fe5734d39 Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync 8c68d12f1a37 wilc1000: fix possible memory leak in cfg_scan_result() 1713b856345d cgroup: Make rebind_subsystems() disable v2 controllers all at once bd76ec43f14e net: net_namespace: Fix undefined member in key_remove_domain() 3a37742128ea virtio-gpu: fix possible memory allocation failure 606c95078a4e drm/v3d: fix wait for TMU write combiner flush 6a93d8ebb8aa rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() 6237a1685c28 Bluetooth: fix init and cleanup of sco_conn.timeout_work 28c1d965622f selftests/bpf: Fix strobemeta selftest regression f2c04d46c8de netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream state 0c2acfede5ac parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling cbe28724277c parisc/unwind: fix unwinder when CONFIG_64BIT is enabled a9a411adcac8 task_stack: Fix end_of_stack() for architectures with upwards-growing stack c06cf3b1d049 parisc: fix warning in flush_tlb_all 732441923321 x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted ad67a7e2ab13 spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() a15fc58933aa btrfs: do not take the uuid_mutex in btrfs_rm_device aba1db41dde7 net: annotate data-race in neigh_output() 2f78cb7eccb6 vrf: run conntrack only in context of lower/physdev for locally generated packets 5919f02e185b ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 d99f320a1b7e gre/sit: Don't generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE 9929b3db46c9 ARM: clang: Do not rely on lr register for stacktrace 681a426e6ba4 smackfs: use __GFP_NOFAIL for smk_cipso_doi() 4752a9c3a079 iwlwifi: mvm: disable RX-diversity in powersave 41e583edb1d2 selftests: kvm: fix mismatched fclose() after popen() 4411d0d8df2b PM: hibernate: Get block device exclusively in swsusp_check() a528d3aac3ef nvme: drop scan_lock and always kick requeue list when removing namespaces 209c39b3f5e9 nvmet-tcp: fix use-after-free when a port is removed 81d11e40fdbb nvmet: fix use-after-free when a port is removed 1ec1ca2be9c6 block: remove inaccurate requeue check bfde056402c7 mwl8k: Fix use-after-free in mwl8k_fw_state_machine() e4af3e42ba1e tracing/cfi: Fix cmp_entries_* functions signature mismatch caeb6bae7553 workqueue: make sysfs of unbound kworker cpumask more clever 58b4e0c075d5 lib/xz: Validate the value before assigning it to an enum variable 8cdab20660f0 lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression eb8f087201b5 memstick: r592: Fix a UAF bug when removing the driver 2226ad031436 leaking_addresses: Always print a trailing newline 63c3c7b699d2 ACPI: battery: Accept charges over the design capacity as full 2efb81b22d2d iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value d5fb057f2364 ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() e2c27194fcd9 tracefs: Have tracefs directories not set OTH permission bits by default ace6e7fe9645 net-sysfs: try not to restart the syscall if it will fail eventually d8d1d3540561 media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() 382e7b6458e4 media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info e5f9be486976 media: ipu3-imgu: imgu_fmt: Handle properly try cdf338e1dbf1 ACPICA: Avoid evaluating methods too early during system resume 9ff00d0b1d35 ipmi: Disable some operations during a panic 4bba26f89e66 media: rcar-csi2: Add checking to rcsi2_start_receiver() c08a655ed938 brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet f64551db5299 ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK 31b784864736 media: mceusb: return without resubmitting URB in case of -EPROTO error. e419469adfd4 media: imx: set a media_device bus_info string b2b2f9178250 media: s5p-mfc: Add checking to s5p_mfc_probe(). 6b8ab552e24c media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() bc4af8c782eb media: uvcvideo: Set unique vdev name based in type 7a646855d6a0 media: uvcvideo: Return -EIO for control errors ab7fca0eaefb media: uvcvideo: Set capability in s_param bff0833e2b7a media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() cede36511c3b media: netup_unidvb: handle interrupt properly according to the firmware 3fe3d04354ae media: mt9p031: Fix corrupted frame after restarting stream 08743f9c4801 ath10k: high latency fixes for beacon buffer fadb4cd750f4 mwifiex: Properly initialize private structure on interface type changes 7d3e6635c22a mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type 480c240ab6df x86: Increase exception stack sizes 91b9c23b6d5b smackfs: Fix use-after-free in netlbl_catmap_walk() 31df731c8705 net: sched: update default qdisc visibility after Tx queue cnt changes a82f379378ab locking/lockdep: Avoid RCU-induced noinstr fail f14eca60bf23 MIPS: lantiq: dma: reset correct number of channel ca07aff2575d MIPS: lantiq: dma: add small delay after reset e5ea3dca9497 platform/x86: wmi: do not fail if disabling fails b57df4d6fc13 drm/panel-orientation-quirks: add Valve Steam Deck 67bd269a84ce Bluetooth: fix use-after-free error in lock_sock_nested() d416020f1a9c Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() a52bd11b2410 drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 e5ca76568a61 drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 c19cabfa5537 drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) 46a25b7a25a0 dma-buf: WARN on dmabuf release with pending attachments 1bee9e59c67b USB: chipidea: fix interrupt deadlock 8a643c0f95e8 USB: iowarrior: fix control-message timeouts 32858116748e USB: serial: keyspan: fix memleak on probe errors 8ce0bc6962df iio: dac: ad5446: Fix ad5622_write() return value f01e16d32495 pinctrl: core: fix possible memory leak in pinctrl_enable() 270541cbc056 quota: correct error number in free_dqentry() 10b808307d37 quota: check block number when reading the block in quota file a509a515f378 PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG 0ea58b9bb9cf PCI: aardvark: Fix return value of MSI domain .alloc() method ee9cdca4d61b PCI: aardvark: Fix reporting Data Link Layer Link Active 6f99c7a51e0a PCI: aardvark: Do not unmask unused interrupts d964886327ba PCI: aardvark: Fix checking for link up via LTSSM state e0269c0c81b8 PCI: aardvark: Do not clear status bits of masked interrupts 50b0ce94fbcc PCI: pci-bridge-emul: Fix emulation of W1C bits 3d995568c9bb xen/balloon: add late_initcall_sync() for initial ballooning done 3f6255a91bf3 ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume 6225a31b2eb6 ALSA: mixer: oss: Fix racy access to slots e9adf72bdbd5 serial: core: Fix initializing and restoring termios speed b535b634645f powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found bfefc5d6f953 can: j1939: j1939_can_recv(): ignore messages with invalid source address 94a3f521e3b6 can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport 8e61c799c81e KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use 654a8248169e power: supply: max17042_battery: use VFSOC for capacity when no rsns 11129762e31a power: supply: max17042_battery: Prevent int underflow in set_soc_threshold 625c3ed247e1 signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT ec5ef8d4d795 signal: Remove the bogus sigkill_pending in ptrace_stop 28c70d50363d RDMA/qedr: Fix NULL deref for query_qp on the GSI QP 91a29609bd6f rsi: Fix module dev_oper_mode parameter description 9defe9b1ab34 rsi: fix rate mask set leading to P2P failure 2f1f06be3eb5 rsi: fix key enabled check causing unwanted encryption for vap_id > 0 1fa1da8a60ff rsi: fix occasional initialisation failure with BT coex 398e7e5add0c wcn36xx: handle connection loss indication 4a67355383f3 libata: fix checking of DMA state 6f2f91b9df15 mwifiex: Read a PCI register after writing the TX ring write pointer 3991cdc40fc1 wcn36xx: Fix HT40 capability for 2Ghz band 301d33c95441 evm: mark evm_fixmode as __ro_after_init e1f71a32899a rtl8187: fix control-message timeouts 76d2ce7ca9dc PCI: Mark Atheros QCA6174 to avoid bus reset 3110371c7af6 ath10k: fix division by zero in send path 2b94d10056f9 ath10k: fix control-message timeout cfbe74d8b131 ath6kl: fix control-message timeout 1a2fe1c3d87f ath6kl: fix division by zero in send path 78ebff828a33 mwifiex: fix division by zero in fw download path 08501eb9ff6a EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell a147922924ab regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property c9e5a005960b regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled 3baa5886d128 hwmon: (pmbus/lm25066) Add offset coefficients 98bea923793f ia64: kprobes: Fix to pass correct trampoline address to the handler ddb54bf3b764 btrfs: call btrfs_check_rw_degradable only if there is a missing device 5223324ed1a9 btrfs: fix lost error handling when replaying directory deletes c25984fa182f btrfs: clear MISSING device status bit in btrfs_close_one_device 87a87c82f7f3 net/smc: Correct spelling mistake to TCPF_SYN_RECV cc14499b9dde nfp: bpf: relax prog rejection for mtu check through max_pkt_offset a62d43084165 vmxnet3: do not stop tx queues after netif_device_detach() 17dcecf20ce7 r8169: Add device 10ec:8162 to driver r8169 e84b38e57821 nvmet-tcp: fix header digest verification 2804181e1b91 drm: panel-orientation-quirks: Add quirk for GPD Win3 7273488fd373 watchdog: Fix OMAP watchdog early handling 5ffdddcf28a1 net: multicast: calculate csum of looped-back and forwarded packets 9420e2496d45 spi: spl022: fix Microwire full duplex mode 1a667bc32918 nvmet-tcp: fix a memory leak when releasing a queue 2f3860ba601a xen/netfront: stop tx queues during live migration de649ec7ad84 bpf: Prevent increasing bpf_jit_limit above max df8665c3983e bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT 8dd688ba675a drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 c4282bb80519 mmc: winbond: don't build on M68K 05f0a97e2ff7 reset: socfpga: add empty driver allowing consumers to probe dfa8fb782b52 ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode f09014e8bea8 hyperv/vmbus: include linux/bitops.h 054fe50d2654 sfc: Don't use netif_info before net_device setup 82005afbb30b cavium: Fix return values of the probe function 9f5fd5aab85f scsi: qla2xxx: Fix unmap of already freed sgl 96183337e97d scsi: qla2xxx: Return -ENOMEM if kzalloc() fails 8e3a0d28edb6 cavium: Return negative value when pci_alloc_irq_vectors() fails 58608e80d627 x86/irq: Ensure PI wakeup handler is unregistered before module unload 7252cb96e410 x86/cpu: Fix migration safety with X86_BUG_NULL_SEL e3d4ba338b98 x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c ccc4e5e60b41 fuse: fix page stealing 9505d4872188 ALSA: timer: Unconditionally unlink slave instances, too 2c6446168f07 ALSA: timer: Fix use-after-free problem 246c6a1fe356 ALSA: synth: missing check for possible NULL after the call to kstrdup ce9f7535ec26 ALSA: usb-audio: Add registration quirk for JBL Quantum 400 7da6f4c5c21c ALSA: line6: fix control and interrupt message timeouts 4a12e624e597 ALSA: 6fire: fix control and bulk message timeouts ab3f823af278 ALSA: ua101: fix division by zero at probe a3bb6e0db72b ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED 40243342d297 ALSA: hda/realtek: Add quirk for ASUS UX550VE 8af6ade7ac5e ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N 809416fe0a7a ALSA: hda/realtek: Add quirk for Clevo PC70HS 638b53d67ffc media: v4l2-ioctl: Fix check_ext_ctrls 8c11269bd619 media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers bbd62d2fca94 media: ite-cir: IR receiver stop working after receive overflow eef6cb3d3c92 crypto: s5p-sss - Add error handling in s5p_aes_probe() d7a5d872b414 firmware/psci: fix application of sizeof to pointer 18f0fb57a9fe tpm: Check for integer overflow in tpm2_map_response_body() f38f3da360a6 parisc: Fix ptrace check on syscall return acbc2a08ea7c mmc: dw_mmc: Dont wait for DRTO on Write RSP error 5ee76475f82a scsi: qla2xxx: Fix use after free in eh_abort path cc5b13948838 scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file 617d2fd48da5 ocfs2: fix data corruption on truncate c20eb9551c52 libata: fix read log timeout value 69c2199f49fb Input: i8042 - Add quirk for Fujitsu Lifebook T725 17ec1c6b45a7 Input: elantench - fix misreporting trackpoint coordinates ce4bec0a54a4 Input: iforce - fix control-message timeout db39f49ee7d5 binder: use cred instead of task for getsecid fc9c470cd519 binder: use cred instead of task for selinux checks 28a1e470b000 binder: use euid from cred instead of using task 3e87c4996de1 usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform 3fa7efd1fab1 xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay ---- Link: https://lore.kernel.org/r/20211115165313.549179499@linuxfoundation.org # 5.4.160 Link: https://github.com/Freescale/linux-fslc/pull/501 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.159Nicolas Jeker
Kernel repository has been upgraded up to v5.4.159 from stable korg. Following upstream commits are included in this version: ---- 5915b0ea6746 Linux 5.4.159 abc49cc45d0a rsi: fix control-message timeout 64e6632ab4c1 media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init 6c382b63658e staging: rtl8192u: fix control-message timeouts f66258cb60e4 staging: r8712u: fix control-message timeout 88a252ff782c comedi: vmk80xx: fix bulk and interrupt message timeouts 1ae4715121a5 comedi: vmk80xx: fix bulk-buffer overflow 199acd8c110e comedi: vmk80xx: fix transfer-buffer overflows b0156b7c9649 comedi: ni_usb6501: fix NULL-deref in command paths 3efb7af8ac43 comedi: dt9812: fix DMA buffers on stack 6e80e9314f8b isofs: Fix out of bound access for corrupted isofs image adc56dbfc4aa printk/console: Allow to disable console output by using console="" or console=null 589ac131b3ab binder: don't detect sender/target during buffer cleanup b60e89b63eb9 usb-storage: Add compatibility quirk flags for iODD 2531/2541 5c3eba290479 usb: musb: Balance list entry in musb_gadget_queue 161571745de1 usb: gadget: Mark USB_FSL_QE broken on 64-bit d6013265a779 usb: ehci: handshake CMD_RUN instead of STS_HALT 6d000e1c1625 Revert "x86/kvm: fix vcpu-id indexed array sizes" ---- Link: https://lore.kernel.org/r/20211110182002.206203228@linuxfoundation.org # 5.4.159 Link: https://github.com/Freescale/linux-fslc/pull/496 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.158Nicolas Jeker
Kernel repository has been upgraded up to v5.4.158 from stable korg. Following upstream commits are included in this version: ---- c65356f0f726 Linux 5.4.158 e31d51f8a41f ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" 960b1fdfc39a Revert "drm/ttm: fix memleak in ttm_transfered_destroy" a73ebe514a60 sfc: Fix reading non-legacy supported link modes 6789e4b7593b Revert "usb: core: hcd: Add support for deferring roothub registration" 049849492b77 Revert "xhci: Set HCD flag to defer primary roothub registration" 2461f38384d5 media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() 21fc2bb836e5 net: ethernet: microchip: lan743x: Fix skb allocation failure e02fdd7db471 vrf: Revert "Reset skb conntrack connection..." 1ce287eff9f2 scsi: core: Put LLD module refcnt after SCSI device is released e6de9a8b5b30 Linux 5.4.157 39fb393e2102 perf script: Check session->header.env.arch before using it 472d9354a9ce KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu 07e9a4e1abfe KVM: s390: clear kicked_mask before sleeping again 5919a07d71b1 cfg80211: correct bridge/4addr mode check dba9e632eda0 net: use netif_is_bridge_port() to check for IFF_BRIDGE_PORT 0f5b4c57dc85 sctp: add vtag check in sctp_sf_ootb df527764072c sctp: add vtag check in sctp_sf_do_8_5_1_E_sa 0aa322b5fe70 sctp: add vtag check in sctp_sf_violation d6470c220025 sctp: fix the processing for COOKIE_ECHO chunk 5fe74d5e4d58 sctp: fix the processing for INIT_ACK chunk 5953ee99bab1 sctp: use init_tag from inithdr for ABORT chunk 5395650d154c phy: phy_start_aneg: Add an unlocked version c85b696270db phy: phy_ethtool_ksettings_get: Lock the phy for consistency 0dea6379e273 net/tls: Fix flipped sign in async_wait.err assignment e12b8f3c2b73 net: nxp: lpc_eth.c: avoid hang when bringing interface down b232898c1d4b net: ethernet: microchip: lan743x: Fix dma allocation failure by using dma_set_mask_and_coherent 92507dc1efac net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume fails 3708aa267d67 nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST b1c76f97ad2c RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string 18a012869fa7 net: Prevent infinite while loop in skb_tx_hash() 6422e8471890 net: batman-adv: fix error handling 1cead23c1c0b regmap: Fix possible double-free in regcache_rbtree_exit() 207e6e93e7d6 arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node c29c3295e0e5 RDMA/mlx5: Set user priority for DCT 13ad93a42ce3 nvme-tcp: fix data digest pointer calculation b597b0e2e80b nvmet-tcp: fix data digest pointer calculation d997d4e4365f IB/hfi1: Fix abba locking issue with sc_disable() 0f8cdfff0682 IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields 5f0bfe21c853 tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function bd99782f3ca4 drm/ttm: fix memleak in ttm_transfered_destroy d2c64ebcc76a net: lan78xx: fix division by zero in send path a37c5e70ac24 cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() 590abe5becf5 mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning circuit 07da44b08641 mmc: sdhci: Map more voltage level to SDHCI_POWER_330 0821c5608d80 mmc: dw_mmc: exynos: fix the finding clock sample value 08328d65cb78 mmc: cqhci: clear HALT state after CQE enable 55a3870f4a26 mmc: vub300: fix control-message timeouts e0cfd5159f31 net/tls: Fix flipped sign in tls_err_abort() calls 6a18d155d5b3 Revert "net: mdiobus: Fix memory leak in __mdiobus_register" 9fdcf66ee413 nfc: port100: fix using -ERRNO as command type mask 853f22623dd5 ata: sata_mv: Fix the error handling of mv_chip_id() 6d0b30784fcd Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" b7dfc536db87 usbnet: fix error return code in usbnet_probe() 492140e45d2b usbnet: sanity check for maxpacket 4ba6c163fe64 ipv4: use siphash instead of Jenkins in fnhe_hashfun() 3f439c231a03 ipv6: use siphash in rt6_exception_hash() 1cad781ecf37 powerpc/bpf: Fix BPF_MOD when imm == 1 ca10ddbbabd0 ARM: 9141/1: only warn about XIP address when not compile testing 40cd32945552 ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype 2f7647cc13be ARM: 9134/1: remove duplicate memcpy() definition 9f44f66396f3 ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned ---- Link: https://lore.kernel.org/r/20211104141158.384397574@linuxfoundation.org # 5.4.158 Link: https://github.com/Freescale/linux-fslc/pull/489 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>
2022-01-18linux-fslc: update to v5.4.156Nicolas Jeker
Kernel repository has been upgraded up to v5.4.156 from stable korg. Following upstream commits are included in this version: ---- 89b6869b942b Linux 5.4.156 7cdcaa7c765b pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() a9c4e246f7c3 ARM: 9122/1: select HAVE_FUTEX_CMPXCHG a98c81ab1751 tracing: Have all levels of checks prevent recursion b0feaa8376f5 net: mdiobus: Fix memory leak in __mdiobus_register 0ab35e707462 scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() 9068beaa049a Input: snvs_pwrkey - add clk handling 8de335e8199f ALSA: hda: avoid write to STATESTS if controller is in reset 570bc60dcd00 platform/x86: intel_scu_ipc: Update timeout value in comment 4054b869dc26 isdn: mISDN: Fix sleeping function called from invalid context 5001160d3ed5 ARM: dts: spear3xx: Fix gmac node e9d9ffa19367 net: stmmac: add support for dwmac 3.40a 044fa2afd676 btrfs: deal with errors when checking if a dir entry exists during log replay d49a293b946d gcc-plugins/structleak: add makefile var for disabling structleak e8ef9984418f selftests: netfilter: remove stray bash debug line b7fdebde2c9b netfilter: Kconfig: use 'default y' instead of 'm' for bool config option 285e9210b1fa isdn: cpai: check ctr->cnr to avoid array index out of bound 1f75f8883b4f nfc: nci: fix the UAF of rf_conn_info object 4f5d1c29cfab mm, slub: fix potential memoryleak in kmem_cache_open() a1ec195a1943 mm, slub: fix mismatch between reconstructed freelist depth and cnt 8e25a62e8dab powerpc/idle: Don't corrupt back chain when going idle d0148cfaf89c KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to guest 80bbb0bc3a02 KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() 722e6f6ac818 powerpc64/idle: Fix SP offsets when saving GPRs d6f451f1f60c audit: fix possible null-pointer dereference in audit_filter_rules c974f2f92c31 ASoC: DAPM: Fix missing kctl change notifications 5307a77b7149 ALSA: hda/realtek: Add quirk for Clevo PC50HS 50fc52e5ca59 ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset 0f218ba4c8aa vfs: check fd has read access in kernel_read_file_from_fd() f439d2bcb679 elfcore: correct reference to CONFIG_UML d3a83576378b ocfs2: mount fails with buffer overflow in strlen b05caf023b14 ocfs2: fix data corruption after conversion from inline format bce53fbee948 ceph: fix handling of "meta" errors 151c72bba129 can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes 0ddf781882ac can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with error length a0e47d2833b4 can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv 7e66cfed66f9 can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer 1248582e47a9 can: peak_pci: peak_pci_remove(): fix UAF ea82c2463e22 can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state notification c26dcd1cb8db can: rcar_can: fix suspend/resume 8c5585eae3ae net: enetc: fix ethtool counter name for PM0_TERR c0b0baade9b8 net: stmmac: Fix E2E delay mechanism c4b64011e458 net: hns3: disable sriov before unload hclge layer 472acf1582fd net: hns3: add limit ets dwrr bandwidth cannot be 0 b1f9380ee230 net: hns3: reset DWRR of unused tc to zero 12bdcbc04341 NIOS2: irqflags: rename a redefined register name 599766696f69 net: dsa: lantiq_gswip: fix register definition f49ce82f9b7c lan78xx: select CRC32 83094f8c44cb netfilter: ipvs: make global sysctl readonly in non-init netns ce70ee94dde6 ASoC: wm8960: Fix clock configuration on slave mode 0f5b08ca22e1 dma-debug: fix sg checks in debug_dma_map_sg() 50aefa9acc91 NFSD: Keep existing listeners on portlist error 4a5bf3e729d9 xtensa: xtfpga: Try software restart before simulating CPU reset 31137288b946 xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF d946a39bad58 ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default e7c4819c0b67 tee: optee: Fix missing devices unregister during optee_remove b1e9b4e0f656 net: switchdev: do not propagate bridge updates across bridges 2d22cd048289 parisc: math-emu: Fix fall-through warnings 4f508aa9dd3b Linux 5.4.155 32d2ce0b9499 ionic: don't remove netdev->dev_addr when syncing uc list abaf8e8b9081 r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 a4f7d2246e3b qed: Fix missing error code in qed_slowpath_start() 62d96bb68b4e mqprio: Correct stats in mqprio_dump_class_stats(). fa272e835325 acpi/arm64: fix next_platform_timer() section mismatch error 32ac4ed32b9a drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling 46200989580c drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() f302be08e3de drm/msm: Fix null pointer dereference on pointer edp 0d5ef1e87554 drm/panel: olimex-lcd-olinuxino: select CRC32 9225d57f51e2 platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call ae0993739e14 mlxsw: thermal: Fix out-of-bounds memory accesses 97e6dcb41625 ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() b9352ed9b983 pata_legacy: fix a couple uninitialized variable bugs 2bde4aca56db NFC: digital: fix possible memory leak in digital_in_send_sdd_req() 7ab488d7228a NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() 69b3a13f0d08 nfc: fix error handling of nfc_proto_register() 2731eaac1965 ethernet: s2io: fix setting mac address during resume 4c2eb80fc90b net: encx24j600: check error in devm_regmap_init_encx24j600 0904e1be2a92 net: stmmac: fix get_hw_feature() on old hardware 06251ea8d1d9 net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp 19a01522c5d0 net: korina: select CRC32 32b57d897eff net: arc: select CRC32 2880dc130236 gpio: pca953x: Improve bias setting d88774539539 sctp: account stream padding length for reconf chunk 232c485c6bcd iio: dac: ti-dac5571: fix an error code in probe() 69696951de5a iio: ssp_sensors: fix error code in ssp_print_mcu_debug() 10ecff1522eb iio: ssp_sensors: add more range checking in ssp_parse_dataframe() ac0688bcd151 iio: light: opt3001: Fixed timeout error when 0 lux 3c00d93297ff iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED cf4b39907a82 iio: adc128s052: Fix the error handling path of 'adc128_probe()' 580c09a9ef9e iio: adc: aspeed: set driver data when adc probe. 1904050cacd7 powerpc/xive: Discard disabled interrupts in get_irqchip_state() 5683ed468fa0 x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically 0594f1d048d8 nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells d07571672c90 EDAC/armada-xp: Fix output of uncorrectable error counter dba8834baed3 virtio: write back F_VERSION_1 before validate 1b39a67856cc USB: serial: option: add prod. id for Quectel EG91 41e178c138d9 USB: serial: option: add Telit LE910Cx composition 0x1204 848eac2cb785 USB: serial: option: add Quectel EC200S-CN module support 958e98ca522c USB: serial: qcserial: add EM9191 QDL support 733dcc08e97b Input: xpad - add support for another USB ID of Nacon GC-100 9ab5d539bc97 usb: musb: dsps: Fix the probe error path 278e483dc793 efi: Change down_interruptible() in virt_efi_reset_system() to down_trylock() 27a847dbc962 efi/cper: use stack buffer for error record decoding 6e35a5e9267d cb710: avoid NULL pointer subtraction e71ce4a81ed4 xhci: Enable trust tx length quirk for Fresco FL11 USB controller 01c2dcb67e71 xhci: Fix command ring pointer corruption while aborting a command 7ce7d4a46d6e xhci: guard accesses to ep_state in xhci_endpoint_reset() 783579057c90 mei: me: add Ice Lake-N device id. 9264bd22d701 x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails 10b77e16b35b watchdog: orion: use 0 for unset heartbeat 9acf1c10f1da btrfs: check for error when looking up inode during dir entry replay 625565fd80ae btrfs: deal with errors when adding inode reference during log replay 6e2ac49b21ea btrfs: deal with errors when replaying dir entry during log replay 005a07c9acd6 btrfs: unlock newly allocated extent buffer after error e9f457f056c5 csky: Fixup regs.sr broken in ptrace a6f4ea748aa8 csky: don't let sigreturn play with priveleged bits of status register 98544ca6cbae s390: fix strrchr() implementation 5959e22e0767 nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' 2e41b9c8461f ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW 90cf96afa347 ALSA: hda/realtek - ALC236 headset MIC recording issue 33627fa4db3e ALSA: hda/realtek: Add quirk for Clevo X170KM-G e96079ab1c4e ALSA: hda/realtek: Complete partial device name to avoid ambiguity dd3f04831523 ALSA: seq: Fix a potential UAF by wrong private_free call order 825786f72326 ALSA: usb-audio: Add quirk for VF0770 43d93325265b ovl: simplify file splice ---- Link: https://lore.kernel.org/r/20211025190937.555108060@linuxfoundation.org # 5.4.156 Link: https://github.com/Freescale/linux-fslc/pull/484 Signed-off-by: Nicolas Jeker <n.jeker@gmx.net>