From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Vladimir Oltean <vladimir.oltean@nxp.com>,
"Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>,
Jakub Kicinski <kuba@kernel.org>,
Rajani Kantha <681739313@139.com>
Subject: [PATCH 6.6 252/254] net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend()
Date: Wed, 28 Jan 2026 16:23:48 +0100 [thread overview]
Message-ID: <20260128145353.866904730@linuxfoundation.org> (raw)
In-Reply-To: <20260128145344.698118637@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Vladimir Oltean <vladimir.oltean@nxp.com>
[ Upstream commit f40a673d6b4a128fe95dd9b8c3ed02da50a6a862 ]
In an upcoming change, mdio_bus_phy_may_suspend() will need to
distinguish a phylib-based PHY client from a phylink PHY client.
For that, it will need to compare the phydev->phy_link_change() function
pointer with the eponymous phy_link_change() provided by phylib.
To avoid forward function declarations, the default PHY link state
change method should be moved upwards. There is no functional change
associated with this patch, it is only to reduce the noise from a real
bug fix.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/20250407093900.2155112-1-vladimir.oltean@nxp.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
[ Minor context change fixed ]
Signed-off-by: Rajani Kantha <681739313@139.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/net/phy/phy_device.c | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -268,6 +268,19 @@ static struct phy_driver genphy_driver;
static LIST_HEAD(phy_fixup_list);
static DEFINE_MUTEX(phy_fixup_lock);
+static void phy_link_change(struct phy_device *phydev, bool up)
+{
+ struct net_device *netdev = phydev->attached_dev;
+
+ if (up)
+ netif_carrier_on(netdev);
+ else
+ netif_carrier_off(netdev);
+ phydev->adjust_link(netdev);
+ if (phydev->mii_ts && phydev->mii_ts->link_state)
+ phydev->mii_ts->link_state(phydev->mii_ts, phydev);
+}
+
static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
{
struct device_driver *drv = phydev->mdio.dev.driver;
@@ -1069,19 +1082,6 @@ struct phy_device *phy_find_first(struct
}
EXPORT_SYMBOL(phy_find_first);
-static void phy_link_change(struct phy_device *phydev, bool up)
-{
- struct net_device *netdev = phydev->attached_dev;
-
- if (up)
- netif_carrier_on(netdev);
- else
- netif_carrier_off(netdev);
- phydev->adjust_link(netdev);
- if (phydev->mii_ts && phydev->mii_ts->link_state)
- phydev->mii_ts->link_state(phydev->mii_ts, phydev);
-}
-
/**
* phy_prepare_link - prepares the PHY layer to monitor link status
* @phydev: target phy_device struct
next prev parent reply other threads:[~2026-01-28 15:40 UTC|newest]
Thread overview: 265+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-28 15:19 [PATCH 6.6 000/254] 6.6.122-rc1 review Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 001/254] firmware: imx: scu-irq: Set mu_resource_id before get handle Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 002/254] efi/cper: Fix cper_bits_to_str buffer handling and return value Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 003/254] Revert "gfs2: Fix use of bio_chain" Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 004/254] ASoC: codecs: wsa884x: fix codec initialisation Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 005/254] xfrm: Fix inner mode lookup in tunnel mode GSO segmentation Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 006/254] pnfs/flexfiles: Fix memory leak in nfs4_ff_alloc_deviceid_node() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 007/254] can: etas_es58x: allow partial RX URB allocation to succeed Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 008/254] nvmet-tcp: remove boilerplate code Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 009/254] nvme-tcp: fix NULL pointer dereferences in nvmet_tcp_build_pdu_iovec Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 010/254] btrfs: send: check for inline extents in range_is_hole_in_parent() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 011/254] net: bridge: Set BR_FDB_ADDED_BY_USER early in fdb_add_entry Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 012/254] net: bridge: annotate data-races around fdb->{updated,used} Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 013/254] ip6_tunnel: use skb_vlan_inet_prepare() in __ip6_tnl_rcv() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 014/254] net: update netdev_lock_{type,name} Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 015/254] macvlan: fix possible UAF in macvlan_forward_source() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 016/254] ipv4: ip_gre: make ipgre_header() robust Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 017/254] vsock/test: add a final full barrier after run all tests Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 018/254] net/mlx5e: Restore destroying state bit after profile cleanup Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 019/254] btrfs: store fs_info in space_info Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 020/254] btrfs: factor out init_space_info() from create_space_info() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 021/254] btrfs: factor out check_removing_space_info() from btrfs_free_block_groups() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 022/254] btrfs: introduce btrfs_space_info sub-group Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 023/254] btrfs: fix memory leaks in create_space_info() error paths Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 024/254] net: hv_netvsc: reject RSS hash key programming without RX indirection table Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 025/254] ipv6: Fix use-after-free in inet6_addr_del() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 026/254] selftests: drv-net: fix RPS mask handling for high CPU numbers Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 027/254] net/sched: sch_qfq: do not free existing class in qfq_change_class() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 028/254] ASoC: tlv320adcx140: fix null pointer Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 029/254] ASoC: tlv320adcx140: fix word length Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 030/254] textsearch: describe @list member in ts_ops search Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 031/254] mm, kfence: describe @slab parameter in __kfence_obj_info() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 032/254] dmaengine: xilinx: xdma: Fix regmap max_register Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 033/254] dmaengine: tegra-adma: Fix use-after-free Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 034/254] dmaengine: xilinx_dma: Fix uninitialized addr_width when "xlnx,addrwidth" property is missing Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 035/254] phy: fsl-imx8mq-usb: Clear the PCS_TX_SWING_FULL field before using it Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 036/254] phy: phy-snps-eusb2: refactor constructs names Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 037/254] phy: drop probe registration printks Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 038/254] phy: qcom-qusb2: Fix NULL pointer dereference on early suspend Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 039/254] phy: stm32-usphyc: Fix off by one in probe() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 040/254] phy: broadcom: ns-usb3: Fix Wvoid-pointer-to-enum-cast warning (again) Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 041/254] dmaengine: omap-dma: fix dma_pool resource leak in error paths Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 042/254] i2c: qcom-geni: make sure I2C hub controllers cant use SE DMA Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 043/254] HID: usbhid: paper over wrong bNumDescriptor field Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 044/254] drm/amd/display: Check dce_hwseq before dereferencing it Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 045/254] scsi: core: Fix error handler encryption support Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 046/254] ALSA: pcm: Improve the fix for race of buffer access at PCM OSS layer Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 047/254] null_blk: fix kmemleak by releasing references to fault configfs items Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 048/254] can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 049/254] can: ctucanfd: fix SSP_SRC in cases when bit-rate is higher than 1 MBit Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 050/254] net: can: j1939: j1939_xtp_rx_rts_session_active(): deactivate session upon receiving the second rts Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 051/254] x86/kaslr: Recognize all ZONE_DEVICE users as physaddr consumers Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 052/254] phy: rockchip: inno-usb2: fix communication disruption in gadget mode Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 053/254] phy: freescale: imx8m-pcie: assert phy reset during power on Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 054/254] phy: rockchip: inno-usb2: fix disconnection in gadget mode Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 055/254] phy: tegra: xusb: Explicitly configure HS_DISCON_LEVEL to 0x7 Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 056/254] usb: dwc3: Check for USB4 IP_NAME Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 057/254] usb: core: add USB_QUIRK_NO_BOS for devices that hang on BOS descriptor Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 058/254] USB: OHCI/UHCI: Add soft dependencies on ehci_platform Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 059/254] USB: serial: option: add Telit LE910 MBIM composition Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 060/254] USB: serial: ftdi_sio: add support for PICAXE AXE027 cable Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 061/254] nvme-pci: disable secondary temp for Wodposit WPBSNM8 Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 062/254] ext4: fix iloc.bh leak in ext4_xattr_inode_update_ref Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 063/254] hrtimer: Fix softirq base check in update_needs_ipi() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 064/254] EDAC/x38: Fix a resource leak in x38_probe1() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 065/254] EDAC/i3200: Fix a resource leak in i3200_probe1() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 066/254] tcpm: allow looking for role_sw device in the main node Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 067/254] x86/resctrl: Add missing resctrl initialization for Hygon Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 068/254] x86/resctrl: Fix memory bandwidth counter width " Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 069/254] mm/page_alloc: make percpu_pagelist_high_fraction reads lock-free Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 070/254] mm/damon/sysfs: cleanup attrs subdirs on context dir setup failure Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 071/254] LoongArch: Fix PMU counter allocation for mixed-type event groups Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 072/254] drm/amd/display: Bump the HDMI clock to 340MHz Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 073/254] drm/amd: Clean up kfd node on surprise disconnect Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 074/254] drm/amdkfd: fix a memory leak in device_queue_manager_init() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 075/254] drm/nouveau/disp/nv50-: Set lock_core in curs507a_prepare Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 076/254] drm/panel-simple: fix connector type for DataImage SCF0700C48GGU18 panel Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 077/254] drm/vmwgfx: Fix an error return check in vmw_compat_shader_add() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 078/254] dmaengine: apple-admac: Add "apple,t8103-admac" compatible Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 079/254] dmaengine: at_hdmac: fix device leak on of_dma_xlate() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 080/254] dmaengine: bcm-sba-raid: fix device leak on probe Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 081/254] dmaengine: dw: dmamux: fix OF node leak on route allocation failure Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 082/254] dmaengine: idxd: fix device leaks on compat bind and unbind Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 083/254] dmaengine: lpc18xx-dmamux: fix device leak on route allocation Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 084/254] dmaengine: qcom: gpi: Fix memory leak in gpi_peripheral_config() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 085/254] dmaengine: sh: rz-dmac: Fix rz_dmac_terminate_all() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 086/254] dmaengine: ti: dma-crossbar: fix device leak on dra7x route allocation Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 087/254] dmaengine: ti: dma-crossbar: fix device leak on am335x " Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 088/254] dmaengine: ti: k3-udma: fix device leak on udma lookup Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 089/254] btrfs: fix deadlock in wait_current_trans() due to ignored transaction type Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 090/254] io_uring: move local task_work in exit cancel loop Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 091/254] posix-clock: introduce posix_clock_context concept Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 092/254] Fix memory leak in posix_clock_open() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 093/254] posix-clock: Store file pointer in struct posix_clock_context Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 094/254] ptp: Add PHC file mode checks. Allow RO adjtime() without FMODE_WRITE Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 095/254] ptp: add testptp mask test Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 096/254] selftest/ptp: update ptp selftest to exercise the gettimex options Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 097/254] testptp: Add option to open PHC in readonly mode Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 098/254] arm64: dts: qcom: sc8280xp: Add missing VDD_MXC links Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 099/254] hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_* Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 100/254] Drivers: hv: Always do Hyper-V panic notification in hv_kmsg_dump() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 101/254] btrfs: fix missing fields in superblock backup with BLOCK_GROUP_TREE Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 102/254] dt-bindings: power: qcom,rpmpd: Add SM7150 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 103/254] dt-bindings: power: rpmpd: Add MSM8917, MSM8937 and QM215 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 104/254] dt-bindings: power: qcom,rpmpd: document the SM8650 RPMh Power Domains Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 105/254] dt-bindings: power: rpmpd: Update part number to X1E80100 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 106/254] dt-bindings: power: qcom,rpmpd: document the SM8750 RPMh Power Domains Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 107/254] dt-bindings: power: qcom,rpmpd: add Turbo L5 corner Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 108/254] dt-bindings: power: qcom-rpmpd: split RPMh domains definitions Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 109/254] dt-bindings: power: qcom,rpmpd: Add SC8280XP_MXC_AO Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 110/254] pmdomain: qcom: rpmhpd: Add MXC to SC8280XP Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 111/254] ata: libata: Add cpr_log to ata_dev_print_features() early return Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 112/254] ata: libata-core: Introduce ata_dev_config_lpm() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 113/254] ata: libata: Call ata_dev_config_lpm() for ATAPI devices Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 114/254] ata: libata: Print features also " Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 115/254] ice: initialize ring_stats->syncp Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 116/254] ice: Avoid detrimental cleanup for bond during interface stop Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 117/254] igc: fix race condition in TX timestamp read for register 0 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 118/254] net: usb: dm9601: remove broken SR9700 support Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 119/254] bonding: limit BOND_MODE_8023AD to Ethernet devices Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 120/254] selftests/net: convert fib-onlink-tests.sh to run it in unique namespace Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 121/254] selftests: net: fib-onlink-tests: Convert to use namespaces by default Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 122/254] can: gs_usb: gs_usb_receive_bulk_callback(): unanchor URL on usb_submit_urb() error Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 123/254] sctp: move SCTP_CMD_ASSOC_SHKEY right after SCTP_CMD_PEER_INIT Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 124/254] amd-xgbe: avoid misleading per-packet error log Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 125/254] gue: Fix skb memleak with inner IP protocol 0 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 126/254] tools: ynl: Specify --no-line-number in ynl-regen.sh Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 127/254] fou: Dont allow 0 for FOU_ATTR_IPPROTO Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 128/254] veth: fix data race in veth_get_ethtool_stats Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 129/254] l2tp: avoid one data-race in l2tp_tunnel_del_work() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 130/254] ipvlan: Make the addrs_lock be per port Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 131/254] octeontx2: cn10k: fix RX flowid TCAM mask handling Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 132/254] net/sched: Enforce that teql can only be used as root qdisc Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 133/254] net/sched: qfq: Use cl_is_active to determine whether class is active in qfq_rm_from_ag Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 134/254] crypto: authencesn - reject too-short AAD (assoclen<8) to match ESP/ESN spec Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 135/254] serial: 8250_pci: Fix broken RS485 for F81504/508/512 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 136/254] comedi: dmm32at: serialize use of paged registers Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 137/254] w1: therm: Fix off-by-one buffer overflow in alarms_store Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 138/254] w1: fix redundant counter decrement in w1_attach_slave_device() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 139/254] Revert "nfc/nci: Add the inconsistency check between the input data length and count" Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 140/254] Input: i8042 - add quirks for MECHREVO Wujie 15X Pro Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 141/254] Input: i8042 - add quirk for ASUS Zenbook UX425QA_UM425QA Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 142/254] scsi: storvsc: Process unsupported MODE_SENSE_10 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 143/254] scsi: xen: scsiback: Fix potential memory leak in scsiback_remove() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 144/254] arm64: dts: rockchip: remove dangerous max-link-speed from helios64 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 145/254] arm64: dts: rockchip: Fix voltage threshold for volume keys for Pinephone Pro Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 146/254] x86/kfence: avoid writing L1TF-vulnerable PTEs Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 147/254] comedi: Fix getting range information for subdevices 16 to 255 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 148/254] platform/x86: hp-bioscfg: Fix kobject warnings for empty attribute names Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 149/254] platform/x86: hp-bioscfg: Fix kernel panic in GET_INSTANCE_ID macro Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 150/254] io_uring/io-wq: check IO_WQ_BIT_EXIT inside work run loop Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 151/254] iio: imu: st_lsm6dsx: fix iio_chan_spec for sensors without event detection Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 152/254] iio: adc: ad7280a: handle spi_setup() errors in probe() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 153/254] interconnect: debugfs: initialize src_node and dst_node to empty strings Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 154/254] spi: sprd: adi: Use devm_register_restart_handler() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 155/254] spi: sprd-adi: switch to use spi_alloc_host() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 156/254] spi: spi-sprd-adi: Fix double free in probe error path Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 157/254] regmap: Fix race condition in hwspinlock irqsave routine Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 158/254] kconfig: fix static linking of nconf Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 159/254] riscv: clocksource: Fix stimecmp update hazard on RV32 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 160/254] scsi: core: Wake up the error handler when final completions race against each other Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 161/254] scsi: qla2xxx: Sanitize payload size to prevent member overflow Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 162/254] ALSA: usb: Increase volume range that triggers a warning Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 163/254] netdevsim: fix a race issue related to the operation on bpf_bound_progs list Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 164/254] net: hns3: fix data race in hns3_fetch_stats Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 165/254] be2net: fix data race in be_get_new_eqd Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 166/254] net: hns3: fix wrong GENMASK() for HCLGE_FD_AD_COUNTER_NUM_M Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 167/254] net: hns3: fix the HCLGE_FD_AD_NXT_KEY error setting issue Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 168/254] mISDN: annotate data-race around dev->work Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 169/254] ipv6: annotate data-race in ndisc_router_discovery() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 170/254] usbnet: limit max_mtu based on devices hard_mtu Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 171/254] drm/amd/pm: Dont clear SI SMC table when setting power limit Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 172/254] drm/amd/pm: Workaround SI powertune issue on Radeon 430 (v2) Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 173/254] be2net: Fix NULL pointer dereference in be_cmd_get_mac_from_list Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 174/254] selftests: net: amt: wait longer for connection before sending packets Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 175/254] bonding: provide a net pointer to __skb_flow_dissect() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 176/254] net: dsa: fix off-by-one in maximum bridge ID determination Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 177/254] octeontx2-af: Fix error handling Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 178/254] net: openvswitch: fix data race in ovs_vport_get_upcall_stats Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 179/254] vsock/virtio: fix potential underflow in virtio_transport_get_credit() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 180/254] vsock/test: fix seqpacket message bounds test Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 181/254] vsock/virtio: cap TX credit to local buffer size Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 182/254] net/sched: act_ife: avoid possible NULL deref Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 183/254] x86: make page fault handling disable interrupts properly Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 184/254] leds: led-class: Only Add LED to leds_list when it is fully ready Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 185/254] of: fix reference count leak in of_alias_scan() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 186/254] of: platform: Use default match table for /firmware Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 187/254] iio: accel: iis328dq: fix gain values Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 188/254] iio: adc: ad9467: fix ad9434 vref mask Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 189/254] iio: adc: at91-sama5d2_adc: Fix potential use-after-free in sama5d2_adc driver Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 190/254] iio: chemical: scd4x: fix reported channel endianness Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 191/254] iio: dac: ad5686: add AD5695R to ad5686_chip_info_tbl Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 192/254] ALSA: ctxfi: Fix potential OOB access in audio mixer handling Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 193/254] ALSA: usb-audio: Fix use-after-free in snd_usb_mixer_free() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 194/254] mmc: rtsx_pci_sdmmc: implement sdmmc_card_busy function Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 195/254] mmc: sdhci-of-dwcmshc: Prevent illegal clock reduction in HS200/HS400 mode Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 196/254] wifi: ath10k: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 197/254] wifi: ath12k: " Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 198/254] wifi: mwifiex: Fix a loop in mwifiex_update_ampdu_rxwinsize() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 199/254] wifi: rsi: Fix memory corruption due to not set vif driver data size Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 200/254] arm64/fpsimd: signal: Allocate SSVE storage when restoring ZA Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 201/254] arm64: Set __nocfi on swsusp_arch_resume() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 202/254] octeontx2: Fix otx2_dma_map_page() error return code Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 203/254] slimbus: core: fix runtime PM imbalance on report present Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 204/254] slimbus: core: fix device reference leak " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 205/254] tracing: Fix crash on synthetic stacktrace field usage Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 206/254] intel_th: fix device leak on output open() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 207/254] uacce: fix cdev handling in the cleanup path Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 208/254] uacce: fix isolate sysfs check condition Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 209/254] uacce: implement mremap in uacce_vm_ops to return -EPERM Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 210/254] uacce: ensure safe queue release with state management Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 211/254] netrom: fix double-free in nr_route_frame() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 212/254] platform/x86: hp-bioscfg: Fix automatic module loading Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 213/254] pmdomain: imx8m-blk-ctrl: Remove separate rst and clk mask for 8mq vpu Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 214/254] perf/x86/intel: Do not enable BTS for guests Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 215/254] irqchip/gic-v3-its: Avoid truncating memory addresses Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 216/254] can: ems_usb: ems_usb_read_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 217/254] can: kvaser_usb: kvaser_usb_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 218/254] can: mcba_usb: mcba_usb_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 219/254] can: usb_8dev: usb_8dev_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 220/254] migrate: correct lock ordering for hugetlb file folios Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 221/254] selftests/bpf: Check for timeout in perf_link test Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 222/254] bpf: Do not let BPF test infra emit invalid GSO types to stack Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 223/254] bridge: mcast: Fix use-after-free during router port configuration Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 224/254] can: esd_usb: esd_usb_read_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 225/254] mm/damon/sysfs-scheme: cleanup access_pattern subdirs on scheme dir setup failure Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 226/254] mm/damon/sysfs-scheme: cleanup quotas " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 227/254] iio: core: add missing mutex_destroy in iio_dev_release() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 228/254] iio: core: add separate lockdep class for info_exist_lock Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 229/254] mm/rmap: fix two comments related to huge_pmd_unshare() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 230/254] arm64: dts: rockchip: remove redundant max-link-speed from nanopi-r4s Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 231/254] ALSA: scarlett2: Fix buffer overflow in config retrieval Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 232/254] iio: adc: exynos_adc: fix OF populate on driver rebind Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 233/254] dmaengine: stm32: dmamux: fix device leak on route allocation Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 234/254] dmaengine: stm32: dmamux: fix OF node leak on route allocation failure Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 235/254] mm/page_alloc: prevent pcp corruption with SMP=n Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 236/254] mm: kmsan: fix poisoning of high-order non-compound pages Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 237/254] phy: phy-rockchip-inno-usb2: Use dev_err_probe() in the probe path Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 238/254] phy: rockchip: inno-usb2: Fix a double free bug in rockchip_usb2phy_probe() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 239/254] ASoC: codecs: wsa881x: Drop unused version readout Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 240/254] ASoC: codecs: wsa881x: fix unnecessary initialisation Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 241/254] ASoC: codecs: wsa883x: " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 242/254] nvme-fc: rename free_ctrl callback to match name pattern Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 243/254] nvme-pci: do not directly handle subsys reset fallout Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 244/254] nvme: fix PCIe subsystem reset controller state transition Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 245/254] NFSD: fix race between nfsd registration and exports_proc Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 246/254] usbnet: Fix using smp_processor_id() in preemptible code warnings Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 247/254] ksmbd: fix use-after-free in ksmbd_session_rpc_open Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 248/254] fs/ntfs3: Initialize allocated memory before use Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 249/254] drm/amdgpu: csa unmap use uninterruptible lock Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 250/254] wifi: ath11k: fix RCU stall while reaping monitor destination ring Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 251/254] x86/fpu: Clear XSTATE_BV[i] in guest XSAVE state whenever XFD[i]=1 Greg Kroah-Hartman
2026-01-28 15:23 ` Greg Kroah-Hartman [this message]
2026-01-28 15:23 ` [PATCH 6.6 253/254] net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 254/254] net: phy: fix phy_uses_state_machine() Greg Kroah-Hartman
2026-01-28 19:38 ` [PATCH 6.6 000/254] 6.6.122-rc1 review Brett A C Sheffield
2026-01-28 19:58 ` Florian Fainelli
2026-01-29 2:10 ` Shung-Hsi Yu
2026-01-29 5:12 ` Peter Schneider
2026-01-29 6:54 ` Slade Watkins
2026-01-29 7:35 ` Francesco Dolcini
2026-01-29 9:48 ` Jon Hunter
2026-01-29 10:24 ` Ron Economos
2026-01-29 17:50 ` Mark Brown
2026-01-29 20:34 ` Miguel Ojeda
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=20260128145353.866904730@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=681739313@139.com \
--cc=kuba@kernel.org \
--cc=patches@lists.linux.dev \
--cc=rmk+kernel@armlinux.org.uk \
--cc=stable@vger.kernel.org \
--cc=vladimir.oltean@nxp.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