From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Lukas Wunner <lukas@wunner.de>,
Kalle Valo <kvalo@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 174/197] wifi: mwifiex: Support SD8978 chipset
Date: Tue, 20 Feb 2024 21:52:13 +0100 [thread overview]
Message-ID: <20240220204846.279064097@linuxfoundation.org> (raw)
In-Reply-To: <20240220204841.073267068@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Lukas Wunner <lukas@wunner.de>
[ Upstream commit bba047f15851c8b053221f1b276eb7682d59f755 ]
The Marvell SD8978 (aka NXP IW416) uses identical registers as SD8987,
so reuse the existing mwifiex_reg_sd8987 definition.
Note that mwifiex_reg_sd8977 and mwifiex_reg_sd8997 are likewise
identical, save for the fw_dump_ctrl register: They define it as 0xf0
whereas mwifiex_reg_sd8987 defines it as 0xf9. I've verified that
0xf9 is the correct value on SD8978. NXP's out-of-tree driver uses
0xf9 for all of them, so there's a chance that 0xf0 is not correct
in the mwifiex_reg_sd8977 and mwifiex_reg_sd8997 definitions. I cannot
test that for lack of hardware, hence am leaving it as is.
NXP has only released a firmware which runs Bluetooth over UART.
Perhaps Bluetooth over SDIO is unsupported by this chipset.
Consequently, only an "sdiouart" firmware image is referenced, not an
alternative "sdsd" image.
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/536b4f17a72ca460ad1b07045757043fb0778988.1674827105.git.lukas@wunner.de
Stable-dep-of: 1c5d463c0770 ("wifi: mwifiex: add extra delay for firmware ready")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
.../bindings/net/wireless/marvell-8xxx.txt | 4 ++-
drivers/net/wireless/marvell/mwifiex/Kconfig | 5 ++--
drivers/net/wireless/marvell/mwifiex/sdio.c | 25 +++++++++++++++++--
drivers/net/wireless/marvell/mwifiex/sdio.h | 1 +
include/linux/mmc/sdio_ids.h | 1 +
5 files changed, 31 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/wireless/marvell-8xxx.txt b/Documentation/devicetree/bindings/net/wireless/marvell-8xxx.txt
index 9bf9bbac16e2..cdc303caf5f4 100644
--- a/Documentation/devicetree/bindings/net/wireless/marvell-8xxx.txt
+++ b/Documentation/devicetree/bindings/net/wireless/marvell-8xxx.txt
@@ -1,4 +1,4 @@
-Marvell 8787/8897/8997 (sd8787/sd8897/sd8997/pcie8997) SDIO/PCIE devices
+Marvell 8787/8897/8978/8997 (sd8787/sd8897/sd8978/sd8997/pcie8997) SDIO/PCIE devices
------
This node provides properties for controlling the Marvell SDIO/PCIE wireless device.
@@ -10,7 +10,9 @@ Required properties:
- compatible : should be one of the following:
* "marvell,sd8787"
* "marvell,sd8897"
+ * "marvell,sd8978"
* "marvell,sd8997"
+ * "nxp,iw416"
* "pci11ab,2b42"
* "pci1b4b,2b42"
diff --git a/drivers/net/wireless/marvell/mwifiex/Kconfig b/drivers/net/wireless/marvell/mwifiex/Kconfig
index 2b4ff2b78a7e..b182f7155d66 100644
--- a/drivers/net/wireless/marvell/mwifiex/Kconfig
+++ b/drivers/net/wireless/marvell/mwifiex/Kconfig
@@ -10,13 +10,14 @@ config MWIFIEX
mwifiex.
config MWIFIEX_SDIO
- tristate "Marvell WiFi-Ex Driver for SD8786/SD8787/SD8797/SD8887/SD8897/SD8977/SD8987/SD8997"
+ tristate "Marvell WiFi-Ex Driver for SD8786/SD8787/SD8797/SD8887/SD8897/SD8977/SD8978/SD8987/SD8997"
depends on MWIFIEX && MMC
select FW_LOADER
select WANT_DEV_COREDUMP
help
This adds support for wireless adapters based on Marvell
- 8786/8787/8797/8887/8897/8977/8987/8997 chipsets with SDIO interface.
+ 8786/8787/8797/8887/8897/8977/8978/8987/8997 chipsets with
+ SDIO interface. SD8978 is also known as NXP IW416.
If you choose to build it as a module, it will be called
mwifiex_sdio.
diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.c b/drivers/net/wireless/marvell/mwifiex/sdio.c
index ea1c1c2412e7..a24bd40dd41a 100644
--- a/drivers/net/wireless/marvell/mwifiex/sdio.c
+++ b/drivers/net/wireless/marvell/mwifiex/sdio.c
@@ -263,7 +263,7 @@ static const struct mwifiex_sdio_card_reg mwifiex_reg_sd8887 = {
0x68, 0x69, 0x6a},
};
-static const struct mwifiex_sdio_card_reg mwifiex_reg_sd8987 = {
+static const struct mwifiex_sdio_card_reg mwifiex_reg_sd89xx = {
.start_rd_port = 0,
.start_wr_port = 0,
.base_0_reg = 0xF8,
@@ -394,6 +394,22 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8977 = {
.can_ext_scan = true,
};
+static const struct mwifiex_sdio_device mwifiex_sdio_sd8978 = {
+ .firmware_sdiouart = SD8978_SDIOUART_FW_NAME,
+ .reg = &mwifiex_reg_sd89xx,
+ .max_ports = 32,
+ .mp_agg_pkt_limit = 16,
+ .tx_buf_size = MWIFIEX_TX_DATA_BUF_SIZE_4K,
+ .mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_MAX,
+ .mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_MAX,
+ .supports_sdio_new_mode = true,
+ .has_control_mask = false,
+ .can_dump_fw = true,
+ .fw_dump_enh = true,
+ .can_auto_tdls = false,
+ .can_ext_scan = true,
+};
+
static const struct mwifiex_sdio_device mwifiex_sdio_sd8997 = {
.firmware = SD8997_DEFAULT_FW_NAME,
.firmware_sdiouart = SD8997_SDIOUART_FW_NAME,
@@ -428,7 +444,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8887 = {
static const struct mwifiex_sdio_device mwifiex_sdio_sd8987 = {
.firmware = SD8987_DEFAULT_FW_NAME,
- .reg = &mwifiex_reg_sd8987,
+ .reg = &mwifiex_reg_sd89xx,
.max_ports = 32,
.mp_agg_pkt_limit = 16,
.tx_buf_size = MWIFIEX_TX_DATA_BUF_SIZE_2K,
@@ -482,7 +498,9 @@ static struct memory_type_mapping mem_type_mapping_tbl[] = {
static const struct of_device_id mwifiex_sdio_of_match_table[] __maybe_unused = {
{ .compatible = "marvell,sd8787" },
{ .compatible = "marvell,sd8897" },
+ { .compatible = "marvell,sd8978" },
{ .compatible = "marvell,sd8997" },
+ { .compatible = "nxp,iw416" },
{ }
};
@@ -920,6 +938,8 @@ static const struct sdio_device_id mwifiex_ids[] = {
.driver_data = (unsigned long)&mwifiex_sdio_sd8801},
{SDIO_DEVICE(SDIO_VENDOR_ID_MARVELL, SDIO_DEVICE_ID_MARVELL_8977_WLAN),
.driver_data = (unsigned long)&mwifiex_sdio_sd8977},
+ {SDIO_DEVICE(SDIO_VENDOR_ID_MARVELL, SDIO_DEVICE_ID_MARVELL_8978_WLAN),
+ .driver_data = (unsigned long)&mwifiex_sdio_sd8978},
{SDIO_DEVICE(SDIO_VENDOR_ID_MARVELL, SDIO_DEVICE_ID_MARVELL_8987_WLAN),
.driver_data = (unsigned long)&mwifiex_sdio_sd8987},
{SDIO_DEVICE(SDIO_VENDOR_ID_MARVELL, SDIO_DEVICE_ID_MARVELL_8997_WLAN),
@@ -3164,6 +3184,7 @@ MODULE_FIRMWARE(SD8797_DEFAULT_FW_NAME);
MODULE_FIRMWARE(SD8897_DEFAULT_FW_NAME);
MODULE_FIRMWARE(SD8887_DEFAULT_FW_NAME);
MODULE_FIRMWARE(SD8977_DEFAULT_FW_NAME);
+MODULE_FIRMWARE(SD8978_SDIOUART_FW_NAME);
MODULE_FIRMWARE(SD8987_DEFAULT_FW_NAME);
MODULE_FIRMWARE(SD8997_DEFAULT_FW_NAME);
MODULE_FIRMWARE(SD8997_SDIOUART_FW_NAME);
diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.h b/drivers/net/wireless/marvell/mwifiex/sdio.h
index 3a24bb48b299..ae94c172310f 100644
--- a/drivers/net/wireless/marvell/mwifiex/sdio.h
+++ b/drivers/net/wireless/marvell/mwifiex/sdio.h
@@ -25,6 +25,7 @@
#define SD8887_DEFAULT_FW_NAME "mrvl/sd8887_uapsta.bin"
#define SD8801_DEFAULT_FW_NAME "mrvl/sd8801_uapsta.bin"
#define SD8977_DEFAULT_FW_NAME "mrvl/sdsd8977_combo_v2.bin"
+#define SD8978_SDIOUART_FW_NAME "mrvl/sdiouartiw416_combo_v0.bin"
#define SD8987_DEFAULT_FW_NAME "mrvl/sd8987_uapsta.bin"
#define SD8997_DEFAULT_FW_NAME "mrvl/sdsd8997_combo_v4.bin"
#define SD8997_SDIOUART_FW_NAME "mrvl/sdiouart8997_combo_v4.bin"
diff --git a/include/linux/mmc/sdio_ids.h b/include/linux/mmc/sdio_ids.h
index 74f9d9a6d330..0e4ef9c5127a 100644
--- a/include/linux/mmc/sdio_ids.h
+++ b/include/linux/mmc/sdio_ids.h
@@ -102,6 +102,7 @@
#define SDIO_DEVICE_ID_MARVELL_8977_BT 0x9146
#define SDIO_DEVICE_ID_MARVELL_8987_WLAN 0x9149
#define SDIO_DEVICE_ID_MARVELL_8987_BT 0x914a
+#define SDIO_DEVICE_ID_MARVELL_8978_WLAN 0x9159
#define SDIO_VENDOR_ID_MEDIATEK 0x037a
#define SDIO_DEVICE_ID_MEDIATEK_MT7663 0x7663
--
2.43.0
next prev parent reply other threads:[~2024-02-20 21:06 UTC|newest]
Thread overview: 211+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-20 20:49 [PATCH 6.1 000/197] 6.1.79-rc1 review Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 001/197] work around gcc bugs with asm goto with outputs Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 002/197] update workarounds for gcc "asm goto" issue Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 003/197] btrfs: add and use helper to check if block group is used Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 004/197] btrfs: do not delete unused block group if it may be used soon Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 005/197] btrfs: forbid creating subvol qgroups Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 006/197] btrfs: do not ASSERT() if the newly created subvolume already got read Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 007/197] btrfs: forbid deleting live subvol qgroup Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 008/197] btrfs: send: return EOPNOTSUPP on unknown flags Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 009/197] btrfs: dont reserve space for checksums when writing to nocow files Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 010/197] btrfs: reject encoded write if inode has nodatasum flag set Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 011/197] btrfs: dont drop extent_map for free space inode on write error Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 012/197] driver core: Fix device_link_flag_is_sync_state_only() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 013/197] of: unittest: Fix compile in the non-dynamic case Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 014/197] KVM: selftests: Clear dirty ring states between two modes in dirty_log_test Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 015/197] KVM: selftests: Fix a semaphore imbalance in the dirty ring logging test Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 016/197] wifi: iwlwifi: Fix some error codes Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 017/197] wifi: iwlwifi: uninitialized variable in iwl_acpi_get_ppag_table() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 018/197] of: property: Improve finding the supplier of a remote-endpoint property Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 019/197] net: openvswitch: limit the number of recursions from action sets Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 020/197] lan966x: Fix crash when adding interface under a lag Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 021/197] tls/sw: Use splice_eof() to flush Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 022/197] tls: extract context alloc/initialization out of tls_set_sw_offload Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 023/197] net: tls: factor out tls_*crypt_async_wait() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 024/197] tls: fix race between async notify and socket close Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 025/197] net: tls: fix use-after-free with partial reads and async decrypt Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 026/197] net: tls: fix returned read length with " Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 027/197] spi: ppc4xx: Drop write-only variable Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 028/197] ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 029/197] net: sysfs: Fix /sys/class/net/<iface> path for statistics Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 030/197] nouveau/svm: fix kvcalloc() argument order Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 031/197] MIPS: Add memory clobber to csum_ipv6_magic() inline assembler Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 032/197] i40e: Do not allow untrusted VF to remove administratively set MAC Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 033/197] i40e: Fix waiting for queues of all VSIs to be disabled Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 034/197] scs: add CONFIG_MMU dependency for vfree_atomic() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 035/197] tracing/trigger: Fix to return error if failed to alloc snapshot Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 036/197] readahead: avoid multiple marked readahead pages Greg Kroah-Hartman
2024-02-20 21:05 ` Matthew Wilcox
2024-02-21 7:00 ` Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 037/197] mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 038/197] scsi: storvsc: Fix ring buffer size calculation Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 039/197] dm-crypt, dm-verity: disable tasklets Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 040/197] ASoC: amd: yc: Add DMI quirk for MSI Bravo 15 C7VF Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 041/197] parisc: Prevent hung tasks when printing inventory on serial console Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 042/197] ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift 1 SF114-32 Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 043/197] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 044/197] HID: i2c-hid-of: fix NULL-deref on failed power up Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 045/197] HID: wacom: generic: Avoid reporting a serial of 0 to userspace Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 046/197] HID: wacom: Do not register input devices until after hid_hw_start Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 047/197] iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 048/197] usb: ucsi: Add missing ppm_lock Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 049/197] usb: ulpi: Fix debugfs directory leak Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 050/197] usb: ucsi_acpi: Fix command completion handling Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 051/197] USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 052/197] usb: f_mass_storage: forbid async queue when shutdown happen Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 053/197] usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 054/197] interconnect: qcom: sc8180x: Mark CO0 BCM keepalive Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 055/197] media: ir_toy: fix a memleak in irtoy_tx Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 056/197] driver core: fw_devlink: Improve detection of overlapping cycles Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 057/197] powerpc/6xx: set High BAT Enable flag on G2_LE cores Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 058/197] powerpc/kasan: Fix addr error caused by page alignment Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 059/197] cifs: fix underflow in parse_server_interfaces() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 060/197] i2c: qcom-geni: Correct I2C TRE sequence Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 061/197] irqchip/loongson-eiointc: Use correct struct type in eiointc_domain_alloc() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 062/197] powerpc/kasan: Limit KASAN thread size increase to 32KB Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 063/197] i2c: pasemi: split driver into two separate modules Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 064/197] i2c: i801: Fix block process call transactions Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 065/197] modpost: trim leading spaces when processing source files list Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 066/197] mptcp: get rid of msk->subflow Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 067/197] mptcp: fix data re-injection from stale subflow Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 068/197] selftests: mptcp: add missing kconfig for NF Filter Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 069/197] selftests: mptcp: add missing kconfig for NF Filter in v6 Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 070/197] selftests: mptcp: add missing kconfig for NF Mangle Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 071/197] selftests: mptcp: increase timeout to 30 min Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 072/197] mptcp: drop the push_pending field Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 073/197] mptcp: check addrs list in userspace_pm_get_local_id Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 074/197] media: Revert "media: rkisp1: Drop IRQF_SHARED" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 075/197] scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 076/197] Revert "drm/amd: flush any delayed gfxoff on suspend entry" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 077/197] drm/virtio: Set segment size for virtio_gpu device Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 078/197] lsm: fix the logic in security_inode_getsecctx() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 079/197] firewire: core: correct documentation of fw_csr_string() kernel API Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 080/197] ALSA: hda/realtek: Apply headset jack quirk for non-bass alc287 thinkpads Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 081/197] kbuild: Fix changing ELF file type for output of gen_btf for big endian Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 082/197] nfc: nci: free rx_data_reassembly skb on NCI device cleanup Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 083/197] net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 084/197] net: stmmac: do not clear TBS enable bit on link up/down Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 085/197] xen-netback: properly sync TX responses Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 086/197] modpost: propagate W=1 build option to modpost Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 087/197] modpost: Dont let "driver"s reference .exit.* Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 088/197] linux/init: remove __memexit* annotations Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 089/197] modpost: Include .text.* in TEXT_SECTIONS Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 090/197] um: Fix adding -no-pie for clang Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 091/197] modpost: Add .ltext and .ltext.* to TEXT_SECTIONS Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 092/197] ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 093/197] ASoC: codecs: wcd938x: handle deferred probe Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 094/197] ALSA: hda/cs8409: Suppress vmaster control for Dolphin models Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 095/197] ALSA: hda/realtek: fix mute/micmute LEDs for HP ZBook Power Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 096/197] binder: signal epoll threads of self-work Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 097/197] misc: fastrpc: Mark all sessions as invalid in cb_remove Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 098/197] ext4: fix double-free of blocks due to wrong extents moved_len Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 099/197] ext4: avoid bb_free and bb_fragments inconsistency in mb_free_blocks() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 100/197] tracing: Fix wasted memory in saved_cmdlines logic Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 101/197] staging: iio: ad5933: fix type mismatch regression Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 102/197] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 103/197] iio: core: fix memleak in iio_device_register_sysfs Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 104/197] iio: commom: st_sensors: ensure proper DMA alignment Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 105/197] iio: accel: bma400: Fix a compilation problem Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 106/197] iio: adc: ad_sigma_delta: ensure proper DMA alignment Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 107/197] iio: imu: adis: " Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 108/197] iio: imu: bno055: serdev requires REGMAP Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 109/197] media: rc: bpf attach/detach requires write permission Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 110/197] ksmbd: free aux buffer if ksmbd_iov_pin_rsp_read fails Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 111/197] xfrm: Remove inner/outer modes from output path Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 112/197] xfrm: Remove inner/outer modes from input path Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 113/197] drm/msm: Wire up tlb ops Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 114/197] drm/prime: Support page array >= 4GB Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 115/197] drm/amd/display: Increase frame-larger-than for all display_mode_vba files Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 116/197] drm/amd/display: Preserve original aspect ratio in create stream Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 117/197] hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 118/197] ring-buffer: Clean ring_buffer_poll_wait() error return Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 119/197] nfp: flower: fix hardware offload for the transfer layer port Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 120/197] serial: max310x: set default value when reading clock ready bit Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 121/197] serial: max310x: improve crystal stable clock detection Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 122/197] serial: max310x: fail probe if clock crystal is unstable Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 123/197] serial: max310x: prevent infinite while() loop in port startup Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 124/197] powerpc/64: Set task pt_regs->link to the LR value on scv entry Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 125/197] powerpc/cputable: Add missing PPC_FEATURE_BOOKE on PPC64 Book-E Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 126/197] powerpc/pseries: fix accuracy of stolen time Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 127/197] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 128/197] x86/fpu: Stop relying on userspace for info to fault in xsave buffer Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 129/197] KVM: x86/pmu: Fix type length error when reading pmu->fixed_ctr_ctrl Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 130/197] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 131/197] io_uring/net: fix multishot accept overflow handling Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 132/197] mmc: slot-gpio: Allow non-sleeping GPIO ro Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 133/197] ALSA: hda/realtek: fix mute/micmute LED For HP mt645 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 134/197] ALSA: hda/conexant: Add quirk for SWS JS201D Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 135/197] nilfs2: fix data corruption in dsync block recovery for small block sizes Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 136/197] nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 137/197] crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 138/197] nfp: use correct macro for LengthSelect in BAR config Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 139/197] nfp: flower: prevent re-adding mac index for bonded port Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 140/197] wifi: cfg80211: fix wiphy delayed work queueing Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 141/197] wifi: mac80211: reload info pointer in ieee80211_tx_dequeue() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 142/197] irqchip/irq-brcmstb-l2: Add write memory barrier before exit Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 143/197] irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 144/197] zonefs: Improve error handling Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 145/197] mmc: sdhci-pci-o2micro: Fix a warm reboot issue that disk cant be detected by BIOS Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 146/197] ASoC: amd: yc: Add DMI quirk for Lenovo Ideapad Pro 5 16ARP8 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 147/197] tools/rtla: Remove unused sched_getattr() function Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 148/197] tools/rtla: Replace setting prio with nice for SCHED_OTHER Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 149/197] tools/rtla: Exit with EXIT_SUCCESS when help is invoked Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 150/197] tools/rtla: Fix uninitialized bucket/data->bucket_size warning Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 151/197] tools/rtla: Fix Makefile compiler options for clang Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 152/197] fs: relax mount_setattr() permission checks Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 153/197] net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 154/197] s390/qeth: Fix potential loss of L3-IP@ in case of network issues Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 155/197] net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 156/197] hv_netvsc: Register VF in netvsc_probe if NET_DEVICE_REGISTER missed Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 157/197] ceph: prevent use-after-free in encode_cap_msg() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 158/197] fs,hugetlb: fix NULL pointer dereference in hugetlbs_fill_super Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 159/197] mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 160/197] of: property: fix typo in io-channels Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 161/197] can: netlink: Fix TDCO calculation using the old data bittiming Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 162/197] can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 163/197] can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER) Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 164/197] pmdomain: core: Move the unused cleanup to a _sync initcall Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 165/197] fs/proc: do_task_stat: move thread_group_cputime_adjusted() outside of lock_task_sighand() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 166/197] tracing: Inform kmemleak of saved_cmdlines allocation Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 167/197] xfrm: Use xfrm_state selector for BEET input Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 168/197] xfrm: Silence warnings triggerable by bad packets Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 169/197] tls: fix NULL deref on tls_sw_splice_eof() with empty record Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 170/197] selftests/mm: ksm_tests should only MADV_HUGEPAGE valid memory Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 171/197] selftests/mm: Update va_high_addr_switch.sh to check CPU for la57 flag Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 172/197] md: bypass block throttle for superblock update Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 173/197] ARM: dts: imx6q-apalis: add can power-up delay on ixora board Greg Kroah-Hartman
2024-02-20 20:52 ` Greg Kroah-Hartman [this message]
2024-02-21 8:03 ` [PATCH 6.1 174/197] wifi: mwifiex: Support SD8978 chipset Francesco Dolcini
2024-02-21 8:12 ` Greg Kroah-Hartman
2024-02-21 8:39 ` Francesco Dolcini
2024-02-21 10:33 ` Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 175/197] wifi: mwifiex: add extra delay for firmware ready Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 176/197] bus: moxtet: Add spi device table Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 177/197] arm64: dts: qcom: msm8916: Enable blsp_dma by default Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 178/197] arm64: dts: qcom: msm8916: Make blsp_dma controlled-remotely Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 179/197] arm64: dts: qcom: sdm845: fix USB SS wakeup Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 180/197] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 181/197] wifi: mwifiex: fix uninitialized firmware_stat Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 182/197] crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 183/197] block: fix partial zone append completion handling in req_bio_endio() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 184/197] netfilter: ipset: fix performance regression in swap operation Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 185/197] netfilter: ipset: Missing gc cancellations fixed Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 186/197] parisc: Fix random data corruption from exception handler Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 187/197] nfsd: fix RELEASE_LOCKOWNER Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 188/197] nfsd: dont take fi_lock in nfsd_break_deleg_cb() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 189/197] hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 190/197] RDMA/irdma: Ensure iWarp QP queue memory is OS paged aligned Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 191/197] smb: client: fix potential OOBs in smb2_parse_contexts() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 192/197] smb: client: fix parsing of SMB3.1.1 POSIX create context Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 193/197] net: prevent mss overflow in skb_segment() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 194/197] bpf: Add struct for bin_args arg in bpf_bprintf_prepare Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 195/197] bpf: Do cleanup in bpf_bprintf_cleanup only when needed Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 196/197] bpf: Remove trace_printk_lock Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 197/197] userfaultfd: fix mmap_changing checking in mfill_atomic_hugetlb Greg Kroah-Hartman
2024-02-21 0:18 ` [PATCH 6.1 000/197] 6.1.79-rc1 review SeongJae Park
2024-02-21 1:04 ` Daniel Díaz
2024-02-21 1:40 ` Daniel Díaz
2024-02-21 8:16 ` Matthias Schiffer
2024-02-21 12:37 ` Greg Kroah-Hartman
2024-02-21 12:02 ` Jon Hunter
2024-02-21 15:39 ` Shuah Khan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240220204846.279064097@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=kvalo@kernel.org \
--cc=lukas@wunner.de \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).