Commit graph

515 commits

Author SHA1 Message Date
Mikhail Novosyolov
f0944c593a upd: 5.10.17 -> 5.10.18 2021-02-23 19:44:33 +03:00
Mikhail Novosyolov
cdc8727f3b Do not compile kernel twice (fix typo) 2021-02-23 17:37:31 +03:00
Mikhail Novosyolov
f6627710b3 Pick fix of some issues in Bluetooth
This patch is applied in Arch Linux kernel and has not been upstreamized yet.
Thanks to tsaruk1van@ for reporting existense of the issue (also with kernel 5.10) and that this fix works.
2021-02-23 01:57:43 +03:00
Mikhail Novosyolov
dd4314d2c8 Disable SOF_NOCODEC which prevented audio from working properly by loading nocodec module (as documented, this option just must not be enabled in distro kernels, as written in Kconfig) 2021-02-23 01:37:59 +03:00
Mikhail Novosyolov
b75353851c Adapt building sign-file with LibreSSL to recent changes
[user@rosa2019 tmp]$ diff -ur linux-5.10.11/scripts/Makefile linux-5.10.17/scripts/Makefile
--- linux-5.10.11/scripts/Makefile      2021-01-27 13:55:30.000000000 +0300
+++ linux-5.10.17/scripts/Makefile      2021-02-17 13:02:30.000000000 +0300
@@ -3,6 +3,9 @@
 # scripts contains sources for various helper programs used throughout
 # the kernel for the build process.

+CRYPTO_LIBS = $(shell pkg-config --libs libcrypto 2> /dev/null || echo -lcrypto)
+CRYPTO_CFLAGS = $(shell pkg-config --cflags libcrypto 2> /dev/null)
+
 hostprogs-always-$(CONFIG_BUILD_BIN2C)                 += bin2c
 hostprogs-always-$(CONFIG_KALLSYMS)                    += kallsyms
 hostprogs-always-$(BUILD_C_RECORDMCOUNT)               += recordmcount
@@ -14,8 +17,10 @@

 HOSTCFLAGS_sorttable.o = -I$(srctree)/tools/include
 HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include
-HOSTLDLIBS_sign-file = -lcrypto
-HOSTLDLIBS_extract-cert = -lcrypto
+HOSTCFLAGS_sign-file.o = $(CRYPTO_CFLAGS)
+HOSTLDLIBS_sign-file = $(CRYPTO_LIBS)
+HOSTCFLAGS_extract-cert.o = $(CRYPTO_CFLAGS)
+HOSTLDLIBS_extract-cert = $(CRYPTO_LIBS)

 ifdef CONFIG_UNWINDER_ORC
 ifeq ($(ARCH),x86_64)
