stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Ian Forbes <ian.forbes@broadcom.com>,
	Zack Rusin <zack.rusin@broadcom.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.9 142/281] drm/vmwgfx: Remove STDU logic from generic mode_valid function
Date: Wed, 19 Jun 2024 14:55:01 +0200	[thread overview]
Message-ID: <20240619125615.305948277@linuxfoundation.org> (raw)
In-Reply-To: <20240619125609.836313103@linuxfoundation.org>

6.9-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Ian Forbes <ian.forbes@broadcom.com>

[ Upstream commit dde1de06bd7248fd83c4ce5cf0dbe9e4e95bbb91 ]

STDU has its own mode_valid function now so this logic can be removed from
the generic version.

Fixes: 935f795045a6 ("drm/vmwgfx: Refactor drm connector probing for display modes")

Signed-off-by: Ian Forbes <ian.forbes@broadcom.com>
Signed-off-by: Zack Rusin <zack.rusin@broadcom.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240521184720.767-4-ian.forbes@broadcom.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |  3 ---
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 26 +++++++++-----------------
 2 files changed, 9 insertions(+), 20 deletions(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
index b019a1a1787af..c1430e55474cb 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
@@ -1066,9 +1066,6 @@ void vmw_kms_cursor_snoop(struct vmw_surface *srf,
 int vmw_kms_write_svga(struct vmw_private *vmw_priv,
 		       unsigned width, unsigned height, unsigned pitch,
 		       unsigned bpp, unsigned depth);
-bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
-				uint32_t pitch,
-				uint32_t height);
 int vmw_kms_present(struct vmw_private *dev_priv,
 		    struct drm_file *file_priv,
 		    struct vmw_framebuffer *vfb,
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
index 84ae4e10a2ebe..42fcf4698aba9 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
@@ -2157,13 +2157,12 @@ int vmw_kms_write_svga(struct vmw_private *vmw_priv,
 	return 0;
 }
 
+static
 bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
-				uint32_t pitch,
-				uint32_t height)
+				u64 pitch,
+				u64 height)
 {
-	return ((u64) pitch * (u64) height) < (u64)
-		((dev_priv->active_display_unit == vmw_du_screen_target) ?
-		 dev_priv->max_primary_mem : dev_priv->vram_size);
+	return (pitch * height) < (u64)dev_priv->vram_size;
 }
 
 /**
@@ -2859,25 +2858,18 @@ int vmw_du_helper_plane_update(struct vmw_du_update_plane *update)
 enum drm_mode_status vmw_connector_mode_valid(struct drm_connector *connector,
 					      struct drm_display_mode *mode)
 {
+	enum drm_mode_status ret;
 	struct drm_device *dev = connector->dev;
 	struct vmw_private *dev_priv = vmw_priv(dev);
-	u32 max_width = dev_priv->texture_max_width;
-	u32 max_height = dev_priv->texture_max_height;
 	u32 assumed_cpp = 4;
 
 	if (dev_priv->assume_16bpp)
 		assumed_cpp = 2;
 
-	if (dev_priv->active_display_unit == vmw_du_screen_target) {
-		max_width  = min(dev_priv->stdu_max_width,  max_width);
-		max_height = min(dev_priv->stdu_max_height, max_height);
-	}
-
-	if (max_width < mode->hdisplay)
-		return MODE_BAD_HVALUE;
-
-	if (max_height < mode->vdisplay)
-		return MODE_BAD_VVALUE;
+	ret = drm_mode_validate_size(mode, dev_priv->texture_max_width,
+				     dev_priv->texture_max_height);
+	if (ret != MODE_OK)
+		return ret;
 
 	if (!vmw_kms_validate_mode_vram(dev_priv,
 					mode->hdisplay * assumed_cpp,
-- 
2.43.0




  parent reply	other threads:[~2024-06-19 13:18 UTC|newest]

Thread overview: 311+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-19 12:52 [PATCH 6.9 000/281] 6.9.6-rc1 review Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 001/281] wifi: ath11k: fix WCN6750 firmware crash caused by 17 num_vdevs Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 002/281] wifi: ath11k: move power type check to ASSOC stage when connecting to 6 GHz AP Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 003/281] cpufreq: amd-pstate: Unify computation of {max,min,nominal,lowest_nonlinear}_freq Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 004/281] cpufreq: amd-pstate: Add quirk for the pstate CPPC capabilities missing Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 005/281] cpufreq: amd-pstate: remove global header file Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 006/281] wifi: mac80211: mesh: Fix leak of mesh_preq_queue objects Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 007/281] wifi: mac80211: Fix deadlock in ieee80211_sta_ps_deliver_wakeup() Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 008/281] wifi: cfg80211: fully move wiphy work to unbound workqueue Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 009/281] wifi: cfg80211: Lock wiphy in cfg80211_get_station Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 010/281] wifi: cfg80211: pmsr: use correct nla_get_uX functions Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 011/281] wifi: mac80211: pass proper link id for channel switch started notification Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 012/281] wifi: iwlwifi: mvm: dont initialize csa_work twice Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 013/281] wifi: iwlwifi: mvm: revert gen2 TX A-MPDU size to 64 Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 014/281] wifi: iwlwifi: mvm: set properly mac header Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 015/281] wifi: iwlwifi: dbg_ini: move iwl_dbg_tlv_free outside of debugfs ifdef Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 016/281] wifi: iwlwifi: mvm: check n_ssids before accessing the ssids Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 017/281] wifi: iwlwifi: mvm: dont read past the mfuart notifcation Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 018/281] wifi: mac80211: fix Spatial Reuse element size check Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 019/281] wifi: mac80211: correctly parse Spatial Reuse Parameter Set element Greg Kroah-Hartman
2024-06-19 12:52 ` [PATCH 6.9 020/281] scsi: ufs: mcq: Fix error output and clean up ufshcd_mcq_abort() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 021/281] RISC-V: KVM: No need to use mask when hart-index-bit is 0 Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 022/281] RISC-V: KVM: Fix incorrect reg_subtype labels in kvm_riscv_vcpu_set_reg_isa_ext function Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 023/281] virtio_net: fix possible dim status unrecoverable Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 024/281] ax25: Fix refcount imbalance on inbound connections Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 025/281] ax25: Replace kfree() in ax25_dev_free() with ax25_dev_put() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 026/281] net/ncsi: Fix the multi thread manner of NCSI driver Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 027/281] net: phy: micrel: fix KSZ9477 PHY issues after suspend/resume Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 028/281] bpf: Fix a potential use-after-free in bpf_link_free() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 029/281] KVM: SEV-ES: Disallow SEV-ES guests when X86_FEATURE_LBRV is absent Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 030/281] KVM: SEV-ES: Delegate LBR virtualization to the processor Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 031/281] vmxnet3: disable rx data ring on dma allocation failure Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 032/281] ipv6: ioam: block BH from ioam6_output() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 033/281] ipv6: sr: block BH in seg6_output_core() and seg6_input_core() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 034/281] net: tls: fix marking packets as decrypted Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 035/281] bpf: Set run context for rawtp test_run callback Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 036/281] octeontx2-af: Always allocate PF entries from low prioriy zone Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 037/281] net/smc: avoid overwriting when adjusting sock bufsizes Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 038/281] net: phy: Micrel KSZ8061: fix errata solution not taking effect problem Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 039/281] ionic: fix kernel panic in XDP_TX action Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 040/281] net: sched: sch_multiq: fix possible OOB write in multiq_tune() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 041/281] tcp: count CLOSE-WAIT sockets for TCP_MIB_CURRESTAB Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 042/281] mptcp: count CLOSE-WAIT sockets for MPTCP_MIB_CURRESTAB Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 043/281] rtnetlink: make the "split" NLM_DONE handling generic Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 044/281] net: ethernet: mtk_eth_soc: handle dma buffer size soc specific Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 045/281] net/mlx5: Stop waiting for PCI if pci channel is offline Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 046/281] net/mlx5: Always stop health timer during driver removal Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 047/281] net/mlx5: Fix tainted pointer delete is case of flow rules creation fail Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 048/281] net/sched: taprio: always validate TCA_TAPRIO_ATTR_PRIOMAP Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 049/281] ptp: Fix error message on failed pin verification Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 050/281] ice: fix iteration of TLVs in Preserved Fields Area Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 051/281] ice: fix reads from NVM Shadow RAM on E830 and E825-C devices Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 052/281] ice: remove af_xdp_zc_qps bitmap Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 053/281] ice: add flag to distinguish reset from .ndo_bpf in XDP rings config Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 054/281] ice: map XDP queues to vectors in ice_vsi_map_rings_to_vectors() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 055/281] igc: Fix Energy Efficient Ethernet support declaration Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 056/281] net: wwan: iosm: Fix tainted pointer delete is case of region creation fail Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 057/281] af_unix: Set sk->sk_state under unix_state_lock() for truly disconencted peer Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 058/281] af_unix: Annodate data-races around sk->sk_state for writers Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 059/281] af_unix: Annotate data-race of sk->sk_state in unix_inq_len() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 060/281] af_unix: Annotate data-races around sk->sk_state in unix_write_space() and poll() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 061/281] af_unix: Annotate data-race of sk->sk_state in unix_stream_connect() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 062/281] af_unix: Annotate data-races around sk->sk_state in sendmsg() and recvmsg() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 063/281] af_unix: Annotate data-race of sk->sk_state in unix_stream_read_skb() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 064/281] af_unix: Annotate data-races around sk->sk_state in UNIX_DIAG Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 065/281] af_unix: Annotate data-races around sk->sk_sndbuf Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 066/281] af_unix: Annotate data-race of net->unx.sysctl_max_dgram_qlen Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 067/281] af_unix: Use unix_recvq_full_lockless() in unix_stream_connect() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 068/281] af_unix: Use skb_queue_empty_lockless() in unix_release_sock() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 069/281] af_unix: Use skb_queue_len_lockless() in sk_diag_show_rqlen() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 070/281] af_unix: Annotate data-race of sk->sk_shutdown in sk_diag_fill() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 071/281] ipv6: fix possible race in __fib6_drop_pcpu_from() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 072/281] net: ethtool: fix the error condition in ethtool_get_phy_stats_ethtool() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 073/281] drm/xe: Use ordered WQ for G2H handler Greg Kroah-Hartman
2024-06-19 14:03   ` Francois Dugast
2024-06-19 14:16     ` Greg Kroah-Hartman
2024-06-25 12:03       ` Rodrigo Vivi
2024-06-25 12:28         ` Greg Kroah-Hartman
2024-06-25 12:41           ` Jani Nikula
2024-06-25 12:52             ` Greg Kroah-Hartman
2024-06-25 19:02               ` Rodrigo Vivi
2024-06-25 20:12                 ` Greg Kroah-Hartman
2024-06-27 23:32                   ` Lucas De Marchi
2024-07-02  8:45                     ` Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 074/281] x86/cpu: Get rid of an unnecessary local variable in get_cpu_address_sizes() Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 075/281] x86/cpu: Provide default cache line size if not enumerated Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 076/281] selftests/mm: ksft_exit functions do not return Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 077/281] selftests/mm: compaction_test: fix bogus test success and reduce probability of OOM-killer invocation Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 078/281] eventfs: Update all the eventfs_inodes from the events descriptor Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 079/281] .editorconfig: remove trim_trailing_whitespace option Greg Kroah-Hartman
2024-06-19 12:53 ` [PATCH 6.9 080/281] io_uring/rsrc: dont lock while !TASK_RUNNING Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 081/281] io_uring: fix cancellation overwriting req->flags Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 082/281] USB: class: cdc-wdm: Fix CPU lockup caused by excessive log messages Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 083/281] kcov, usb: disable interrupts in kcov_remote_start_usb_softirq Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 084/281] USB: xen-hcd: Traverse host/ when CONFIG_USB_XEN_HCD is selected Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 085/281] usb: typec: tcpm: fix use-after-free case in tcpm_register_source_caps Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 086/281] usb: typec: tcpm: Ignore received Hard Reset in TOGGLING state Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 087/281] mei: me: release irq in mei_me_pci_resume error path Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 088/281] mei: vsc: Dont stop/restart mei device during system suspend/resume Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 089/281] tty: n_tty: Fix buffer offsets when lookahead is used Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 090/281] serial: 8250_pxa: Configure tx_loadsz to match FIFO IRQ level Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 091/281] serial: port: Dont block system suspend even if bytes are left to xmit Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 092/281] landlock: Fix d_parent walk Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 093/281] jfs: xattr: fix buffer overflow for invalid xattr Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 094/281] xhci: Set correct transferred length for cancelled bulk transfers Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 095/281] xhci: Apply reset resume quirk to Etron EJ188 xHCI host Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 096/281] xhci: Handle TD clearing for multiple streams case Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 097/281] xhci: Apply broken streams quirk to Etron EJ188 xHCI host Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 098/281] thunderbolt: debugfs: Fix margin debugfs node creation condition Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 099/281] ata: libata-scsi: Set the RMB bit only for removable media devices Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 100/281] scsi: core: Disable CDL by default Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 101/281] scsi: mpi3mr: Fix ATA NCQ priority support Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 102/281] scsi: mpt3sas: Avoid test/set_bit() operating in non-allocated memory Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 103/281] scsi: sd: Use READ(16) when reading block zero on large capacity disks Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 104/281] gve: Clear napi->skb before dev_kfree_skb_any() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 105/281] powerpc/85xx: fix compile error without CONFIG_CRASH_DUMP Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 106/281] powerpc/uaccess: Fix build errors seen with GCC 13/14 Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 107/281] HID: nvidia-shield: Add missing check for input_ff_create_memless Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 108/281] cxl/test: Add missing vmalloc.h for tools/testing/cxl/test/mem.c Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 109/281] cxl/region: Fix memregion leaks in devm_cxl_add_region() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 110/281] cachefiles: add output string to cachefiles_obj_[get|put]_ondemand_fd Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 111/281] cachefiles: remove requests from xarray during flushing requests Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 112/281] cachefiles: fix slab-use-after-free in cachefiles_ondemand_get_fd() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 113/281] cachefiles: fix slab-use-after-free in cachefiles_ondemand_daemon_read() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 114/281] cachefiles: add spin_lock for cachefiles_ondemand_info Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 115/281] cachefiles: remove err_put_fd label in cachefiles_ondemand_daemon_read() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 116/281] cachefiles: never get a new anonymous fd if ondemand_id is valid Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 117/281] cachefiles: defer exposing anon_fd until after copy_to_user() succeeds Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 118/281] cachefiles: flush all requests after setting CACHEFILES_DEAD Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 119/281] kselftest/alsa: Ensure _GNU_SOURCE is defined Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 120/281] selftests/ftrace: Fix to check required event file Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 121/281] clk: sifive: Do not register clkdevs for PRCI clocks Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 122/281] NFSv4.1 enforce rootpath check in fs_location query Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 123/281] SUNRPC: return proper error from gss_wrap_req_priv Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 124/281] NFS: add barriers when testing for NFS_FSDATA_BLOCKED Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 125/281] selftests/tracing: Fix event filter test to retry up to 10 times Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 126/281] selftests/futex: dont pass a const char* to asprintf(3) Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 127/281] nvme: fix nvme_pr_* status code parsing Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 128/281] drm/panel: sitronix-st7789v: Add check for of_drm_get_panel_orientation Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 129/281] platform/x86: dell-smbios: Fix wrong token data in sysfs Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 130/281] gpio: tqmx86: fix typo in Kconfig label Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 131/281] gpio: tqmx86: introduce shadow register for GPIO output value Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 132/281] gpio: tqmx86: store IRQ trigger type and unmask status separately Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 133/281] gpio: tqmx86: fix broken IRQ_TYPE_EDGE_BOTH interrupt type Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 134/281] HID: core: remove unnecessary WARN_ON() in implement() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 135/281] iommu/amd: Fix sysfs leak in iommu init Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 136/281] iommu: Return right value in iommu_sva_bind_device() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 137/281] io_uring/io-wq: Use set_bit() and test_bit() at worker->flags Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 138/281] io_uring/io-wq: avoid garbage value of match in io_wq_enqueue() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 139/281] HID: logitech-dj: Fix memory leak in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2024-06-19 12:54 ` [PATCH 6.9 140/281] drm/vmwgfx: Filter modes which exceed graphics memory Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 141/281] drm/vmwgfx: 3D disabled should not effect STDU memory limits Greg Kroah-Hartman
2024-06-19 12:55 ` Greg Kroah-Hartman [this message]
2024-06-19 12:55 ` [PATCH 6.9 143/281] drm/vmwgfx: Dont memcmp equivalent pointers Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 144/281] af_unix: Annotate data-race of sk->sk_state in unix_accept() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 145/281] modpost: do not warn about missing MODULE_DESCRIPTION() for vmlinux.o Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 146/281] net: sfp: Always call `sfp_sm_mod_remove()` on remove Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 147/281] net: hns3: fix kernel crash problem in concurrent scenario Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 148/281] net: hns3: add cond_resched() to hns3 ring buffer init process Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 149/281] thermal: core: Do not fail cdev registration because of invalid initial state Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 150/281] liquidio: Adjust a NULL pointer handling path in lio_vf_rep_copy_packet Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 151/281] net: stmmac: dwmac-qcom-ethqos: Configure host DMA width Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 152/281] netdevsim: fix backwards compatibility in nsim_get_iflink() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 153/281] drm/komeda: check for error-valued pointer Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 154/281] drm/bridge/panel: Fix runtime warning on panel bridge release Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 155/281] tcp: fix race in tcp_v6_syn_recv_sock() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 156/281] net dsa: qca8k: fix usages of device_get_named_child_node() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 157/281] geneve: Fix incorrect inner network header offset when innerprotoinherit is set Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 158/281] net/mlx5e: Fix features validation check for tunneled UDP (non-VXLAN) packets Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 159/281] Bluetooth: hci_sync: Fix not using correct handle Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 160/281] Bluetooth: L2CAP: Fix rejecting L2CAP_CONN_PARAM_UPDATE_REQ Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 161/281] Bluetooth: fix connection setup in l2cap_connect Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 162/281] net/sched: initialize noop_qdisc owner Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 163/281] tcp: use signed arithmetic in tcp_rtx_probe0_timed_out() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 164/281] drm/nouveau: dont attempt to schedule hpd_work on headless cards Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 165/281] netfilter: nft_inner: validate mandatory meta and payload Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 166/281] netfilter: ipset: Fix race between namespace cleanup and gc in the list:set type Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 167/281] x86/asm: Use %c/%n instead of %P operand modifier in asm templates Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 168/281] x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 169/281] scsi: ufs: core: Quiesce request queues before checking pending cmds Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 170/281] net: pse-pd: Use EOPNOTSUPP error code instead of ENOTSUPP Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 171/281] gve: ignore nonrelevant GSO type bits when processing TSO headers Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 172/281] net: stmmac: replace priv->speed with the portTransmitRate from the tc-cbs parameters Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 173/281] block: sed-opal: avoid possible wrong address reference in read_sed_opal_key() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 174/281] block: fix request.queuelist usage in flush Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 175/281] nvmet-passthru: propagate status from id override functions Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 176/281] net/ipv6: Fix the RT cache flush via sysctl using a previous delay Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 177/281] net: bridge: mst: pass vlan group directly to br_mst_vlan_set_state Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 178/281] net: bridge: mst: fix suspicious rcu usage in br_mst_set_state Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 179/281] drm/xe/xe_gt_idle: use GT forcewake domain assertion Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 180/281] drm/xe: flush engine buffers before signalling user fence on all engines Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 181/281] drm/xe: Remove mem_access from guc_pc calls Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 182/281] drm/xe: move disable_c6 call Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 183/281] ionic: fix use after netif_napi_del() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 184/281] bnxt_en: Cap the size of HWRM_PORT_PHY_QCFG forwarded response Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 185/281] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 186/281] bnxt_en: Adjust logging of firmware messages in case of released token in __hwrm_send() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 187/281] misc: microchip: pci1xxxx: fix double free in the error handling of gp_aux_bus_probe() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 188/281] ksmbd: move leading slash check to smb2_get_name() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 189/281] ksmbd: fix missing use of get_write in in smb2_set_ea() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 190/281] tick/nohz_full: Dont abuse smp_call_function_single() in tick_setup_device() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 191/281] leds: class: Revert: "If no default trigger is given, make hw_control trigger the default trigger" Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 192/281] x86/boot: Dont add the EFI stub to targets, again Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 193/281] iio: adc: ad9467: fix scan type sign Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 194/281] iio: dac: ad5592r: fix temperature channel scaling value Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 195/281] iio: imu: bmi323: Fix trigger notification in case of error Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 196/281] iio: invensense: fix odr switching to same value Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 197/281] iio: pressure: bmp280: Fix BMP580 temperature reading Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 198/281] iio: temperature: mlx90635: Fix ERR_PTR dereference in mlx90635_probe() Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 199/281] iio: imu: inv_icm42600: delete unneeded update watermark call Greg Kroah-Hartman
2024-06-19 12:55 ` [PATCH 6.9 200/281] drivers: core: synchronize really_probe() and dev_uevent() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 201/281] parisc: Try to fix random segmentation faults in package builds Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 202/281] RAS/AMD/ATL: Fix MI300 bank hash Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 203/281] RAS/AMD/ATL: Use system settings for MI300 DRAM to normalized address translation Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 204/281] ACPI: x86: Force StorageD3Enable on more products Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 205/281] thermal: ACPI: Invalidate trip points with temperature of 0 or below Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 206/281] x86/mm/numa: Use NUMA_NO_NODE when calling memblock_set_node() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 207/281] memblock: make memblock_set_node() also warn about use of MAX_NUMNODES Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 208/281] drm/exynos/vidi: fix memory leak in .get_modes() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 209/281] drm/exynos: hdmi: report safe 640x480 mode as a fallback when no EDID found Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 210/281] mptcp: ensure snd_una is properly initialized on connect Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 211/281] mptcp: pm: inc RmAddr MIB counter once per RM_ADDR ID Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 212/281] mptcp: pm: update add_addr counters after connect Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 213/281] irqchip/sifive-plic: Chain to parent IRQ after handlers are ready Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 214/281] irqchip/gic-v3-its: Fix potential race condition in its_vlpi_prop_update() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 215/281] x86/kexec: Fix bug with call depth tracking Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 216/281] x86/amd_nb: Check for invalid SMN reads Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 217/281] perf/core: Fix missing wakeup when waiting for context reference Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 218/281] perf auxtrace: Fix multiple use of --itrace option Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 219/281] perf script: Show also errors for --insn-trace option Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 220/281] wifi: cfg80211: validate HE operation element parsing Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 221/281] wifi: rtlwifi: Ignore IEEE80211_CONF_CHANGE_RETRY_LIMITS Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 222/281] wifi: mt76: mt7615: add missing chanctx ops Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 223/281] locking/atomic: scripts: fix ${atomic}_sub_and_test() kerneldoc Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 224/281] riscv: fix overlap of allocated page and PTR_ERR Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 225/281] tracing/selftests: Fix kprobe event name test for .isra. functions Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 226/281] kheaders: explicitly define file modes for archived headers Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 227/281] null_blk: Print correct max open zones limit in null_init_zoned_dev() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 228/281] ata: ahci: Do not apply Intel PCS quirk on Intel Alder Lake Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 229/281] ata: libata-core: Add ATA_HORKAGE_NOLPM for Apacer AS340 Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 230/281] ata: libata-core: Add ATA_HORKAGE_NOLPM for Crucial CT240BX500SSD1 Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 231/281] ata: libata-core: Add ATA_HORKAGE_NOLPM for AMD Radeon S3 SSD Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 232/281] sock_map: avoid race between sock_map_close and sk_psock_put Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 233/281] dma-buf: handle testing kthreads creation failure Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 234/281] vmci: prevent speculation leaks by sanitizing event in event_deliver() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 235/281] spmi: hisi-spmi-controller: Do not override device identifier Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 236/281] knfsd: LOOKUP can return an illegal error value Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 237/281] fs/proc: fix softlockup in __read_vmcore Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 238/281] kexec: fix the unexpected kexec_dprintk() macro Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 239/281] ocfs2: update inode fsync transaction id in ocfs2_unlink and ocfs2_link Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 240/281] ocfs2: use coarse time for new created files Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 241/281] ocfs2: fix races between hole punching and AIO+DIO Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 242/281] dm-integrity: set discard_granularity to logical block size Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 243/281] PCI: rockchip-ep: Remove wrong mask on subsys_vendor_id Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 244/281] dmaengine: axi-dmac: fix possible race in remove() Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 245/281] drm/bridge: aux-hpd-bridge: correct devm_drm_dp_hpd_bridge_add() stub Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 246/281] remoteproc: k3-r5: Wait for core0 power-up before powering up core1 Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 247/281] remoteproc: k3-r5: Do not allow core1 to power up before core0 via sysfs Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 248/281] iio: adc: axi-adc: make sure AXI clock is enabled Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 249/281] iio: temperature: mcp9600: Fix temperature reading for negative values Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 250/281] iio: invensense: fix interrupt timestamp alignment Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 251/281] drm/mst: Fix NULL pointer dereference at drm_dp_add_payload_part2 Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 252/281] riscv: rewrite __kernel_map_pages() to fix sleeping in invalid context Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 253/281] riscv: force PAGE_SIZE linear mapping if debug_pagealloc is enabled Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 254/281] rtla/timerlat: Simplify "no value" printing on top Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 255/281] rtla/auto-analysis: Replace \t with spaces Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 256/281] drm/i915/gt: Disarm breadcrumbs if engines are already idle Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 257/281] drm/shmem-helper: Fix BUG_ON() on mmap(PROT_WRITE, MAP_PRIVATE) Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 258/281] drm/xe: Properly handle alloc_guc_id() failure Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 259/281] drm/i915/dpt: Make DPT object unshrinkable Greg Kroah-Hartman
2024-06-19 12:56 ` [PATCH 6.9 260/281] drm/i915: Fix audio component initialization Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 261/281] intel_th: pci: Add Granite Rapids support Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 262/281] intel_th: pci: Add Granite Rapids SOC support Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 263/281] intel_th: pci: Add Sapphire " Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 264/281] intel_th: pci: Add Meteor Lake-S support Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 265/281] intel_th: pci: Add Lunar Lake support Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 266/281] pmdomain: ti-sci: Fix duplicate PD referrals Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 267/281] btrfs: zoned: fix use-after-free due to race with dev replace Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 268/281] wifi: iwlwifi: mvm: support iwl_dev_tx_power_cmd_v8 Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 269/281] wifi: iwlwifi: mvm: fix a crash on 7265 Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 270/281] mm/huge_memory: dont unpoison huge_zero_folio Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 271/281] remoteproc: k3-r5: Jump to error handling labels in start/stop errors Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 272/281] greybus: Fix use-after-free bug in gb_interface_release due to race condition Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 273/281] ima: Fix use-after-free on a dentrys dname.name Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 274/281] serial: 8250_dw: Dont use struct dw8250_data outside of 8250_dw Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 275/281] dt-bindings: usb: realtek,rts5411: Add missing "additionalProperties" on child nodes Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 276/281] usb-storage: alauda: Check whether the media is initialized Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 277/281] mei: vsc: Fix wrong invocation of ACPI SID method Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 278/281] misc: microchip: pci1xxxx: Fix a memory leak in the error handling of gp_aux_bus_probe() Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 279/281] i2c: at91: Fix the functionality flags of the slave-only interface Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 280/281] i2c: designware: " Greg Kroah-Hartman
2024-06-19 12:57 ` [PATCH 6.9 281/281] zap_pid_ns_processes: clear TIF_NOTIFY_SIGNAL along with TIF_SIGPENDING Greg Kroah-Hartman
2024-06-19 14:51 ` [PATCH 6.9 000/281] 6.9.6-rc1 review Florian Fainelli
2024-06-19 17:08 ` SeongJae Park
2024-06-19 19:19 ` Jon Hunter
2024-06-19 20:57 ` Pavel Machek
2024-06-19 21:15 ` Allen
2024-06-20  3:43 ` Kelsey Steele
2024-06-20  4:56 ` Bagas Sanjaya
2024-06-20  6:34 ` Peter Schneider
2024-06-20 11:44 ` Mark Brown
2024-06-20 11:51 ` Naresh Kamboju
2024-06-20 12:29   ` Greg Kroah-Hartman
2024-06-20 13:14     ` Naresh Kamboju
2024-06-20 13:53       ` David Hildenbrand
2024-06-20 14:02         ` Naresh Kamboju
2024-06-20 14:20           ` David Hildenbrand
2024-06-20 15:39             ` Naresh Kamboju
2024-06-20 19:31               ` David Hildenbrand
2024-06-20 14:18 ` Ron Economos
2024-06-20 21:34 ` 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=20240619125615.305948277@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ian.forbes@broadcom.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=zack.rusin@broadcom.com \
    /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).