From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Xiaoliang Yang <xiaoliang.yang_1@nxp.com>,
Vladimir Oltean <vladimir.oltean@nxp.com>,
"David S. Miller" <davem@davemloft.net>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.19 172/192] net: dsa: felix: tc-taprio intervals smaller than MTU should send at least one packet
Date: Tue, 13 Sep 2022 16:04:38 +0200 [thread overview]
Message-ID: <20220913140418.603893905@linuxfoundation.org> (raw)
In-Reply-To: <20220913140410.043243217@linuxfoundation.org>
From: Vladimir Oltean <vladimir.oltean@nxp.com>
[ Upstream commit 11afdc6526de0e0368c05da632a8c0d29fc60bb8 ]
The blamed commit broke tc-taprio schedules such as this one:
tc qdisc replace dev $swp1 root taprio \
num_tc 8 \
map 0 1 2 3 4 5 6 7 \
queues 1@0 1@1 1@2 1@3 1@4 1@5 1@6 1@7 \
base-time 0 \
sched-entry S 0x7f 990000 \
sched-entry S 0x80 10000 \
flags 0x2
because the gate entry for TC 7 (S 0x80 10000 ns) now has a static guard
band added earlier than its 'gate close' event, such that packet
overruns won't occur in the worst case of the largest packet possible.
Since guard bands are statically determined based on the per-tc
QSYS_QMAXSDU_CFG_* with a fallback on the port-based QSYS_PORT_MAX_SDU,
we need to discuss what happens with TC 7 depending on kernel version,
since the driver, prior to commit 55a515b1f5a9 ("net: dsa: felix: drop
oversized frames with tc-taprio instead of hanging the port"), did not
touch QSYS_QMAXSDU_CFG_*, and therefore relied on QSYS_PORT_MAX_SDU.
1 (before vsc9959_tas_guard_bands_update): QSYS_PORT_MAX_SDU defaults to
1518, and at gigabit this introduces a static guard band (independent
of packet sizes) of 12144 ns, plus QSYS::HSCH_MISC_CFG.FRM_ADJ (bit
time of 20 octets => 160 ns). But this is larger than the time window
itself, of 10000 ns. So, the queue system never considers a frame with
TC 7 as eligible for transmission, since the gate practically never
opens, and these frames are forever stuck in the TX queues and hang
the port.
2 (after vsc9959_tas_guard_bands_update): Under the sole goal of
enabling oversized frame dropping, we make an effort to set
QSYS_QMAXSDU_CFG_7 to 1230 bytes. But QSYS_QMAXSDU_CFG_7 plays
one more role, which we did not take into account: per-tc static guard
band, expressed in L2 byte time (auto-adjusted for FCS and L1 overhead).
There is a discrepancy between what the driver thinks (that there is
no guard band, and 100% of min_gate_len[tc] is available for egress
scheduling) and what the hardware actually does (crops the equivalent
of QSYS_QMAXSDU_CFG_7 ns out of min_gate_len[tc]). In practice, this
means that the hardware thinks it has exactly 0 ns for scheduling tc 7.
In both cases, even minimum sized Ethernet frames are stuck on egress
rather than being considered for scheduling on TC 7, even if they would
fit given a proper configuration. Considering the current situation,
with vsc9959_tas_guard_bands_update(), frames between 60 octets and 1230
octets in size are not eligible for oversized dropping (because they are
smaller than QSYS_QMAXSDU_CFG_7), but won't be considered as eligible
for scheduling either, because the min_gate_len[7] (10000 ns) minus the
guard band determined by QSYS_QMAXSDU_CFG_7 (1230 octets * 8 ns per
octet == 9840 ns) minus the guard band auto-added for L1 overhead by
QSYS::HSCH_MISC_CFG.FRM_ADJ (20 octets * 8 ns per octet == 160 octets)
leaves 0 ns for scheduling in the queue system proper.
Investigating the hardware behavior, it becomes apparent that the queue
system needs precisely 33 ns of 'gate open' time in order to consider a
frame as eligible for scheduling to a tc. So the solution to this
problem is to amend vsc9959_tas_guard_bands_update(), by giving the
per-tc guard bands less space by exactly 33 ns, just enough for one
frame to be scheduled in that interval. This allows the queue system to
make forward progress for that port-tc, and prevents it from hanging.
Fixes: 297c4de6f780 ("net: dsa: felix: re-enable TAS guard band mode")
Reported-by: Xiaoliang Yang <xiaoliang.yang_1@nxp.com>
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/net/dsa/ocelot/felix_vsc9959.c | 35 +++++++++++++++++++++++---
1 file changed, 31 insertions(+), 4 deletions(-)
diff --git a/drivers/net/dsa/ocelot/felix_vsc9959.c b/drivers/net/dsa/ocelot/felix_vsc9959.c
index 4cce71243080e..517bc3922ee24 100644
--- a/drivers/net/dsa/ocelot/felix_vsc9959.c
+++ b/drivers/net/dsa/ocelot/felix_vsc9959.c
@@ -22,6 +22,7 @@
#define VSC9959_NUM_PORTS 6
#define VSC9959_TAS_GCL_ENTRY_MAX 63
+#define VSC9959_TAS_MIN_GATE_LEN_NS 33
#define VSC9959_VCAP_POLICER_BASE 63
#define VSC9959_VCAP_POLICER_MAX 383
#define VSC9959_SWITCH_PCI_BAR 4
@@ -1411,6 +1412,23 @@ static void vsc9959_mdio_bus_free(struct ocelot *ocelot)
mdiobus_free(felix->imdio);
}
+/* The switch considers any frame (regardless of size) as eligible for
+ * transmission if the traffic class gate is open for at least 33 ns.
+ * Overruns are prevented by cropping an interval at the end of the gate time
+ * slot for which egress scheduling is blocked, but we need to still keep 33 ns
+ * available for one packet to be transmitted, otherwise the port tc will hang.
+ * This function returns the size of a gate interval that remains available for
+ * setting the guard band, after reserving the space for one egress frame.
+ */
+static u64 vsc9959_tas_remaining_gate_len_ps(u64 gate_len_ns)
+{
+ /* Gate always open */
+ if (gate_len_ns == U64_MAX)
+ return U64_MAX;
+
+ return (gate_len_ns - VSC9959_TAS_MIN_GATE_LEN_NS) * PSEC_PER_NSEC;
+}
+
/* Extract shortest continuous gate open intervals in ns for each traffic class
* of a cyclic tc-taprio schedule. If a gate is always open, the duration is
* considered U64_MAX. If the gate is always closed, it is considered 0.
@@ -1590,10 +1608,13 @@ static void vsc9959_tas_guard_bands_update(struct ocelot *ocelot, int port)
mutex_lock(&ocelot->fwd_domain_lock);
for (tc = 0; tc < OCELOT_NUM_TC; tc++) {
+ u64 remaining_gate_len_ps;
u32 max_sdu;
- if (min_gate_len[tc] == U64_MAX /* Gate always open */ ||
- min_gate_len[tc] * PSEC_PER_NSEC > needed_bit_time_ps) {
+ remaining_gate_len_ps =
+ vsc9959_tas_remaining_gate_len_ps(min_gate_len[tc]);
+
+ if (remaining_gate_len_ps > needed_bit_time_ps) {
/* Setting QMAXSDU_CFG to 0 disables oversized frame
* dropping.
*/
@@ -1606,9 +1627,15 @@ static void vsc9959_tas_guard_bands_update(struct ocelot *ocelot, int port)
/* If traffic class doesn't support a full MTU sized
* frame, make sure to enable oversize frame dropping
* for frames larger than the smallest that would fit.
+ *
+ * However, the exact same register, QSYS_QMAXSDU_CFG_*,
+ * controls not only oversized frame dropping, but also
+ * per-tc static guard band lengths, so it reduces the
+ * useful gate interval length. Therefore, be careful
+ * to calculate a guard band (and therefore max_sdu)
+ * that still leaves 33 ns available in the time slot.
*/
- max_sdu = div_u64(min_gate_len[tc] * PSEC_PER_NSEC,
- picos_per_byte);
+ max_sdu = div_u64(remaining_gate_len_ps, picos_per_byte);
/* A TC gate may be completely closed, which is a
* special case where all packets are oversized.
* Any limit smaller than 64 octets accomplishes this
--
2.35.1
next prev parent reply other threads:[~2022-09-13 14:24 UTC|newest]
Thread overview: 212+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-13 14:01 [PATCH 5.19 000/192] 5.19.9-rc1 review Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 001/192] efi: libstub: Disable struct randomization Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 002/192] efi: capsule-loader: Fix use-after-free in efi_capsule_write Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 003/192] wifi: mt76: mt7921e: fix crash in chip reset fail Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 004/192] wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in il4965_rs_fill_link_cmd() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 005/192] net: mvpp2: debugfs: fix memory leak when using debugfs_lookup() Greg Kroah-Hartman
2022-09-13 16:48 ` Russell King (Oracle)
2022-09-15 8:35 ` Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 006/192] fs: only do a memory barrier for the first set_buffer_uptodate() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 007/192] soc: fsl: select FSL_GUTS driver for DPIO Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 008/192] Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 009/192] scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 010/192] scsi: core: Allow the ALUA transitioning state enough time Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 011/192] scsi: megaraid_sas: Fix double kfree() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 012/192] drm/gem: Fix GEM handle release errors Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 013/192] drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to psp_hw_fini Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 014/192] drm/amdgpu: fix hive reference leak when adding xgmi device Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 015/192] drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 016/192] drm/amdgpu: Remove the additional kfd pre reset call for sriov Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 017/192] drm/radeon: add a force flush to delay work when radeon Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 018/192] scsi: ufs: core: Reduce the power mode change timeout Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 019/192] Revert "parisc: Show error if wrong 32/64-bit compiler is being used" Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 020/192] parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 021/192] parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 022/192] arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 023/192] arm64/signal: Raise limit on stack frames Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 024/192] netfilter: conntrack: work around exceeded receive window Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 025/192] thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 026/192] cpufreq: check only freq_table in __resolve_freq() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 027/192] net/core/skbuff: Check the return value of skb_copy_bits() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 028/192] md: Flush workqueue md_rdev_misc_wq in md_alloc() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 029/192] fbdev: omapfb: Fix tests for platform_get_irq() failure Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 030/192] fbdev: fbcon: Destroy mutex on freeing struct fb_info Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 031/192] fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 032/192] x86/sev: Mark snp_abort() noreturn Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 033/192] drm/amdgpu: add sdma instance check for gfx11 CGCG Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 034/192] drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 035/192] ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 036/192] ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 037/192] ALSA: hda: Once again fix regression of page allocations with IOMMU Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 038/192] ALSA: aloop: Fix random zeros in capture data when using jiffies timer Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 039/192] ALSA: usb-audio: Split endpoint setups for hw_params and prepare Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 040/192] ALSA: usb-audio: Clear fixed clock rate at closing EP Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 041/192] ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 042/192] tracefs: Only clobber mode/uid/gid on remount if asked Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 043/192] tracing: hold caller_addr to hardirq_{enable,disable}_ip Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 044/192] tracing: Fix to check event_mutex is held while accessing trigger list Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 045/192] btrfs: zoned: set pseudo max append zone limit in zone emulation mode Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 046/192] btrfs: zoned: fix API misuse of zone finish waiting Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 047/192] vfio/type1: Unpin zero pages Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 048/192] kprobes: Prohibit probes in gate area Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 049/192] perf: RISC-V: fix access beyond allocated array Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 050/192] debugfs: add debugfs_lookup_and_remove() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 051/192] sched/debug: fix dentry leak in update_sched_domain_debugfs Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 052/192] drm/amd/display: fix memory leak when using debugfs_lookup() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 053/192] driver core: fix driver_set_override() issue with empty strings Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 054/192] nvmet: fix a use-after-free Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 055/192] drm/i915/bios: Copy the whole MIPI sequence block Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 056/192] drm/i915/slpc: Lets fix the PCODE min freq table setup for SLPC Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 057/192] drm/i915: Implement WaEdpLinkRateDataReload Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 058/192] scsi: mpt3sas: Fix use-after-free warning Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 059/192] scsi: lpfc: Add missing destroy_workqueue() in error path Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 060/192] cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty subtree Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 061/192] cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 062/192] cifs: remove useless parameter is_fsctl from SMB2_ioctl() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 063/192] smb3: missing inode locks in zero range Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 064/192] spi: bitbang: Fix lsb-first Rx Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 065/192] ASoC: cs42l42: Only report button state if there was a button interrupt Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 066/192] Revert "soc: imx: imx8m-blk-ctrl: set power device name" Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 067/192] arm64: dts: imx8mm-verdin: update CAN clock to 40MHz Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 068/192] arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 069/192] ASoC: qcom: sm8250: add missing module owner Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 070/192] regmap: spi: Reserve space for register address/padding Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 071/192] arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 072/192] arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 073/192] RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 074/192] RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 075/192] ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 076/192] ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 077/192] ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 078/192] arm64: dts: ls1028a-qds-65bb: dont use in-band autoneg for 2500base-x Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 079/192] soc: imx: gpcv2: Assert reset before ungating clock Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 080/192] arm64: dts: verdin-imx8mm: add otg2 pd to usbphy Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 081/192] arm64: dts: imx8mm-venice-gw7901: fix port/phy validation Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 082/192] arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 083/192] arm64: dts: freescale: verdin-imx8mp: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 084/192] regulator: core: Clean up on enable failure Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 085/192] ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 086/192] ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 087/192] tee: fix compiler warning in tee_shm_register() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 088/192] RDMA/irdma: Fix drain SQ hang with no completion Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 089/192] arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 090/192] RDMA/cma: Fix arguments order in net device validation Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 091/192] soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 092/192] RDMA/hns: Fix supported page size Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 093/192] RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 094/192] RDMA/hns: Remove the num_qpc_timer variable Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 095/192] wifi: wilc1000: fix DMA on stack objects Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 096/192] ARM: at91: pm: fix self-refresh for sama7g5 Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 097/192] ARM: at91: pm: fix DDR recalibration when resuming from backup and self-refresh Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 098/192] ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 099/192] ARM: dts: at91: sama5d2_icp: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 100/192] ARM: dts: at91: sama7g5ek: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 101/192] ARM: dts: at91: sama5d27_wlsom1: dont keep ldo2 enabled all the time Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 102/192] ARM: dts: at91: sama5d2_icp: dont keep vdd_other " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 103/192] netfilter: br_netfilter: Drop dst references before setting Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 104/192] netfilter: nf_tables: clean up hook list when offload flags check fails Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 105/192] riscv: dts: microchip: use an mpfs specific l2 compatible Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 106/192] netfilter: nf_conntrack_irc: Fix forged IP logic Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 107/192] RDMA/srp: Set scmnd->result only when scmnd is not NULL Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 108/192] ALSA: usb-audio: Inform the delayed registration more properly Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 109/192] ALSA: usb-audio: Register card again for iface over delayed_register option Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 110/192] rxrpc: Fix ICMP/ICMP6 error handling Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 111/192] rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 112/192] afs: Use the operation issue time instead of the reply time for callbacks Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 113/192] kunit: fix assert_type for comparison macros Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 114/192] Revert "net: phy: meson-gxl: improve link-up behavior" Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 115/192] sch_sfb: Dont assume the skb is still around after enqueueing to child Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 116/192] tipc: fix shift wrapping bug in map_get() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 117/192] net: introduce __skb_fill_page_desc_noacc Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 118/192] tcp: TX zerocopy should not sense pfmemalloc status Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 119/192] ice: Fix DMA mappings leak Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 120/192] ice: use bitmap_free instead of devm_kfree Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 121/192] i40e: Fix kernel crash during module removal Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 122/192] iavf: Detach device during reset task Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 123/192] net: fec: Use a spinlock to guard `fep->ptp_clk_on` Greg Kroah-Hartman
2022-09-13 14:19 ` Marc Kleine-Budde
2022-09-13 16:13 ` Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 124/192] xen-netback: only remove hotplug-status when the vif is actually destroyed Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 125/192] block: dont add partitions if GD_SUPPRESS_PART_SCAN is set Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 126/192] RDMA/siw: Pass a pointer to virt_to_page() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 127/192] bonding: use unspecified address if no available link local address Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 128/192] bonding: add all node mcast address when slave up Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 129/192] ipv6: sr: fix out-of-bounds read when setting HMAC data Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 130/192] IB/core: Fix a nested dead lock as part of ODP flow Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 131/192] RDMA/mlx5: Set local port to one when accessing counters Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 132/192] btrfs: zoned: fix mounting with conventional zones Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 133/192] erofs: fix error return code in erofs_fscache_{meta_,}read_folio Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 134/192] erofs: fix pcluster use-after-free on UP platforms Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 135/192] nvme-tcp: fix UAF when detecting digest errors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 136/192] nvme-tcp: fix regression that causes sporadic requests to time out Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 137/192] tcp: fix early ETIMEDOUT after spurious non-SACK RTO Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 138/192] btrfs: fix the max chunk size and stripe length calculation Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 139/192] nvmet: fix mar and mor off-by-one errors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 140/192] RDMA/irdma: Report the correct max cqes from query device Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 141/192] RDMA/irdma: Return error on MR deregister CQP failure Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 142/192] RDMA/irdma: Return correct WC error for bind operation failure Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 143/192] RDMA/irdma: Report RNR NAK generation in device caps Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 144/192] net: dsa: felix: disable cut-through forwarding for frames oversized for tc-taprio Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 145/192] net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in vsc9959_sched_speed_set Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 146/192] net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 147/192] net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 148/192] net/smc: Fix possible access to freed memory in link clear Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 149/192] io_uring: recycle kbuf recycle on tw requeue Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 150/192] net: phy: lan87xx: change interrupt src of link_up to comm_ready Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 151/192] sch_sfb: Also store skb len before calling child enqueue Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 152/192] libperf evlist: Fix per-thread mmaps for multi-threaded targets Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 153/192] perf dlfilter dlfilter-show-cycles: Fix types for print format Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 154/192] perf script: Fix Cannot print iregs field for hybrid systems Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 155/192] perf record: Fix synthesis failure warnings Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 156/192] hwmon: (tps23861) fix byte order in resistance register Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 157/192] ASoC: mchp-spdiftx: remove references to mchp_i2s_caps Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 158/192] ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 159/192] lsm,io_uring: add LSM hooks for the new uring_cmd file op Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 160/192] selinux: implement the security_uring_cmd() LSM hook Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 161/192] Smack: Provide read control for io_uring_cmd Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 162/192] MIPS: loongson32: ls1c: Fix hang during startup Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 163/192] kbuild: disable header exports for UML in a straightforward way Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 164/192] i40e: Refactor tc mqprio checks Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 165/192] i40e: Fix ADQ rate limiting for PF Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 166/192] net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 167/192] bonding: accept unsolicited NA message Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 168/192] swiotlb: avoid potential left shift overflow Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 169/192] iommu/amd: use full 64-bit value in build_completion_wait() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 170/192] s390/boot: fix absolute zero lowcore corruption on boot Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 171/192] time64.h: consolidate uses of PSEC_PER_NSEC Greg Kroah-Hartman
2022-09-13 14:04 ` Greg Kroah-Hartman [this message]
2022-09-13 14:04 ` [PATCH 5.19 173/192] hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 174/192] hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 175/192] hwmon: (mr75203) fix voltage equation for negative source input Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 176/192] hwmon: (mr75203) fix multi-channel voltage reading Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 177/192] hwmon: (mr75203) enable polling for all VM channels Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 178/192] iommu/vt-d: Fix possible recursive locking in intel_iommu_init() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 179/192] perf evlist: Always use arch_evlist__add_default_attrs() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 180/192] perf stat: Fix L2 Topdown metrics disappear for raw events Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 181/192] Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in page->flags"" Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 182/192] hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 183/192] hwmon: (asus-ec-sensors) add support for Maximus XI Hero Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 184/192] hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 185/192] hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 186/192] hwmon: (asus-ec-sensors) autoload module via DMI data Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 187/192] arm64/bti: Disable in kernel BTI when cross section thunks are broken Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 188/192] iommu/vt-d: Correctly calculate sagaw value of IOMMU Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 189/192] iommu/virtio: Fix interaction with VFIO Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 190/192] iommu: Fix false ownership failure on AMD systems with PASID activated Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 191/192] drm/amd/display: Add SMU logging code Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 192/192] drm/amd/display: Removing assert statements for Linux Greg Kroah-Hartman
2022-09-13 15:20 ` [PATCH 5.19 000/192] 5.19.9-rc1 review Holger Hoffstätte
2022-09-13 16:07 ` Greg Kroah-Hartman
2022-09-13 16:11 ` Greg Kroah-Hartman
2022-09-14 7:12 ` Fenil Jain
2022-09-14 9:12 ` Naresh Kamboju
2022-09-14 9:41 ` Sudip Mukherjee
2022-09-14 10:13 ` Bagas Sanjaya
2022-09-14 10:25 ` Ron Economos
2022-09-14 14:28 ` Guenter Roeck
2022-09-14 14:49 ` Greg Kroah-Hartman
2022-09-14 21:24 ` Florian Fainelli
2022-09-15 0:09 ` Guenter Roeck
2022-09-15 2:24 ` Florian Fainelli
2022-09-15 7:23 ` Greg Kroah-Hartman
2022-09-15 5:07 ` Jiri Slaby
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=20220913140418.603893905@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=vladimir.oltean@nxp.com \
--cc=xiaoliang.yang_1@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;
as well as URLs for NNTP newsgroup(s).