From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Hector Martin <marcan@marcan.st>,
Alyssa Rosenzweig <alyssa@rosenzweig.io>,
Sven Peter <sven@svenpeter.dev>, Sasha Levin <sashal@kernel.org>,
j@jannau.net, asahi@lists.linux.dev,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH AUTOSEL 6.6 138/294] soc: apple: rtkit: Implement OSLog buffers properly
Date: Mon, 5 May 2025 18:53:58 -0400 [thread overview]
Message-ID: <20250505225634.2688578-138-sashal@kernel.org> (raw)
In-Reply-To: <20250505225634.2688578-1-sashal@kernel.org>
From: Hector Martin <marcan@marcan.st>
[ Upstream commit a06398687065e0c334dc5fc4d2778b5b87292e43 ]
Apparently nobody can figure out where the old logic came from, but it
seems like it has never been actually used on any supported firmware to
this day. OSLog buffers were apparently never requested.
But starting with 13.3, we actually need this implemented properly for
MTP (and later AOP) to work, so let's actually do that.
Signed-off-by: Hector Martin <marcan@marcan.st>
Reviewed-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Link: https://lore.kernel.org/r/20250226-apple-soc-misc-v2-2-c3ec37f9021b@svenpeter.dev
Signed-off-by: Sven Peter <sven@svenpeter.dev>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/soc/apple/rtkit-internal.h | 1 +
drivers/soc/apple/rtkit.c | 56 ++++++++++++++++++------------
2 files changed, 35 insertions(+), 22 deletions(-)
diff --git a/drivers/soc/apple/rtkit-internal.h b/drivers/soc/apple/rtkit-internal.h
index 24bd619ec5e48..1da1dfd9cb199 100644
--- a/drivers/soc/apple/rtkit-internal.h
+++ b/drivers/soc/apple/rtkit-internal.h
@@ -48,6 +48,7 @@ struct apple_rtkit {
struct apple_rtkit_shmem ioreport_buffer;
struct apple_rtkit_shmem crashlog_buffer;
+ struct apple_rtkit_shmem oslog_buffer;
struct apple_rtkit_shmem syslog_buffer;
char *syslog_msg_buffer;
diff --git a/drivers/soc/apple/rtkit.c b/drivers/soc/apple/rtkit.c
index b9c5281c445ee..2c37216f423d2 100644
--- a/drivers/soc/apple/rtkit.c
+++ b/drivers/soc/apple/rtkit.c
@@ -66,8 +66,9 @@ enum {
#define APPLE_RTKIT_SYSLOG_MSG_SIZE GENMASK_ULL(31, 24)
#define APPLE_RTKIT_OSLOG_TYPE GENMASK_ULL(63, 56)
-#define APPLE_RTKIT_OSLOG_INIT 1
-#define APPLE_RTKIT_OSLOG_ACK 3
+#define APPLE_RTKIT_OSLOG_BUFFER_REQUEST 1
+#define APPLE_RTKIT_OSLOG_SIZE GENMASK_ULL(55, 36)
+#define APPLE_RTKIT_OSLOG_IOVA GENMASK_ULL(35, 0)
#define APPLE_RTKIT_MIN_SUPPORTED_VERSION 11
#define APPLE_RTKIT_MAX_SUPPORTED_VERSION 12
@@ -256,15 +257,21 @@ static int apple_rtkit_common_rx_get_buffer(struct apple_rtkit *rtk,
struct apple_rtkit_shmem *buffer,
u8 ep, u64 msg)
{
- size_t n_4kpages = FIELD_GET(APPLE_RTKIT_BUFFER_REQUEST_SIZE, msg);
u64 reply;
int err;
+ /* The different size vs. IOVA shifts look odd but are indeed correct this way */
+ if (ep == APPLE_RTKIT_EP_OSLOG) {
+ buffer->size = FIELD_GET(APPLE_RTKIT_OSLOG_SIZE, msg);
+ buffer->iova = FIELD_GET(APPLE_RTKIT_OSLOG_IOVA, msg) << 12;
+ } else {
+ buffer->size = FIELD_GET(APPLE_RTKIT_BUFFER_REQUEST_SIZE, msg) << 12;
+ buffer->iova = FIELD_GET(APPLE_RTKIT_BUFFER_REQUEST_IOVA, msg);
+ }
+
buffer->buffer = NULL;
buffer->iomem = NULL;
buffer->is_mapped = false;
- buffer->iova = FIELD_GET(APPLE_RTKIT_BUFFER_REQUEST_IOVA, msg);
- buffer->size = n_4kpages << 12;
dev_dbg(rtk->dev, "RTKit: buffer request for 0x%zx bytes at %pad\n",
buffer->size, &buffer->iova);
@@ -289,11 +296,21 @@ static int apple_rtkit_common_rx_get_buffer(struct apple_rtkit *rtk,
}
if (!buffer->is_mapped) {
- reply = FIELD_PREP(APPLE_RTKIT_SYSLOG_TYPE,
- APPLE_RTKIT_BUFFER_REQUEST);
- reply |= FIELD_PREP(APPLE_RTKIT_BUFFER_REQUEST_SIZE, n_4kpages);
- reply |= FIELD_PREP(APPLE_RTKIT_BUFFER_REQUEST_IOVA,
- buffer->iova);
+ /* oslog uses different fields and needs a shifted IOVA instead of size */
+ if (ep == APPLE_RTKIT_EP_OSLOG) {
+ reply = FIELD_PREP(APPLE_RTKIT_OSLOG_TYPE,
+ APPLE_RTKIT_OSLOG_BUFFER_REQUEST);
+ reply |= FIELD_PREP(APPLE_RTKIT_OSLOG_SIZE, buffer->size);
+ reply |= FIELD_PREP(APPLE_RTKIT_OSLOG_IOVA,
+ buffer->iova >> 12);
+ } else {
+ reply = FIELD_PREP(APPLE_RTKIT_SYSLOG_TYPE,
+ APPLE_RTKIT_BUFFER_REQUEST);
+ reply |= FIELD_PREP(APPLE_RTKIT_BUFFER_REQUEST_SIZE,
+ buffer->size >> 12);
+ reply |= FIELD_PREP(APPLE_RTKIT_BUFFER_REQUEST_IOVA,
+ buffer->iova);
+ }
apple_rtkit_send_message(rtk, ep, reply, NULL, false);
}
@@ -487,25 +504,18 @@ static void apple_rtkit_syslog_rx(struct apple_rtkit *rtk, u64 msg)
}
}
-static void apple_rtkit_oslog_rx_init(struct apple_rtkit *rtk, u64 msg)
-{
- u64 ack;
-
- dev_dbg(rtk->dev, "RTKit: oslog init: msg: 0x%llx\n", msg);
- ack = FIELD_PREP(APPLE_RTKIT_OSLOG_TYPE, APPLE_RTKIT_OSLOG_ACK);
- apple_rtkit_send_message(rtk, APPLE_RTKIT_EP_OSLOG, ack, NULL, false);
-}
-
static void apple_rtkit_oslog_rx(struct apple_rtkit *rtk, u64 msg)
{
u8 type = FIELD_GET(APPLE_RTKIT_OSLOG_TYPE, msg);
switch (type) {
- case APPLE_RTKIT_OSLOG_INIT:
- apple_rtkit_oslog_rx_init(rtk, msg);
+ case APPLE_RTKIT_OSLOG_BUFFER_REQUEST:
+ apple_rtkit_common_rx_get_buffer(rtk, &rtk->oslog_buffer,
+ APPLE_RTKIT_EP_OSLOG, msg);
break;
default:
- dev_warn(rtk->dev, "RTKit: Unknown oslog message: %llx\n", msg);
+ dev_warn(rtk->dev, "RTKit: Unknown oslog message: %llx\n",
+ msg);
}
}
@@ -787,6 +797,7 @@ int apple_rtkit_reinit(struct apple_rtkit *rtk)
apple_rtkit_free_buffer(rtk, &rtk->ioreport_buffer);
apple_rtkit_free_buffer(rtk, &rtk->crashlog_buffer);
+ apple_rtkit_free_buffer(rtk, &rtk->oslog_buffer);
apple_rtkit_free_buffer(rtk, &rtk->syslog_buffer);
kfree(rtk->syslog_msg_buffer);
@@ -967,6 +978,7 @@ void apple_rtkit_free(struct apple_rtkit *rtk)
apple_rtkit_free_buffer(rtk, &rtk->ioreport_buffer);
apple_rtkit_free_buffer(rtk, &rtk->crashlog_buffer);
+ apple_rtkit_free_buffer(rtk, &rtk->oslog_buffer);
apple_rtkit_free_buffer(rtk, &rtk->syslog_buffer);
kfree(rtk->syslog_msg_buffer);
--
2.39.5
next prev parent reply other threads:[~2025-05-05 23:01 UTC|newest]
Thread overview: 296+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-05 22:51 [PATCH AUTOSEL 6.6 001/294] kconfig: merge_config: use an empty file as initfile Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 002/294] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 003/294] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 004/294] cifs: Fix querying and creating MF symlinks over SMB1 Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 005/294] cifs: Fix negotiate retry functionality Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 006/294] smb: client: Store original IO parameters and prevent zero IO sizes Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 007/294] fuse: Return EPERM rather than ENOSYS from link() Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 008/294] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 009/294] NFS: Don't allow waiting for exiting tasks Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 010/294] SUNRPC: " Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 011/294] arm64: Add support for HIP09 Spectre-BHB mitigation Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 012/294] tracing: Mark binary printing functions with __printf() attribute Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 013/294] ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 014/294] mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 015/294] mailbox: use error ret code of of_parse_phandle_with_args() Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 016/294] riscv: Allow NOMMU kernels to access all of RAM Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 017/294] fbdev: fsl-diu-fb: add missing device_remove_file() Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 018/294] fbcon: Use correct erase colour for clearing in fbcon Sasha Levin
2025-05-05 22:51 ` [PATCH AUTOSEL 6.6 019/294] fbdev: core: tileblit: Implement missing margin clearing for tileblit Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 020/294] cifs: add validation check for the fields in smb_aces Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 021/294] cifs: Fix establishing NetBIOS session for SMB2+ connection Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 022/294] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 023/294] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 024/294] SUNRPC: rpcbind should never reset the port to the value '0' Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 025/294] spi-rockchip: Fix register out of bounds access Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 026/294] thermal/drivers/qoriq: Power down TMU on system suspend Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 027/294] exit: fix the usage of delay_group_leader->exit_code in do_notify_parent() and pidfs_exit() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 028/294] dql: Fix dql->limit value when reset Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 029/294] lockdep: Fix wait context check on softirq for PREEMPT_RT Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 030/294] objtool: Properly disable uaccess validation Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 031/294] PCI: dwc: ep: Ensure proper iteration over outbound map windows Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 032/294] tools/build: Don't pass test log files to linker Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 033/294] pNFS/flexfiles: Report ENETDOWN as a connection error Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 034/294] PCI: vmd: Disable MSI remapping bypass under Xen Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 035/294] ext4: on a remount, only log the ro or r/w state when it has changed Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 036/294] libnvdimm/labels: Fix divide error in nd_label_data_init() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 037/294] mmc: host: Wait for Vdd to settle on card power off Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 038/294] wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 039/294] wifi: mt76: mt7996: revise TXS size Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 040/294] x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 041/294] x86/mm: Check return value from memblock_phys_alloc_range() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 042/294] i2c: qup: Vote for interconnect bandwidth to DRAM Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 043/294] i2c: pxa: fix call balance of i2c->clk handling routines Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 044/294] btrfs: make btrfs_discard_workfn() block_group ref explicit Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 045/294] btrfs: avoid linker error in btrfs_find_create_tree_block() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 046/294] btrfs: run btrfs_error_commit_super() early Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 047/294] btrfs: fix non-empty delayed iputs list on unmount due to async workers Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 048/294] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 049/294] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 050/294] btrfs: zoned: exit btrfs_can_activate_zone if BTRFS_FS_NEED_ZONE_FINISH is set Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 051/294] drm/amd/display: Guard against setting dispclk low for dcn31x Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 052/294] i3c: master: svc: Fix missing STOP for master request Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 053/294] dlm: make tcp still work in multi-link env Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 054/294] um: Store full CSGSFS and SS register from mcontext Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 055/294] um: Update min_low_pfn to match changes in uml_reserved Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 056/294] ext4: reorder capability check last Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 057/294] hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 058/294] scsi: st: Tighten the page format heuristics with MODE SELECT Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 059/294] scsi: st: ERASE does not change tape location Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 060/294] vfio/pci: Handle INTx IRQ_NOTCONNECTED Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 061/294] bpf: Return prog btf_id without capable check Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 062/294] jbd2: do not try to recover wiped journal Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 063/294] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 064/294] rtc: rv3032: fix EERD location Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 065/294] objtool: Fix error handling inconsistencies in check() Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 066/294] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 067/294] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 068/294] bpf: Allow pre-ordering for bpf cgroup progs Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 069/294] kbuild: fix argument parsing in scripts/config Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 070/294] crypto: octeontx2 - suppress auth failure screaming due to negative tests Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 071/294] dm: restrict dm device size to 2^63-512 bytes Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 072/294] net/smc: use the correct ndev to find pnetid by pnetid table Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 073/294] xen: Add support for XenServer 6.1 platform device Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 074/294] pinctrl-tegra: Restore SFSEL bit when freeing pins Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 075/294] mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 076/294] drm/amdgpu: Update SRIOV video codec caps Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 077/294] ASoC: sun4i-codec: support hp-det-gpios property Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 078/294] f2fs: defer readonly check vs norecovery Sasha Levin
2025-05-05 22:52 ` [PATCH AUTOSEL 6.6 079/294] ext4: reject the 'data_err=abort' option in nojournal mode Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 080/294] ext4: do not convert the unwritten extents if data writeback fails Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 081/294] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 082/294] posix-timers: Add cond_resched() to posix_timer_add() search loop Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 083/294] timer_list: Don't use %pK through printk() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 084/294] netfilter: conntrack: Bound nf_conntrack sysctl writes Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 085/294] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 086/294] mmc: dw_mmc: add exynos7870 DW MMC support Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 087/294] mmc: sdhci: Disable SD card clock before changing parameters Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 088/294] usb: xhci: Don't change the status of stalled TDs on failed Stop EP Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 089/294] hwmon: (dell-smm) Increment the number of fans Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 090/294] printk: Check CON_SUSPEND when unblanking a console Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 091/294] wifi: iwlwifi: fix debug actions order Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 092/294] ipv6: save dontfrag in cork Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 093/294] drm/amd/display: remove minimum Dispclk and apply oem panel timing Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 094/294] drm/amd/display: calculate the remain segments for all pipes Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 095/294] drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 096/294] gfs2: Check for empty queue in run_queue Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 097/294] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 098/294] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 099/294] iommu/amd/pgtbl_v2: Improve error handling Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 100/294] cpufreq: tegra186: Share policy per cluster Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 101/294] watchdog: aspeed: Update bootstatus handling Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 102/294] crypto: lzo - Fix compression buffer overrun Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 103/294] drm/amdkfd: Set per-process flags only once cik/vi Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 104/294] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 105/294] arm64: tegra: Resize aperture for the IGX PCIe C5 slot Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 106/294] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 107/294] ALSA: seq: Improve data consistency at polling Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 108/294] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 109/294] rtc: ds1307: stop disabling alarms on probe Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 110/294] ieee802154: ca8210: Use proper setters and getters for bitwise types Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 111/294] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 112/294] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 113/294] dm cache: prevent BUG_ON by blocking retries on failed device resumes Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 114/294] orangefs: Do not truncate file size Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 115/294] drm/gem: Test for imported GEM buffers with helper Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 116/294] net: phylink: use pl->link_interface in phylink_expects_phy() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 117/294] remoteproc: qcom_wcnss: Handle platforms with only single power domain Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 118/294] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 119/294] drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 120/294] media: cx231xx: set device_caps for 417 Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 121/294] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 122/294] net: ethernet: ti: cpsw_new: populate netdev of_node Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 123/294] net: pktgen: fix mpls maximum labels list parsing Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 124/294] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 125/294] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 126/294] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 127/294] drm/rockchip: vop2: Add uv swap for cluster window Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 128/294] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 129/294] media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 130/294] clk: imx8mp: inform CCF of maximum frequency of clocks Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 131/294] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 132/294] hwmon: (gpio-fan) Add missing mutex locks Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 133/294] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 134/294] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 135/294] fpga: altera-cvp: Increase credit timeout Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 136/294] perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters Sasha Levin
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 137/294] soc: apple: rtkit: Use high prio work queue Sasha Levin
2025-05-05 22:53 ` Sasha Levin [this message]
2025-05-05 22:53 ` [PATCH AUTOSEL 6.6 139/294] wifi: ath12k: Report proper tx completion status to mac80211 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 140/294] PCI: brcmstb: Expand inbound window size up to 64GB Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 141/294] PCI: brcmstb: Add a softdep to MIP MSI-X driver Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 142/294] nvme: map uring_cmd data even if address is 0 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 143/294] firmware: arm_ffa: Set dma_mask for ffa devices Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 144/294] net/mlx5: Avoid report two health errors on same syndrome Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 145/294] selftests/net: have `gro.sh -t` return a correct exit code Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 146/294] drm/amdkfd: KFD release_work possible circular locking Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 147/294] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 148/294] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 149/294] net: xgene-v2: remove incorrect ACPI_PTR annotation Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 150/294] bonding: report duplicate MAC address in all situations Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 151/294] wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 152/294] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 153/294] Octeontx2-af: RPM: Register driver with PCI subsys IDs Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 154/294] x86/build: Fix broken copy command in genimage.sh when making isoimage Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 155/294] drm/amd/display: handle max_downscale_src_width fail check Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 156/294] drm/amd/display: fix dcn4x init failed Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 157/294] ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 158/294] ASoC: mediatek: mt8188: Add reference for dmic clocks Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 159/294] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 160/294] vhost-scsi: Return queue full for page alloc failures during copy Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 161/294] vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 162/294] cpuidle: menu: Avoid discarding useful information Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 163/294] media: adv7180: Disable test-pattern control on adv7180 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 164/294] media: tc358746: improve calculation of the D-PHY timing registers Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 165/294] libbpf: Fix out-of-bound read Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 166/294] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 167/294] fs/mpage: avoid negative shift for large blocksize Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 168/294] net/mlx5: Change POOL_NEXT_SIZE define value and make it global Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 169/294] x86/kaslr: Reduce KASLR entropy on most x86 systems Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 170/294] crypto: ahash - Set default reqsize from ahash_alg Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 171/294] crypto: skcipher - Zap type in crypto_alloc_sync_skcipher Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 172/294] MIPS: Use arch specific syscall name match function Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 173/294] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 174/294] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 175/294] clocksource: mips-gic-timer: Enable counter when CPUs start Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 176/294] scsi: mpt3sas: Send a diag reset if target reset fails Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 177/294] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 178/294] wifi: rtw88: Fix rtw_init_ht_cap() " Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 179/294] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 180/294] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 181/294] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 182/294] EDAC/ie31200: work around false positive build warning Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 183/294] bpf: Prevent unsafe access to the sock fields in the BPF timestamping callback Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 184/294] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 185/294] drm/amd/display: Add support for disconnected eDP streams Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 186/294] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 187/294] RDMA/core: Fix best page size finding when it can cross SG entries Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 188/294] pmdomain: imx: gpcv2: use proper helper for property detection Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 189/294] can: c_can: Use of_property_present() to test existence of DT property Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 190/294] bpf: don't do clean_live_states when state->loop_entry->branches > 0 Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 191/294] eth: mlx4: don't try to complete XDP frames in netpoll Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 192/294] PCI: Fix old_size lower bound in calculate_iosize() too Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 193/294] ACPI: HED: Always initialize before evged Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 194/294] vxlan: Join / leave MC group after remote changes Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 195/294] media: test-drivers: vivid: don't call schedule in loop Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 196/294] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 197/294] net/mlx5: Apply rate-limiting to high temperature warning Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 198/294] firmware: arm_ffa: Reject higher major version as incompatible Sasha Levin
2025-05-05 22:54 ` [PATCH AUTOSEL 6.6 199/294] ASoC: ops: Enforce platform maximum on initial value Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 200/294] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 201/294] ASoC: tas2764: Mark SW_RESET as volatile Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 202/294] ASoC: tas2764: Power up/down amp on mute ops Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 203/294] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 204/294] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 205/294] smack: recognize ipv4 CIPSO w/o categories Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 206/294] smack: Revert "smackfs: Added check catlen" Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 207/294] kunit: tool: Use qboot on QEMU x86_64 Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 208/294] kernfs: Don't re-lock kernfs_root::kernfs_rwsem in kernfs_fop_readdir() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 209/294] kernfs: Acquire kernfs_rwsem in kernfs_get_parent_dentry() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 210/294] kernfs: Acquire kernfs_rwsem in kernfs_notify_workfn() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 211/294] media: i2c: imx219: Correct the minimum vblanking value Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 212/294] media: v4l: Memset argument to 0 before calling get_mbus_config pad op Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 213/294] libbpf: fix LDX/STX/ST CO-RE relocation size adjustment logic Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 214/294] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 215/294] clk: qcom: ipq5018: allow it to be bulid on arm32 Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 216/294] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 217/294] x86/traps: Cleanup and robustify decode_bug() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 218/294] sched: Reduce the default slice to avoid tasks getting an extra tick Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 219/294] serial: sh-sci: Update the suspend/resume support Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 220/294] phy: core: don't require set_mode() callback for phy_get_mode() to work Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 221/294] soundwire: amd: change the soundwire wake enable/disable sequence Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 222/294] drm/amdgpu: Set snoop bit for SDMA for MI series Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 223/294] drm/amd/display: Don't try AUX transactions on disconnected link Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 224/294] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 225/294] drm/amd/display: Update CR AUX RD interval interpretation Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 226/294] drm/amd/display: Initial psr_version with correct setting Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 227/294] drm/amd/display: Increase block_sequence array size Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 228/294] drm/amdgpu: enlarge the VBIOS binary size limit Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 229/294] drm/amd/display/dc: enable oem i2c support for DCE 12.x Sasha Levin
2025-05-06 15:02 ` Alex Deucher
2025-05-20 14:07 ` Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 230/294] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 231/294] scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 232/294] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 233/294] net/mlx5e: set the tx_queue_len for pfifo_fast Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 234/294] net/mlx5e: reduce rep rxq depth to 256 for ECPF Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 235/294] net/mlx5e: reduce the max log mpwrq sz for ECPF and reps Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 236/294] drm/v3d: Add clock handling Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 237/294] wifi: mac80211: don't unconditionally call drv_mgd_complete_tx() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 238/294] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 239/294] net: fec: Refactor MAC reset to function Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 240/294] powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 241/294] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 242/294] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 243/294] r8152: add vendor/device ID pair for Dell Alienware AW1022z Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 244/294] pstore: Change kmsg_bytes storage size to u32 Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 245/294] leds: trigger: netdev: Configure LED blink interval for HW offload Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 246/294] ext4: don't write back data before punch hole in nojournal mode Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 247/294] ext4: remove writable userspace mappings before truncating page cache Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 248/294] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 249/294] wifi: rtw88: Fix __rtw_download_firmware() " Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 250/294] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 251/294] exit: change the release_task() paths to call flush_sigqueue() lockless Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 252/294] hwmon: (xgene-hwmon) use appropriate type for the latency value Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 253/294] f2fs: introduce f2fs_base_attr for global sysfs entries Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 254/294] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 255/294] net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 256/294] vxlan: Annotate FDB data races Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 257/294] ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 258/294] r8169: don't scan PHY addresses > 0 Sasha Levin
2025-05-05 22:55 ` [PATCH AUTOSEL 6.6 259/294] bridge: mdb: Allow replace of a host-joined group Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 260/294] net-sysfs: prevent uncleared queues from being re-added Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 261/294] ice: treat dyn_allowed only as suggestion Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 262/294] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 263/294] rcu: handle unstable rdp in rcu_read_unlock_strict() Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 264/294] rcu: fix header guard for rcu_all_qs() Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 265/294] perf: Avoid the read if the count is already updated Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 266/294] ice: count combined queues using Rx/Tx count Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 267/294] net/mana: fix warning in the writer of client oob Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 268/294] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 269/294] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 270/294] scsi: st: Restore some drive settings after reset Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 271/294] wifi: ath12k: Avoid napi_sync() before napi_enable() Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 272/294] HID: usbkbd: Fix the bit shift number for LED_KANA Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 273/294] arm64: zynqmp: add clock-output-names property in clock nodes Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 274/294] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 275/294] ASoC: rt722-sdca: Add some missing readable registers Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 276/294] drm/ast: Find VBIOS mode from regular display size Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 277/294] bpftool: Fix readlink usage in get_fd_type Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 278/294] firmware: arm_scmi: Relax duplicate name constraint across protocol ids Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 279/294] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 280/294] perf/amd/ibs: Fix ->config to sample period calculation for OP PMU Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 281/294] wifi: rtl8xxxu: retry firmware download on error Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 282/294] wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 283/294] wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 284/294] spi: zynqmp-gqspi: Always acknowledge interrupts Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 285/294] regulator: ad5398: Add device tree support Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 286/294] wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 287/294] accel/qaic: Mask out SR-IOV PCI resources Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 288/294] wifi: ath9k: return by of_get_mac_address Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 289/294] wifi: ath12k: Fix end offset bit definition in monitor ring descriptor Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 290/294] ASoC: hdmi-codec: allow to refine formats actually supported Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 291/294] drm: bridge: adv7511: fill stream capabilities Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 292/294] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 293/294] drm/panel-edp: Add Starry 116KHD024006 Sasha Levin
2025-05-05 22:56 ` [PATCH AUTOSEL 6.6 294/294] drm: Add valid clones check Sasha Levin
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=20250505225634.2688578-138-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=alyssa@rosenzweig.io \
--cc=asahi@lists.linux.dev \
--cc=j@jannau.net \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcan@marcan.st \
--cc=stable@vger.kernel.org \
--cc=sven@svenpeter.dev \
/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