2021-02-22 13:17:43 +03:00
Alexander Stefanov
8afcac7265 5.10.17 2021-02-17 17:50:56 +00:00
Mikhail Novosyolov
d5f2f5a038 upd: 5.4.10 -> 5.4.11 2021-01-27 22:22:05 +03:00
Alexander Stefanov
29c9ae09a8 5.10.10 2021-01-25 14:42:59 +00:00
Mikhail Novosyolov
0714c02863 Lighten protection against violating GPL to be able to build e.g. anbox kernel modules 2021-01-01 19:13:15 +03:00
Mikhail Novosyolov
be1690a0f7 Redrop UML on i586, it is not buildable and mostly useless
error: code model 'large' not supported in the 32 bit mode
2021-01-01 19:11:15 +03:00
Mikhail Novosyolov
7a29d5a563 Restore defconfig for UML and restore UML on i686
There are strange build problems with current config, I don't see sense in spending time on solving them because nobody has actually ever used this UML
vde-devel BR is probably not needed any more, but let's keep it for future...
2020-12-31 14:48:14 +03:00
Mikhail Novosyolov
c25b2095a3 drop UML on i586 to avois doing useless work 2020-12-30 22:31:45 +03:00
Mikhail Novosyolov
9133418d2c Fix BR for User Mode Linux after recent changes in config
/usr/include/libvdeplug.h is needed.
2020-12-30 21:25:08 +03:00
Mikhail Novosyolov
9f71e1f99e Minify build-time changes of configs, ship a config for UML, include all configs into SRPM 2020-12-30 19:56:25 +03:00
Mikhail Novosyolov
d23f37a9c9 upd: 5.10.3 -> 5.10.4, update configs, set more place for additional certificates (just test) 2020-12-30 18:12:31 +03:00
Mikhail Novosyolov
905b60d3c2 Avoid updating cpupower and perf from this not QA'd kernel after I publish it to rosa2016.1/contrib 2020-12-27 23:55:46 +03:00
Mikhail Novosyolov
9c1919cb5b Clean up deps and scriptlets
* the kernel may work OK without WiFi and firmware stuff, make it easy to uninstall it (e.g. when trying to save disk space in a VM)
* sysfsutils is not used in scriptlets, remove it
* symlinks vmlinuz-%{flavour} and initrd-%{flavour}.img have not existed for ages, they were removed lots of time ago in ROSA, there is no sense in trying to delete what does not exist and is never created
2020-12-27 23:46:32 +03:00
Mikhail Novosyolov
5c184f0011 Expicitly force Python3 in perf
Othersie in rosa2016.1 where python points to python2 python3 is not found.
2020-12-27 23:26:55 +03:00
Mikhail Novosyolov
824e9bc9f6 Softly suggest to set BFQ as default scheduler for HDDs 2020-12-27 16:14:09 +03:00
Mikhail Novosyolov
127e763665 upd: 5.10.2 -> 5.10.3 2020-12-27 15:55:00 +03:00
Mikhail Novosyolov
199aa73b37 Tune kernel config:
* disable Atom ISP as recommended by RussianNeuroMancer because it does not make cameras work on x86 Intel-based tablets where cameras are connected on i2c bus, but makes the camera consome power without working
* enable zswap by default and use the default allocator as in Arch Linux where zswap is enabled by default
  https://wiki.archlinux.org/index.php/Zswap
* tune values of sysctls from le9 patch to make it have at least some effect on typical desktop and server systems but avoid too agressive OOM killer on systems with 2 GB RAM and less where OOM killer kills too many process
  See discussion and my comments in the thread https://www.linux.org.ru/news/kernel/16052362
* remove not used variant of the patch which did not have any effect
2020-12-27 15:53:42 +03:00
Mikhail Novosyolov
24a4eefc34 test another version of le9 from pf-kernel maintainer 2020-12-26 19:53:02 +03:00
Mikhail Novosyolov
b62e019833 Test another le9 patch, I did not see affect of the previous one 2020-12-25 15:29:02 +03:00
Mikhail Novosyolov
bcdf18427e Experimental le9 patch
My variant, based on https://paste.rs/aNR.diff from https://www.linux.org.ru/news/kernel/16052362

TODO: add patch description
2020-12-24 02:13:54 +03:00
Mikhail Novosyolov
adeaa6a457 upd: 5.10.1 -> 5.10.2 2020-12-23 22:39:11 +03:00
Mikhail Novosyolov
1466db4534 Update configs
Update existing x86 configs manually
Make an arm64 config based on them instead on the old one which was temporary copypasted from ALT Linux

In most cases I answered to `make ARCH=xxx defconfig` like this:
N/y -> Y
N/m(/y) -> M
Y/n(/m) -> Y
M/n(/y) -> M
But did not enable odd debug.

