All of lore.kernel.org
 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,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Vinod Koul <vkoul@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 122/313] phy: phy-can-transceiver: Skip warning if no "max-bitrate"
Date: Mon, 30 Jan 2023 14:49:17 +0100	[thread overview]
Message-ID: <20230130134342.326519131@linuxfoundation.org> (raw)
In-Reply-To: <20230130134336.532886729@linuxfoundation.org>

From: Geert Uytterhoeven <geert+renesas@glider.be>

[ Upstream commit bc30c15f275484f9b9fe27c2fa0895f3022d9943 ]

According to the DT bindings, the "max-bitrate" property is optional.
However, when it is not present, a warning is printed.
Fix this by adding a missing check for -EINVAL.

Fixes: a4a86d273ff1b6f7 ("phy: phy-can-transceiver: Add support for generic CAN transceiver driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/88e158f97dd52ebaa7126cd9631f34764b9c0795.1674037334.git.geert+renesas@glider.be
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/phy/phy-can-transceiver.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/phy/phy-can-transceiver.c b/drivers/phy/phy-can-transceiver.c
index 95c6dbb52da7..ce511ad5d369 100644
--- a/drivers/phy/phy-can-transceiver.c
+++ b/drivers/phy/phy-can-transceiver.c
@@ -99,6 +99,7 @@ static int can_transceiver_phy_probe(struct platform_device *pdev)
 	struct gpio_desc *standby_gpio;
 	struct gpio_desc *enable_gpio;
 	u32 max_bitrate = 0;
+	int err;
 
 	can_transceiver_phy = devm_kzalloc(dev, sizeof(struct can_transceiver_phy), GFP_KERNEL);
 	if (!can_transceiver_phy)
@@ -124,8 +125,8 @@ static int can_transceiver_phy_probe(struct platform_device *pdev)
 		return PTR_ERR(phy);
 	}
 
-	device_property_read_u32(dev, "max-bitrate", &max_bitrate);
-	if (!max_bitrate)
+	err = device_property_read_u32(dev, "max-bitrate", &max_bitrate);
+	if ((err != -EINVAL) && !max_bitrate)
 		dev_warn(dev, "Invalid value for transceiver max bitrate. Ignoring bitrate limit\n");
 	phy->attrs.max_link_rate = max_bitrate;
 
-- 
2.39.0




  parent reply	other threads:[~2023-01-30 13:59 UTC|newest]