Probably too much hardware is enabled on arm64.
2020-12-22 00:21:19 +03:00
Mikhail Novosyolov
5488a28d4b Update from 5.4 to 5.10.1
- rediffed most of patches, renamed files to easify further rediffs by git format-patch
- thanks to abf.io/kernels_stable for some patches for kernel 5.9
- using unofficial patch for AUFS for kernel 5.10, there may be issues with stability, try to avoid using AUFS (I would have dropped it, but MagOS wants it very much)
- pulled updates of AltHa from http://git.altlinux.org/gears/k/kernel-image-un-def.git?p=kernel-image-un-def.git;a=history;f=security/altha;hb=HEAD
- dropped patch adding sysctl to disable disk-based swap because it has not found any usage
- bpf is now in the list of LSM modules (ability to write LSM modules as BPF programs), enable it, it is potentially useful and does not seem to be harmful
- keeping kernel libc headers in older kernels for now
- dropped building external virtualbox guest modules because they are now included into the mainline kernel
- offed building VirtualBox host modules, I do not know how to keep these binary modules in sync with userspace part of VirtualBox, users can continue using dkms
- offed building kernel-shredder because it is not buildable on kernel 5.10
- updated rtl8821ce and added a dependency from its "blacklist" subpackage here (see https://github.com/tomaspinho/rtl8821ce/commit/14b536f0)

It is not clear if kernel 5.10 will receive an LTS support longer than 5.4 or not. Support until Dec, 2022 is declared right now at https://www.kernel.org/category/releases.html for 5.10 and until Dec, 2025 - for 5.4.

TODO: update kernel configs
TODO: solve problems with version of virtualbox host modules not matching version of the virtualbox package after virtualbox is updated but kernel is not rebuilt
2020-12-21 21:09:17 +03:00
Mikhail Novosyolov
cdf9863011 Reenable debug
Commit e2c112e4 disabled it, but debuginfo must exist.
2020-12-12 17:47:57 +03:00
alexander stefanov
34a09b7478 add more werror=0 2020-12-11 19:39:08 +00:00
alexander stefanov
6e0e21189d fix perf 2020-12-11 19:07:24 +00:00
Mikhail Novosyolov
a182d5061a upd: 5.4.81 -> 5.4.83 2020-12-11 20:46:44 +03:00
Mikhail Novosyolov
0c1710739f Fix hostname BR for rosa2016.1 2020-12-03 15:12:38 +03:00
Mikhail Novosyolov
c18d9f0320 upd: 5.4.80 -> 5.4.81
Changelog:

```
$ wget -qO- https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.81 | grep ^Date: -A2 | grep -v ^Date: | sort -u
    arch: pgtable: define MAX_POSSIBLE_PHYSMEM_BITS where needed
    arm64: pgtable: Ensure dirty bit is preserved across pte_wrprotect()
    arm64: pgtable: Fix pte_accessible()
    arm64: tegra: Wrong AON HSP reg property size
    ARM: dts: dra76x: m_can: fix order of clocks
    ARM: OMAP2+: Manage MPU state properly for omap_enter_idle_coupled()
    ASoC: Intel: Allow for ROM init retry on CNL platforms
    ASoC: Intel: Multiple I/O PCM format support for pipe
    ASoC: Intel: Skylake: Automatic DMIC format configuration according to information from NHLT
    ASoC: Intel: Skylake: Await purge request ack on CNL
    ASoC: Intel: Skylake: Enable codec wakeup during chip init
    ASoC: Intel: Skylake: Remove superfluous chip initialization
    ASoC: Intel: Skylake: Select hda configuration permissively
    ASoC: Intel: Skylake: Shield against no-NHLT configurations
    batman-adv: set .owner to THIS_MODULE
    bnxt_en: fix error return code in bnxt_init_board()
    bnxt_en: fix error return code in bnxt_init_one()
    bnxt_en: Release PCI regions when DMA mask setup fails during probe.
    btrfs: don't access possibly stale fs_info data for printing duplicate device
    btrfs: fix lockdep splat when reading qgroup config on mount
    btrfs: tree-checker: add missing return after error in root_item
    btrfs: tree-checker: add missing returns after data_ref alignment checks
    bus: ti-sysc: Fix bogus resetdone warning on enable for cpsw
    can: gs_usb: fix endianess problem with candleLight firmware
    can: m_can: fix nominal bitiming tseg2 min for version >= 3.1
    can: m_can: m_can_open(): remove IRQF_TRIGGER_FALLING from request_threaded_irq()'s flags
    cifs: fix a memleak with modefromsid
    cxgb4: fix the panic caused by non smac rewrite
    dmaengine: pl330: _prep_dma_memcpy: Fix wrong burst size
    dmaengine: xilinx_dma: use readl_poll_timeout_atomic variant
    efi: EFI_EARLYCON should depend on EFI
    efivarfs: revert "fix memory leak in efivarfs_create()"
    HID: add HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE for Gamevice devices
    HID: Add Logitech Dinovo Edge battery quirk
    HID: add support for Sega Saturn
    HID: cypress: Support Varmilo Keyboards' media hotkeys
    HID: hid-sensor-hub: Fix issue with devices with no report ID
    HID: ite: Replace ABS_MISC 120/121 events with touchpad on/off keypresses
    HID: logitech-hidpp: Add HIDPP_CONSUMER_VENDOR_KEYS quirk for the Dinovo Edge
    HID: uclogic: Add ID for Trust Flex Design Tablet
    i40e: Fix removing driver while bare-metal VFs pass traffic
    IB/mthca: fix return value of error branch in mthca_init_cq()
    ibmvnic: fix call_netdevice_notifiers in do_reset
    ibmvnic: fix NULL pointer dereference in ibmvic_reset_crq
    ibmvnic: fix NULL pointer dereference in reset_sub_crq_queues
    ibmvnic: notify peers when failover and migration happen
    Input: i8042 - allow insmod to succeed on devices without an i8042 controller
    ipv4: use IS_ENABLED instead of ifdef
    irqchip/exiu: Fix the index of fwspec for IRQ type
    iwlwifi: mvm: write queue_sync_state only for sync
    KVM: arm64: vgic-v3: Drop the reporting of GICR_TYPER.Last for userspace
    KVM: PPC: Book3S HV: XIVE: Fix possible oops when accessing ESB page
    KVM: x86: Fix split-irqchip vs interrupt injection window request
    KVM: x86: handle !lapic_in_kernel case in kvm_cpu_*_extint
    Linux 5.4.81
    net: dsa: mv88e6xxx: Wait for EEPROM done after HW reset
    net: ena: set initial DMA width to avoid intel iommu issue
    netfilter: clear skb->next in NF_HOOK_LIST()
    nfc: s3fwrn5: use signed integer for parsing GPIO numbers
    nvme: free sq/cq dbbuf pointers when dbbuf set fails
    optee: add writeback to valid memory type
    perf probe: Fix to die_entrypc() returns error correctly
    perf stat: Use proper cpu for shadow stats
    perf/x86: fix sysfs type mismatches
    phy: tegra: xusb: Fix dangling pointer on probe failure
    platform/x86: thinkpad_acpi: Send tablet mode switch at wakeup time
    platform/x86: toshiba_acpi: Fix the wrong variable assignment
    powerpc/64s: Fix allnoconfig build since uaccess flush
    proc: don't allow async path resolution of /proc/self components
    RDMA/hns: Bugfix for memory window mtpt configuration
    RDMA/hns: Fix retry_cnt and rnr_cnt when querying QP
    s390/qeth: fix af_iucv notification race
    s390/qeth: fix tear down of async TX buffers
    s390/qeth: make af_iucv TX notification call more robust
    scsi: libiscsi: Fix NOP race condition
    scsi: target: iscsi: Fix cmd abort fabric stop race
    scsi: ufs: Fix race between shutdown and runtime resume flow
    smb3: Avoid Mid pending list corruption
    smb3: Call cifs reconnect from demultiplex thread
    smb3: Handle error case during offload read path
    spi: bcm2835aux: Restore err assignment in bcm2835aux_spi_probe
    spi: bcm2835: Fix use-after-free on unbind
    spi: bcm-qspi: Fix use-after-free on unbind
    staging: ralink-gdma: fix kconfig dependency bug for DMA_RALINK
    trace: fix potenial dangerous pointer
    USB: core: Change %pK for __user pointers to %px
    USB: core: Fix regression in Hercules audio card
    usb: gadget: Fix memleak in gadgetfs_fill_super
    usb: gadget: f_midi: Fix memleak in f_midi_alloc
    USB: quirks: Add USB_QUIRK_DISCONNECT_SUSPEND quirk for Lenovo A630Z TIO built-in usb-audio card
    vhost scsi: fix cmd completion race
    video: hyperv_fb: Fix the cache type when mapping the VRAM
    wireless: Use linux/stddef.h instead of stddef.h
    x86/mce: Do not overwrite no_way_out if mce_end() fails
    x86/resctrl: Add necessary kernfs_put() calls to prevent refcount leak
    x86/resctrl: Remove superfluous kernfs_get() calls to prevent refcount leak
    x86/speculation: Fix prctl() when spectre_v2_user={seccomp,prctl},ibpb
    x86/xen: don't unbind uninitialized lock_kicker_irq
    xtensa: uaccess: Add missing __user to strncpy_from_user() prototype
```
2020-12-03 14:33:38 +03:00
Mikhail Novosyolov
7a2a68a35a Enable shadows in AUFS
Requested by betcher@ / MagOS

aarch64 config is currently not in sync with x86, it will be synced later.
2020-12-03 14:24:26 +03:00
Mikhail Novosyolov
a916977128 shredder-kernel is x86_64 only, not buildable on x86_32 2020-11-27 23:00:06 +03:00
Mikhail Novosyolov
188d796585 BR hostname
DEBUG: ./scripts/mkcompile_h: line 48: hostname: command not found
2020-11-27 15:52:01 +03:00
Mikhail Novosyolov
e74e88e151 Fix typo
```
DEBUG: + make ARCH=i586 oldconfig
DEBUG: Makefile:583: arch/i586/Makefile: No such file or directory
DEBUG: make: *** No rule to make target 'arch/i586/Makefile'.  Stop.
DEBUG: + sed -i s/CONFIG_64BIT=y// arch/x86/configs/i586_defconfig-generic
DEBUG: sed: can't read arch/x86/configs/i586_defconfig-generic: No such file or directory
```
2020-11-27 15:44:21 +03:00
Mikhail Novosyolov
c972a6e092 Back i586
Commit 59b214f0 changed i586 to i686 as we changed in RPM,
but forgot to rename config:
error: Bad file: /builddir/build/SOURCES/kernel-i686.config: No such file or directory
But this spec is still supported on rosa2016.1, let's just use i586 here for now
2020-11-27 14:07:58 +03:00
Mikhail Novosyolov
f4867fbcaa Enable GOST signatures of kernel modules on rosa2019.1, they work now well 2020-11-27 01:34:07 +03:00
Mikhail Novosyolov
3f15f9038b Fix building perf on aarch64 2020-11-27 01:21:49 +03:00
e2c112e47c disable useless debug 2020-11-26 22:03:53 +00:00
alexander stefanov
ded0ab746e disable perf and cpupower for aarch64, its working but need to adjust makefiles 2020-11-26 21:44:31 +00:00
alexander stefanov
871d39fc8e do not wipe arm* soc 2020-11-26 21:33:48 +00:00
alexander stefanov
4561bb68f1 requires numa on aarch64 2020-11-26 21:21:05 +00:00
alexander stefanov
6df43f5746 wipe leftovers 2020-11-26 21:17:21 +00:00
alexander stefanov
59b214f027 add aarch64 support 2020-11-26 21:09:27 +00:00
alexander stefanov
99581a128b vbox only for intel arches 2020-11-26 18:58:01 +00:00
Alexander Stefanov
7ad4d6d9c1 add arch_type 2020-11-26 18:48:55 +00:00
Alexander Stefanov
88c5158b79 drop very old macro perf_is_x64 2020-11-26 18:28:35 +00:00
Mikhail Novosyolov
73f4a66ead upd: 5.4.79 -> 5.4.80
```
$ wget -qO- https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.80 | grep Date: -A2 | grep -v Date: | sort -u

--
    ACPI: button: Add DMI quirk for Medion Akoya E2228T
    ah6: fix error return code in ah6_input()
    ALSA: ctl: fix error path at adding user-defined element set
    ALSA: firewire: Clean up a locking issue in copy_resp_to_buf()
    ALSA: hda/realtek: Add some Clove SSID in the ALC293(ALC1220)
    ALSA: hda/realtek - Add supported for Lenovo ThinkPad Headset Button
    ALSA: mixart: Fix mutex deadlock
    ALSA: usb-audio: Add delay quirk for all Logitech USB devices
    arm64: dts: allwinner: a64: bananapi-m64: Enable RGMII RX/TX delay on PHY
    arm64: dts: allwinner: a64: OrangePi Win: Fix ethernet node
    arm64: dts: allwinner: a64: Pine64 Plus: Fix ethernet node
    arm64: dts: allwinner: beelink-gs1: Enable both RGMII RX/TX delay
    arm64: dts: allwinner: h5: OrangePi PC2: Fix ethernet node
    arm64: dts: allwinner: h5: OrangePi Prime: Fix ethernet node
    arm64: dts: allwinner: Pine H64: Enable both RGMII RX/TX delay
    arm64: dts: imx8mm: fix voltage for 1.6GHz CPU operating point
    arm64: dts imx8mn: Remove non-existent USB OTG2
    arm64: errata: Fix handling of 1418040 with late CPU onlining
    arm64: psci: Avoid printing in cpu_psci_cpu_die()
    arm64: smp: Tell RCU about CPUs that fail to come online
    ARM: dts: imx50-evk: Fix the chip select 1 IOMUX
    arm: dts: imx6qdl-udoo: fix rgmii phy-mode for ksz9031 phy
    ARM: dts: sun6i: a31-hummingbird: Enable RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sun7i: bananapi-m1-plus: Enable RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sun7i: cubietruck: Enable RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sun8i: a83t: Enable both RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sun8i: h3: orangepi-plus2e: Enable RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sun8i: r40: bananapi-m2-ultra: Fix ethernet node
    ARM: dts: sun9i: Enable both RGMII RX/TX delay on Ethernet PHY
    ARM: dts: sunxi: bananapi-m2-plus: Enable RGMII RX/TX delay on Ethernet PHY
    ASoC: qcom: lpass-platform: Fix memory leak
    atm: nicstar: Unmap DMA on send error
    bnxt_en: read EEPROM A2h address using page 0
    bpf, sockmap: Avoid returning unneeded EAGAIN when redirecting to self
    bpf, sockmap: Ensure SO_RCVBUF memory is observed on ingress redirect
    bpf, sockmap: Fix partial copy_page_to_iter so progress can still be made
    bpf, sockmap: On receive programs try to fast track SK_PASS ingress
    bpf, sockmap: Skb verdict SK_PASS to self already checked rmem limits
    bpf, sockmap: Use truesize with sk_rmem_schedule()
    can: af_can: prevent potential access of uninitialized member in canfd_rcv()
    can: af_can: prevent potential access of uninitialized member in can_rcv()
    can: dev: can_restart(): post buffer from the right context
    can: flexcan: fix failure handling of pm_runtime_get_sync()
    can: flexcan: flexcan_chip_start(): fix erroneous flexcan_transceiver_enable() during bus-off recovery
    can: kvaser_pciefd: Fix KCAN bittiming limits
    can: kvaser_usb: kvaser_usb_hydra: Fix KCAN bittiming limits
    can: m_can: m_can_class_free_dev(): introduce new function
    can: m_can: m_can_handle_state_change(): fix state change
    can: m_can: m_can_stop(): set device to software init mode before closing
    can: m_can: process interrupt only when not runtime suspended
    can: mcba_usb: mcba_usb_start_xmit(): first fill skb, then pass to can_put_echo_skb()
    can: peak_usb: fix potential integer overflow on shift of a int
    can: tcan4x5x: replace depends on REGMAP_SPI with depends on SPI
    can: tcan4x5x: tcan4x5x_can_probe(): add missing error checking for devm_regmap_init()
    can: tcan4x5x: tcan4x5x_can_remove(): fix order of deregistration
    can: ti_hecc: Fix memleak in ti_hecc_probe
    devlink: Add missing genlmsg_cancel() in devlink_nl_sb_port_pool_fill()
    Drivers: hv: vmbus: Allow cleanup of VMBUS_CONNECT_CPU if disconnected
    drm/amd/display: Add missing pflip irq for dcn2.0
    drm/i915: Handle max_bpc==16
    drm/sun4i: dw-hdmi: fix error return code in sun8i_dw_hdmi_bind()
    efivarfs: fix memory leak in efivarfs_create()
    efi/x86: Free efi_pgd with free_pages()
    Exempt multicast addresses from five-second neighbor lifetime
    ext4: fix bogus warning in ext4_update_dx_flag()
    fail_function: Remove a redundant mutex unlock
    gfs2: fix possible reference leak in gfs2_check_blk_type
    HID: logitech-dj: Fix an error in mse_bluetooth_descriptor
    HID: logitech-dj: Fix Dinovo Mini when paired with a MX5x00 receiver
    HID: logitech-dj: Handle quad/bluetooth keyboards with a builtin trackpad
    HID: logitech-hidpp: Add PID for MX Anywhere 2
    hwmon: (pwm-fan) Fix RPM calculation
    iio: accel: kxcjk1013: Add support for KIOX010A ACPI DSM for setting tablet-mode
    iio: accel: kxcjk1013: Replace is_smo8500_device with an acpi_type enum
    iio: adc: mediatek: fix unset field
    iio: light: fix kconfig dependency bug for VCNL4035
    inet_diag: Fix error path to cancel the meseage in inet_req_diag_fill()
    Input: adxl34x - clean up a data type in adxl34x_probe()
    Input: resistive-adc-touch - fix kconfig dependency on IIO_BUFFER
    iommu/vt-d: Avoid panic if iommu init fails in tboot system
    iommu/vt-d: Move intel_iommu_gfx_mapped to Intel IOMMU header
    ip_tunnels: Set tunnel option flag when tunnel metadata is present
    ipv6: Fix error path to cancel the meseage
    lan743x: fix issue causing intermittent kernel log warnings
    lan743x: prevent entire kernel HANG on open, for some platforms
    libfs: fix error cast of negative value in simple_attr_write()
    Linux 5.4.80
    mac80211: free sta in sta_info_insert_finish() on errors
    mac80211: minstrel: fix tx status processing corner case
    mac80211: minstrel: remove deferred sampling code
    MIPS: Alchemy: Fix memleak in alchemy_clk_setup_cpu
    MIPS: export has_transparent_hugepage() for modules
    mlxsw: core: Use variable timeout for EMAD retries
    mmc: sdhci-pci: Prefer SDR25 timing for High Speed mode for BYT-based Intel controllers
    mm: memcg/slab: fix root memcg vmstats
    mm, page_alloc: skip ->waternark_boost for atomic order-0 allocations
    mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault()
    net: b44: fix error return code in b44_init_one()
    net: bridge: add missing counters to ndo_get_stats64 callback
    net: dsa: mv88e6xxx: Avoid VTU corruption on 6097
    net: ethernet: ti: cpsw: fix error return code in cpsw_probe()
    net: ftgmac100: Fix crash when removing driver
    net: Have netpoll bring-up DSA management interface
    netlabel: fix an uninitialized warning in netlbl_unlabel_staticlist()
    netlabel: fix our progress tracking in netlbl_unlabel_staticlist()
    net: lantiq: Wait for the GPHY firmware to be ready
    net/mlx4_core: Fix init_hca fields offset
    net/mlx5: Add handling of port type in rule deletion
    net/mlx5: Disable QoS when min_rates on all VFs are zero
    net/mlx5: E-Switch, Fail mlx5_esw_modify_vport_rate if qos disabled
    net/ncsi: Fix netlink registration
    net: qualcomm: rmnet: Fix incorrect receive packet handling during cleanup
    net/smc: fix direct access to ib_gid_addr->ndev in smc_ib_determine_gid()
    net/tls: fix corrupted data in recvmsg
    net: usb: qmi_wwan: Set DTR quirk for MR400
    net: x25: Increase refcnt of "struct x25_neigh" in x25_rx_call_request
    page_frag: Recover from memory pressure
    perf lock: Don't free "lock_seq_stat" if read_count isn't zero
    pinctrl: rockchip: enable gpio pclk for rockchip_gpio_to_irq
    ptrace: Set PF_SUPERPRIV when checking capability
    qed: fix error return code in qed_iwarp_ll2_start()
    qlcnic: fix error return code in qlcnic_83xx_restart_hw()
    RDMA/pvrdma: Fix missing kfree() in pvrdma_register_device()
    regulator: avoid resolve_supply() infinite recursion
    regulator: fix memory leak with repeated set_machine_constraints()
    regulator: pfuze100: limit pfuze-support-disable-sw to pfuze{100,200}
    regulator: ti-abb: Fix array out of bound read access on the first transition
    regulator: workaround self-referent regulators
    Revert "arm: sun8i: orangepi-pc-plus: Set EMAC activity LEDs to active high"
    rfkill: Fix use-after-free in rfkill_resume()
    RMDA/sw: Don't allow drivers using dma_virt_ops on highmem configs
    s390/cpum_sf.c: fix file permission for cpum_sfb_size
    s390/dasd: fix null pointer dereference for ERP requests
    sched/fair: Fix overutilized update in enqueue_task_fair()
    scsi: ufs: Fix unbalanced scsi_block_reqs_cnt caused by ufshcd_hold()
    sctp: change to hold/put transport for proto_unreach_timer
    seccomp: Set PF_SUPERPRIV when checking capability
    selftests/bpf: Fix error return code in run_getsockopt_test()
    selftests: kvm: Fix the segment descriptor layout to match the actual layout
    speakup: Do not let the line discipline be used several times
    spi: bcm2835aux: Fix use-after-free on unbind
    spi: Introduce device-managed SPI controller allocation
    spi: lpspi: Fix use-after-free on unbind
    spi: npcm-fiu: Don't leak SPI master in probe error path
    staging: rtl8723bs: Add 024c:0627 to the list of SDIO device-ids
    swiotlb: using SIZE_MAX needs limits.h included
    tcp: only postpone PROBE_RTT if RTT is < current min_rtt estimate
    tools, bpftool: Add missing close before bpftool net attach exit
    tty: serial: imx: fix potential deadlock
    tty: serial: imx: keep console clocks always on
    vfs: remove lockdep bogosity in __sb_start_write
    x86/microcode/intel: Check patch signature before saving microcode for early loading
    xfs: fix the minrecs logic when dealing with inode root child blocks
    xfs: return corresponding errcode if xfs_initialize_perag() fail
    xfs: revert "xfs: fix rmap key and record comparison functions"
    xfs: strengthen rmap record flags checking
    xtensa: disable preemption around cache alias management calls
    xtensa: fix TLBTEMP area placement
```
2020-11-25 14:10:31 +03:00