Thread overview: 327+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-30 13:47 [PATCH 6.1 000/313] 6.1.9-rc1 review Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 001/313] memory: tegra: Remove clients SID override programming Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 002/313] memory: atmel-sdramc: Fix missing clk_disable_unprepare in atmel_ramc_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 003/313] memory: mvebu-devbus: Fix missing clk_disable_unprepare in mvebu_devbus_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 004/313] arm64: dts: qcom: sc8280xp: fix primary USB-DP PHY reset Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 005/313] dmaengine: qcom: gpi: Set link_rx bit on GO TRE for rx operation Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 006/313] dmaengine: ti: k3-udma: Do conditional decrement of UDMA_CHAN_RT_PEER_BCNT_REG Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 007/313] soc: imx: imx8mp-blk-ctrl: enable global pixclk with HDMI_TX_PHY PD Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 008/313] arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 009/313] ARM: dts: imx6ul-pico-dwarf: Use clock-frequency Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 010/313] ARM: dts: imx7d-pico: " Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 011/313] ARM: dts: imx6qdl-gw560x: Remove incorrect uart-has-rtscts Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 012/313] arm64: dts: verdin-imx8mm: fix dahlia audio playback Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 013/313] arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 014/313] arm64: dts: verdin-imx8mm: fix dev board audio playback Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 015/313] arm64: dts: imx93-11x11-evk: correct clock and strobe pad setting Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 016/313] ARM: imx: add missing of_node_put() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 017/313] soc: imx: imx8mp-blk-ctrl: dont set power device name Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 018/313] arm64: dts: imx8mp: Fix missing GPC Interrupt Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 019/313] arm64: dts: imx8mp: Fix power-domain typo Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 020/313] arm64: dts: imx8mp-evk: pcie0-refclk cosmetic cleanup Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 021/313] HID: intel_ish-hid: Add check for ishtp_dma_tx_map Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 022/313] arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 023/313] soc: imx8m: Fix incorrect check for of_clk_get_by_name() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 024/313] reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST Greg Kroah-Hartman
2023-01-30 13:47   ` Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 025/313] reset: uniphier-glue: Fix possible null-ptr-deref Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 026/313] EDAC/highbank: Fix memory leak in highbank_mc_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 027/313] firmware: arm_scmi: Harden shared memory access in fetch_response Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 028/313] firmware: arm_scmi: Harden shared memory access in fetch_notification Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 029/313] firmware: arm_scmi: Fix virtio channels cleanup on shutdown Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 030/313] interconnect: qcom: msm8996: Provide UFS clocks to A2NoC Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 031/313] interconnect: qcom: msm8996: Fix regmap max_register values Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 032/313] HID: amd_sfh: Fix warning unwind goto Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 033/313] tomoyo: fix broken dependency on *.conf.default Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 034/313] blk-mq: move the srcu_struct used for quiescing to the tagset Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 035/313] blk-crypto: pass a gendisk to blk_crypto_sysfs_{,un}register Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 036/313] block: factor out a blk_debugfs_remove helper Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 037/313] block: fix error unwinding in blk_register_queue Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 038/313] block: untangle request_queue refcounting from sysfs Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 039/313] block: mark blk_put_queue as potentially blocking Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 040/313] block: Drop spurious might_sleep() from blk_put_queue() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 041/313] RDMA/rxe: Fix inaccurate constants in rxe_type_info Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 042/313] RDMA/rxe: Prevent faulty rkey generation Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 043/313] erofs: fix kvcalloc() misuse with __GFP_NOFAIL Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 044/313] arm64: dts: marvell: AC5/AC5X: Fix address for UART1 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 045/313] RDMA/core: Fix ib block iterator counter overflow Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 046/313] IB/hfi1: Reject a zero-length user expected buffer Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 047/313] IB/hfi1: Reserve user expected TIDs Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 048/313] IB/hfi1: Fix expected receive setup error exit issues Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 049/313] IB/hfi1: Immediately remove invalid memory from hardware Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 050/313] IB/hfi1: Remove user expected buffer invalidate race Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 051/313] affs: initialize fsdata in affs_truncate() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 052/313] PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 053/313] arm64: dts: qcom: msm8992: Dont use sfpb mutex Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 054/313] arm64: dts: qcom: msm8992-libra: Fix the memory map Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 055/313] kbuild: export top-level LDFLAGS_vmlinux only to scripts/Makefile.vmlinux Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 056/313] kbuild: fix make modules error when CONFIG_DEBUG_INFO_BTF_MODULES=y Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 057/313] phy: ti: fix Kconfig warning and operator precedence Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 058/313] drm/msm/gpu: Fix potential double-free Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 059/313] NFSD: fix use-after-free in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 060/313] ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 061/313] drm/vc4: bo: Fix drmm_mutex_init memory hog Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 062/313] phy: usb: sunplus: Fix potential null-ptr-deref in sp_usb_phy_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 063/313] bpf: hash map, avoid deadlock with suitable hash mask Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 064/313] amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 065/313] amd-xgbe: Delay AN timeout during KR training Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 066/313] bpf: Fix pointer-leak due to insufficient speculative store bypass mitigation Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 067/313] drm/vc4: bo: Fix unused variable warning Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 068/313] phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in rockchip_usb2phy_power_on() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 069/313] net: nfc: Fix use-after-free in local_cleanup() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 070/313] net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 071/313] net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 072/313] net: lan966x: add missing fwnode_handle_put() for ports node Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 073/313] sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 074/313] gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 075/313] gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 076/313] wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 077/313] pinctrl: rockchip: fix reading pull type on rk3568 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 078/313] net: stmmac: Fix queue statistics reading Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 079/313] net/sched: sch_taprio: fix possible use-after-free Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 080/313] l2tp: convert l2tp_tunnel_list to idr Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 081/313] l2tp: close all race conditions in l2tp_tunnel_register() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 082/313] net: usb: sr9700: Handle negative len Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 083/313] net: mdio: validate parameter addr in mdiobus_get_phy() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 084/313] HID: check empty report_list in hid_validate_values() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 085/313] HID: check empty report_list in bigben_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 086/313] net: stmmac: fix invalid call to mdiobus_get_phy() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 087/313] pinctrl: rockchip: fix mux route data for rk3568 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 088/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcor-som Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 089/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcom-som Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 090/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp157c-emstamp-argon Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 091/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp151a-prtt1l Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 092/313] HID: revert CHERRY_MOUSE_000C quirk Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 093/313] block/rnbd-clt: fix wrong max ID in ida_alloc_max Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 094/313] usb: ucsi: Ensure connector delayed work items are flushed Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 095/313] usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 096/313] usb: gadget: f_fs: Ensure ep0req is dequeued before free_request Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 097/313] netfilter: conntrack: handle tcp challenge acks during connection reuse Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 098/313] Bluetooth: Fix a buffer overflow in mgmt_mesh_add() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 099/313] Bluetooth: hci_conn: Fix memory leaks Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 100/313] Bluetooth: hci_sync: fix memory leak in hci_update_adv_data() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 101/313] Bluetooth: ISO: Avoid circular locking dependency Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 102/313] Bluetooth: ISO: Fix possible " Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 103/313] Bluetooth: hci_event: Fix Invalid wait context Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 104/313] Bluetooth: Fix possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 105/313] net: ipa: disable ipa interrupt during suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 106/313] net/mlx5e: Avoid false lock dependency warning on tc_ht even more Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 107/313] net/mlx5: E-switch, Fix setting of reserved fields on MODIFY_SCHEDULING_ELEMENT Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 108/313] net/mlx5e: QoS, Fix wrongfully setting parent_element_id " Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 109/313] net/mlx5e: Set decap action based on attr for sample Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 110/313] net/mlx5: E-switch, Fix switchdev mode after devlink reload Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 111/313] net: mlx5: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 112/313] drm/panfrost: fix GENERIC_ATOMIC64 dependency Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 113/313] dmaengine: Fix double increment of client_count in dma_chan_get() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 114/313] net: macb: fix PTP TX timestamp failure due to packet padding Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 115/313] virtio-net: correctly enable callback during start_xmit Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 116/313] l2tp: prevent lockdep issue in l2tp_tunnel_register() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 117/313] HID: betop: check shape of output reports Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 118/313] drm/i915/selftests: Unwind hugepages to drop wakeref on error Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 119/313] cifs: fix potential deadlock in cache_refresh_path() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 120/313] dmaengine: xilinx_dma: call of_node_put() when breaking out of for_each_child_of_node() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 121/313] dmaengine: tegra: Fix memory leak in terminate_all() Greg Kroah-Hartman
2023-01-30 13:49 ` Greg Kroah-Hartman [this message]
2023-01-30 13:49 ` [PATCH 6.1 123/313] drm/amd/display: fix issues with driver unload Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 124/313] net: sched: gred: prevent races when adding offloads to stats Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 125/313] nvme-pci: fix timeout request state check Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 126/313] tcp: avoid the lookup process failing to get sk in ehash table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 127/313] usb: dwc3: fix extcon dependency Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 128/313] ptdma: pt_core_execute_cmd() should use spinlock Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 129/313] device property: fix of node refcount leak in fwnode_graph_get_next_endpoint() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 130/313] w1: fix deadloop in __w1_remove_master_device() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 131/313] w1: fix WARNING after calling w1_process() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 132/313] driver core: Fix test_async_probe_init saves device in wrong array Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 133/313] selftests/net: toeplitz: fix race on tpacket_v3 block close Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 134/313] net: dsa: microchip: ksz9477: port map correction in ALU table entry register Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 135/313] thermal: Validate new state in cur_state_store() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 136/313] thermal/core: fix error code in __thermal_cooling_device_register() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 137/313] thermal: core: call put_device() only after device_register() fails Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 138/313] net: stmmac: enable all safety features by default Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 139/313] bnxt: Do not read past the end of test names Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 140/313] tcp: fix rate_app_limited to default to 1 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 141/313] scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 142/313] ASoC: SOF: pm: Set target state earlier Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 143/313] ASoC: SOF: pm: Always tear down pipelines before DSP suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 144/313] ASoC: SOF: Add FW state to debugfs Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 145/313] ASoC: amd: yc: Add Razer Blade 14 2022 into DMI table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 146/313] spi: cadence: Fix busy cycles calculation Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 147/313] cpufreq: CPPC: Add u64 casts to avoid overflowing Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 148/313] cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 149/313] ASoC: mediatek: mt8186: support rt5682s_max98360 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 150/313] ASoC: mediatek: mt8186: Add machine support for max98357a Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 151/313] ASoC: amd: yc: Add ASUS M5402RA into DMI table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 152/313] ASoC: support machine driver with max98360 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 153/313] kcsan: test: dont put the expect array on the stack Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 154/313] cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 155/313] ASoC: fsl_micfil: Correct the number of steps on SX controls Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 156/313] drm/msm/a6xx: Avoid gx gbit halt during rpm suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 157/313] net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 158/313] drm: Add orientation quirk for Lenovo ideapad D330-10IGL Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 159/313] s390/debug: add _ASM_S390_ prefix to header guard Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 160/313] s390: expicitly align _edata and _end symbols on page boundary Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 161/313] xen/pvcalls: free active map buffer on pvcalls_front_free_map Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 162/313] perf/x86/cstate: Add Meteor Lake support Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 163/313] perf/x86/msr: " Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 164/313] perf/x86/msr: Add Emerald Rapids Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 165/313] perf/x86/intel/uncore: " Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 166/313] nolibc: fix fd_set type Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 167/313] tools/nolibc: Fix S_ISxxx macros Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 168/313] tools/nolibc: fix missing includes causing build issues at -O0 Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 169/313] tools/nolibc: prevent gcc from making memset() loop over itself Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 170/313] cpufreq: armada-37xx: stop using 0 as NULL pointer Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 171/313] ASoC: fsl_ssi: Rename AC97 streams to avoid collisions with AC97 CODEC Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 172/313] ASoC: fsl-asoc-card: Fix naming of AC97 CODEC widgets Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 173/313] ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 174/313] drm/amdkfd: Add sync after creating vram bo Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 175/313] drm/amdkfd: Fix NULL pointer error for GC 11.0.1 on mGPU Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 176/313] cifs: fix potential memory leaks in session setup Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 177/313] spi: spidev: remove debug messages that access spidev->spi without locking Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 178/313] KVM: s390: interrupt: use READ_ONCE() before cmpxchg() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 179/313] scsi: hisi_sas: Use abort task set to reset SAS disks when discovered Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 180/313] scsi: hisi_sas: Set a port invalid only if there are no devices attached when refreshing port id Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 181/313] r8152: add vendor/device ID pair for Microsoft Devkit Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 182/313] platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 183/313] platform/x86: asus-nb-wmi: Add alternate mapping for KEY_CAMERA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 184/313] platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 185/313] platform/x86: asus-wmi: Add quirk wmi_ignore_fan Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 186/313] platform/x86: asus-wmi: Ignore fan on E410MA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 187/313] platform/x86: simatic-ipc: correct name of a model Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 188/313] platform/x86: simatic-ipc: add another model Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 189/313] lockref: stop doing cpu_relax in the cmpxchg loop Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 190/313] ata: pata_cs5535: Dont build on UML Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 191/313] firmware: coreboot: Check size of table entry and use flex-array Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 192/313] btrfs: zoned: enable metadata over-commit for non-ZNS setup Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 193/313] Revert "selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID" Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 194/313] arm64: efi: Recover from synchronous exceptions occurring in firmware Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 195/313] arm64: efi: Avoid workqueue to check whether EFI runtime is live Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 196/313] arm64: efi: Account for the EFI runtime stack in stack unwinder Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 197/313] Bluetooth: hci_sync: cancel cmd_timer if hci_open failed Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 198/313] drm/i915: Allow panel fixed modes to have differing sync polarities Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 199/313] drm/i915: Allow alternate fixed modes always for eDP Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 200/313] drm/amdgpu: complete gfxoff allow signal during suspend without delay Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 201/313] io_uring/msg_ring: fix remote queue to disabled ring Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 202/313] wifi: mac80211: Proper mark iTXQs for resumption Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 203/313] wifi: mac80211: Fix iTXQ AMPDU fragmentation handling Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 204/313] sched/fair: Check if prev_cpu has highest spare cap in feec() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 205/313] sched/uclamp: Fix a uninitialized variable warnings Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 206/313] vfio/type1: Respect IOMMU reserved regions in vfio_test_domain_fgsp() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 207/313] scsi: hpsa: Fix allocation size for scsi_host_alloc() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 208/313] kvm/vfio: Fix potential deadlock on vfio group_lock Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 209/313] nfsd: dont free files unconditionally in __nfsd_file_cache_purge Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 210/313] module: Dont wait for GOING modules Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 211/313] ftrace: Export ftrace_free_filter() to modules Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 212/313] tracing: Make sure trace_printk() can output as soon as it can be used Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 213/313] trace_events_hist: add check for return value of create_hist_field Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 214/313] ftrace/scripts: Update the instructions for ftrace-bisect.sh Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 215/313] cifs: Fix oops due to uncleared server->smbd_conn in reconnect Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 216/313] ksmbd: add max connections parameter Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 217/313] ksmbd: do not sign response to session request for guest login Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 218/313] ksmbd: downgrade ndr version error message to debug Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 219/313] ksmbd: limit pdu length size according to connection status Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 220/313] ovl: fix tmpfile leak Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 221/313] ovl: fail on invalid uid/gid mapping at copy up Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 222/313] io_uring/net: cache provided buffer group value for multishot receives Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 223/313] KVM: x86/vmx: Do not skip segment attributes if unusable bit is set Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 224/313] KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 225/313] scsi: ufs: core: Fix devfreq deadlocks Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 226/313] riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 227/313] thermal: intel: int340x: Protect trip temperature from concurrent updates Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 228/313] regulator: dt-bindings: samsung,s2mps14: add lost samsung,ext-control-gpios Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 229/313] ipv6: fix reachability confirmation with proxy_ndp Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 230/313] ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 231/313] EDAC/device: Respect any driver-supplied workqueue polling value Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 232/313] EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_infos pvt_info Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 233/313] platform/x86: thinkpad_acpi: Fix profile modes on Intel platforms Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 234/313] drm/display/dp_mst: Correct the kref of port Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 235/313] drm/amd/pm: add missing AllowIHInterrupt message mapping for SMU13.0.0 Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 236/313] drm/amdgpu: remove unconditional trap enable on add gfx11 queues Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 237/313] drm/amdgpu/display/mst: Fix mst_state->pbn_div and slot count assignments Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 238/313] drm/amdgpu/display/mst: limit payload to be updated one by one Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 239/313] drm/amdgpu/display/mst: update mst_mgr relevant variable when long HPD Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 240/313] io_uring: inline io_req_task_work_add() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 241/313] io_uring: inline __io_req_complete_post() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 242/313] io_uring: hold locks for io_req_complete_failed Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 243/313] io_uring: use io_req_task_complete() in timeout Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 244/313] io_uring: remove io_req_tw_post_queue Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 245/313] io_uring: inline __io_req_complete_put() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 246/313] net: mana: Fix IRQ name - add PCI and queue number Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 247/313] io_uring: always prep_async for drain requests Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 248/313] i2c: designware: use casting of u64 in clock multiplication to avoid overflow Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 249/313] i2c: designware: Fix unbalanced suspended flag Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 250/313] drm/drm_vma_manager: Add drm_vma_node_allow_once() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 251/313] drm/i915: Fix a memory leak with reused mmap_offset Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 252/313] iavf: fix temporary deadlock and failure to set MAC address Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 253/313] iavf: schedule watchdog immediately when changing primary MAC Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 254/313] netlink: prevent potential spectre v1 gadgets Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 255/313] net: fix UaF in netns ops registration error path Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 256/313] net: fec: Use page_pool_put_full_page when freeing rx buffers Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 257/313] nvme: simplify transport specific device attribute handling Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 258/313] nvme: consolidate setting the tagset flags Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 259/313] nvme-fc: fix initialization order Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 260/313] drm/i915/selftest: fix intel_selftest_modify_policy argument types Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 261/313] ACPI: video: Add backlight=native DMI quirk for HP Pavilion g6-1d80nr Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 262/313] ACPI: video: Add backlight=native DMI quirk for HP EliteBook 8460p Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 263/313] ACPI: video: Add backlight=native DMI quirk for Asus U46E Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 264/313] netfilter: nft_set_rbtree: Switch to node list walk for overlap detection Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 265/313] netfilter: nft_set_rbtree: skip elements in transaction from garbage collection Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 266/313] netlink: annotate data races around nlk->portid Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 267/313] netlink: annotate data races around dst_portid and dst_group Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 268/313] netlink: annotate data races around sk_state Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 269/313] ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 270/313] ipv4: prevent potential spectre v1 gadget in fib_metrics_match() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 271/313] net: dsa: microchip: fix probe of I2C-connected KSZ8563 Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 272/313] net: ethernet: adi: adin1110: Fix multicast offloading Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 273/313] netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 274/313] netfilter: conntrack: fix bug in for_each_sctp_chunk Greg Kroah-Hartman
2023-01-30 14:16   ` Pablo Neira Ayuso
2023-01-30 13:51 ` [PATCH 6.1 275/313] netrom: Fix use-after-free of a listening socket Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 276/313] platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 277/313] platform/x86: apple-gmux: Move port defines to apple-gmux.h Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 278/313] platform/x86: apple-gmux: Add apple_gmux_detect() helper Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 279/313] ACPI: video: Fix apple gmux detection Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 280/313] tracing/osnoise: Use built-in RCU list checking Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 281/313] net/sched: sch_taprio: do not schedule in taprio_reset() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 282/313] sctp: fail if no bound addresses can be used for a given scope Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 283/313] riscv/kprobe: Fix instruction simulation of JALR Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 284/313] nvme: fix passthrough csi check Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 285/313] gpio: mxc: Unlock on error path in mxc_flip_edge() Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 286/313] gpio: ep93xx: Fix port F hwirq numbers in handler Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 287/313] net: ravb: Fix lack of register setting after system resumed for Gen3 Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 288/313] net: ravb: Fix possible hang if RIS2_QFF1 happen Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 289/313] net: mctp: add an explicit reference from a mctp_sk_key to sock Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 290/313] net: mctp: move expiry timer delete to unhash Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 291/313] net: mctp: hold key reference when looking up a general key Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 292/313] net: mctp: mark socks as dead on unhash, prevent re-add Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 293/313] thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 294/313] riscv: Move call to init_cpu_topology() to later initialization stage Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 295/313] net/tg3: resolve deadlock in tg3_reset_task() during EEH Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 296/313] tsnep: Fix TX queue stop/wake for multiple queues Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 297/313] net: mdio-mux-meson-g12a: force internal PHY off on mux switch Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 298/313] Partially revert "perf/arm-cmn: Optimise DTC counter accesses" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 299/313] block: ublk: move ublk_chr_class destroying after devices are removed Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 300/313] treewide: fix up files incorrectly marked executable Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 301/313] tools: gpio: fix -c option of gpio-event-mon Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 302/313] Fix up more non-executable files marked executable Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 303/313] Revert "mm/compaction: fix set skip in fast_find_migrateblock" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 304/313] Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 305/313] Input: i8042 - add Clevo PCX0DX to i8042 quirk table Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 306/313] x86/sev: Add SEV-SNP guest feature negotiation support Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 307/313] acpi: Fix suspend with Xen PV Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 308/313] dt-bindings: riscv: fix underscore requirement for multi-letter extensions Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 309/313] dt-bindings: riscv: fix single letter canonical order Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 310/313] x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 311/313] dt-bindings: i2c: renesas,rzv2m: Fix SoC specific string Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 312/313] netfilter: conntrack: unify established states for SCTP paths Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 313/313] perf/x86/amd: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2023-01-30 16:41 ` [PATCH 6.1 000/313] 6.1.9-rc1 review Guenter Roeck
2023-01-30 18:14   ` Greg Kroah-Hartman
2023-01-30 17:49 ` Conor Dooley
2023-01-30 18:14   ` Greg Kroah-Hartman
2023-01-30 19:23 ` Florian Fainelli
2023-01-30 21:05 ` 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=20230130134342.326519131@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=geert+renesas@glider.be \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vkoul@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.