patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	syzbot+a7d2b1d5d1af83035567@syzkaller.appspotmail.com,
	Vladimir Oltean <vladimir.oltean@nxp.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.9 339/374] net/sched: taprio: extend minimum interval restriction to entire cycle too
Date: Thu,  6 Jun 2024 16:05:18 +0200	[thread overview]
Message-ID: <20240606131703.215864759@linuxfoundation.org> (raw)
In-Reply-To: <20240606131651.683718371@linuxfoundation.org>

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

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

From: Vladimir Oltean <vladimir.oltean@nxp.com>

[ Upstream commit fb66df20a7201e60f2b13d7f95d031b31a8831d3 ]

It is possible for syzbot to side-step the restriction imposed by the
blamed commit in the Fixes: tag, because the taprio UAPI permits a
cycle-time different from (and potentially shorter than) the sum of
entry intervals.

We need one more restriction, which is that the cycle time itself must
be larger than N * ETH_ZLEN bit times, where N is the number of schedule
entries. This restriction needs to apply regardless of whether the cycle
time came from the user or was the implicit, auto-calculated value, so
we move the existing "cycle == 0" check outside the "if "(!new->cycle_time)"
branch. This way covers both conditions and scenarios.

Add a selftest which illustrates the issue triggered by syzbot.

Fixes: b5b73b26b3ca ("taprio: Fix allowing too small intervals")
Reported-by: syzbot+a7d2b1d5d1af83035567@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/netdev/0000000000007d66bc06196e7c66@google.com/
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Link: https://lore.kernel.org/r/20240527153955.553333-2-vladimir.oltean@nxp.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/sched/sch_taprio.c                        | 10 ++++-----
 .../tc-testing/tc-tests/qdiscs/taprio.json    | 22 +++++++++++++++++++
 2 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c
index 631140c1f6e5f..5c3f8a278fc2f 100644
--- a/net/sched/sch_taprio.c
+++ b/net/sched/sch_taprio.c
@@ -1151,11 +1151,6 @@ static int parse_taprio_schedule(struct taprio_sched *q, struct nlattr **tb,
 		list_for_each_entry(entry, &new->entries, list)
 			cycle = ktime_add_ns(cycle, entry->interval);
 
-		if (!cycle) {
-			NL_SET_ERR_MSG(extack, "'cycle_time' can never be 0");
-			return -EINVAL;
-		}
-
 		if (cycle < 0 || cycle > INT_MAX) {
 			NL_SET_ERR_MSG(extack, "'cycle_time' is too big");
 			return -EINVAL;
@@ -1164,6 +1159,11 @@ static int parse_taprio_schedule(struct taprio_sched *q, struct nlattr **tb,
 		new->cycle_time = cycle;
 	}
 
+	if (new->cycle_time < new->num_entries * length_to_duration(q, ETH_ZLEN)) {
+		NL_SET_ERR_MSG(extack, "'cycle_time' is too small");
+		return -EINVAL;
+	}
+
 	taprio_calculate_gate_durations(q, new);
 
 	return 0;
diff --git a/tools/testing/selftests/tc-testing/tc-tests/qdiscs/taprio.json b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/taprio.json
index 8f12f00a4f572..557fb074acf0c 100644
--- a/tools/testing/selftests/tc-testing/tc-tests/qdiscs/taprio.json
+++ b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/taprio.json
@@ -154,6 +154,28 @@
             "echo \"1\" > /sys/bus/netdevsim/del_device"
         ]
     },
+    {
+        "id": "831f",
+        "name": "Add taprio Qdisc with too short cycle-time",
+        "category": [
+            "qdisc",
+            "taprio"
+        ],
+        "plugins": {
+            "requires": "nsPlugin"
+        },
+        "setup": [
+            "echo \"1 1 8\" > /sys/bus/netdevsim/new_device"
+        ],
+        "cmdUnderTest": "$TC qdisc add dev $ETH root handle 1: taprio num_tc 2 queues 1@0 1@1 sched-entry S 01 200000 sched-entry S 02 200000 cycle-time 100 clockid CLOCK_TAI",
+        "expExitCode": "2",
+        "verifyCmd": "$TC qdisc show dev $ETH",
+        "matchPattern": "qdisc taprio 1: root refcnt",
+        "matchCount": "0",
+        "teardown": [
+            "echo \"1\" > /sys/bus/netdevsim/del_device"
+        ]
+    },
     {
         "id": "3e1e",
         "name": "Add taprio Qdisc with an invalid cycle-time",
-- 
2.43.0




  parent reply	other threads:[~2024-06-06 14:11 UTC|newest]

Thread overview: 388+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-06 13:59 [PATCH 6.9 000/374] 6.9.4-rc1 review Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 001/374] perf build: Fix out of tree build related to installation of sysreg-defs Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 002/374] perf record: Delete session after stopping sideband thread Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 003/374] perf test: Use a single fd for the child process out/err Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 004/374] perf probe: Add missing libgen.h header needed for using basename() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 005/374] iio: core: Leave private pointer NULL when no private data supplied Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 006/374] greybus: lights: check return of get_channel_from_mode Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 007/374] dt-bindings: pinctrl: qcom: update functions to match with driver Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 008/374] f2fs: multidev: fix to recognize valid zero block address Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 009/374] f2fs: fix to wait on page writeback in __clone_blkaddrs() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 010/374] fpga: manager: add owner module and take its refcount Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 011/374] fpga: bridge: " Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 012/374] counter: linux/counter.h: fix Excess kernel-doc description warning Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 013/374] perf annotate: Get rid of duplicate --group option item Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 014/374] perf sched timehist: Fix -g/--call-graph option failure Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 015/374] usb: typec: ucsi: allow non-partner GET_PDOS for Qualcomm devices Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 016/374] usb: typec: ucsi: always register a link to USB PD device Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 017/374] usb: typec: ucsi: simplify partners PD caps registration Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 018/374] perf report: Fix PAI counter names for s390 virtual machines Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 019/374] perf stat: Do not fail on metrics on s390 z/VM systems Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 020/374] soundwire: cadence: fix invalid PDI offset Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 021/374] dmaengine: idma64: Add check for dma_set_max_seg_size Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 022/374] firmware: dmi-id: add a release callback function Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 023/374] perf annotate: Fix annotation_calc_lines() to pass correct address to get_srcline() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 024/374] serial: max3100: Lock port->lock when calling uart_handle_cts_change() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 025/374] serial: max3100: Update uart_driver_registered on driver removal Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 026/374] serial: max3100: Fix bitwise types Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 027/374] greybus: arche-ctrl: move device table to its right location Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 028/374] PCI: dwc: ep: Fix DBI access failure for drivers requiring refclk from host Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 029/374] PCI: tegra194: Fix probe path for Endpoint mode Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 030/374] serial: sc16is7xx: add proper sched.h include for sched_set_fifo() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 031/374] module: dont ignore sysfs_create_link() failures Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 032/374] interconnect: qcom: qcm2290: Fix mas_snoc_bimc QoS port assignment Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 033/374] arm64: dts: meson: fix S4 power-controller node Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 034/374] perf tests: Make "test data symbol" more robust on Neoverse N1 Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 035/374] perf tests: Apply attributes to all events in object code reading test Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 036/374] perf map: Remove kernel map before updating start and end addresses Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 037/374] perf record: Fix debug message placement for test consumption Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 038/374] dt-bindings: PCI: rcar-pci-host: Add missing IOMMU properties Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 039/374] perf bench uprobe: Remove lib64 from libc.so.6 binary path Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 040/374] f2fs: compress: fix to relocate check condition in f2fs_{release,reserve}_compress_blocks() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 041/374] f2fs: compress: fix to relocate check condition in f2fs_ioc_{,de}compress_file() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 042/374] f2fs: fix to relocate check condition in f2fs_fallocate() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 043/374] f2fs: fix to check pinfile flag in f2fs_move_file_range() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 044/374] f2fs: write missing last sum blk of file pinning section Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 045/374] iio: adc: stm32: Fixing err code to not indicate success Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 046/374] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 047/374] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 048/374] remove call_{read,write}_iter() functions Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 049/374] coresight: etm4x: Fix unbalanced pm_runtime_enable() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 050/374] perf dwarf-aux: Check pointer offset when checking variables Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 051/374] perf docs: Document bpf event modifier Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 052/374] perf test shell arm_coresight: Increase buffer size for Coresight basic tests Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 053/374] iio: pressure: dps310: support negative temperature values Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 054/374] iio: adc: adi-axi-adc: only error out in major version mismatch Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 055/374] coresight: etm4x: Do not hardcode IOMEM access for register restore Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 056/374] coresight: etm4x: Do not save/restore Data trace control registers Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 057/374] coresight: etm4x: Safe access for TRCQCLTR Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 058/374] coresight: etm4x: Fix access to resource selector registers Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 059/374] vfio/pci: fix potential memory leak in vfio_intx_enable() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 060/374] fpga: region: add owner module and take its refcount Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 061/374] pinctrl: renesas: r8a779h0: Fix IRQ suffixes Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 062/374] udf: Convert udf_expand_file_adinicb() to use a folio Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 063/374] microblaze: Remove gcc flag for non existing early_printk.c file Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 064/374] microblaze: Remove early printk call from cpuinfo-static.c Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 065/374] pinctrl: renesas: rzg2l: Limit 2.5V power supply to Ethernet interfaces Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 066/374] PCI: Wait for Link Training==0 before starting Link retrain Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 067/374] perf intel-pt: Fix unassigned instruction op (discovered by MemorySanitizer) Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 068/374] riscv: Flush the instruction cache during SMP bringup Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 069/374] docs: iio: adis16475: fix device files tables Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 070/374] usb: xhci: check if requested segments exceeds ERST capacity Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 071/374] leds: pwm: Disable PWM when going to suspend Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 072/374] ovl: remove upper umask handling from ovl_create_upper() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 073/374] PCI: of_property: Return error for int_map allocation failure Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 074/374] VMCI: Fix an error handling path in vmci_guest_probe_device() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 075/374] dt-bindings: pinctrl: mediatek: mt7622: fix array properties Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 076/374] pinctrl: qcom: pinctrl-sm7150: Fix sdc1 and ufs special pins regs Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 077/374] iio: adc: PAC1934: fix accessing out of bounds array index Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 078/374] watchdog: cpu5wdt.c: Fix use-after-free bug caused by cpu5wdt_trigger Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 079/374] watchdog: bd9576: Drop "always-running" property Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 080/374] watchdog: sa1100: Fix PTR_ERR_OR_ZERO() vs NULL check in sa1100dog_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 081/374] dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: fix x1e80100-gen3x2 schema Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 082/374] dt-bindings: phy: qcom,sc8280xp-qmp-ufs-phy: fix msm899[68] power-domains Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 083/374] dt-bindings: phy: qcom,usb-snps-femto-v2: use correct fallback for sc8180x Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 084/374] dmaengine: idxd: Avoid unnecessary destruction of file_ida Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 085/374] usb: gadget: u_audio: Fix race condition use of controls after free during gadget unbind Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 086/374] usb: gadget: u_audio: Clear uac pointer when freed Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 087/374] stm class: Fix a double free in stm_register_device() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 088/374] ppdev: Add an error check in register_device Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 089/374] i2c: cadence: Avoid fifo clear after start Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 090/374] i2c: synquacer: Fix an error handling path in synquacer_i2c_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 091/374] perf bench internals inject-build-id: Fix trap divide when collecting just one DSO Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 092/374] perf ui browser: Dont save pointer to stack memory Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 093/374] perf annotate: Fix memory leak in annotated_source Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 094/374] extcon: max8997: select IRQ_DOMAIN instead of depending on it Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 095/374] spmi: pmic-arb: Replace three IS_ERR() calls by null pointer checks in spmi_pmic_arb_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 096/374] PCI/EDR: Align EDR_PORT_DPC_ENABLE_DSM with PCI Firmware r3.3 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 097/374] PCI/EDR: Align EDR_PORT_LOCATE_DSM " Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 098/374] f2fs: fix block migration when section is not aligned to pow2 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 099/374] perf ui browser: Avoid SEGV on title Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 100/374] perf report: Avoid SEGV in report__setup_sample_type() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 101/374] perf thread: Fixes to thread__new() related to initializing comm Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 102/374] perf dwarf-aux: Add die_collect_vars() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 103/374] perf dwarf-aux: Fix build with HAVE_DWARF_CFI_SUPPORT Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 104/374] perf symbols: Remove map from list before updating addresses Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 105/374] perf symbols: Update kcore map before merging in remaining symbols Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 106/374] perf symbols: Fix ownership of string in dso__load_vmlinux() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 107/374] f2fs: compress: fix to update i_compr_blocks correctly Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 108/374] f2fs: compress: fix error path of inc_valid_block_count() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 109/374] f2fs: compress: fix to cover {reserve,release}_compress_blocks() w/ cp_rwsem lock Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 110/374] f2fs: fix to release node block count in error path of f2fs_new_node_page() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 111/374] f2fs: compress: dont allow unaligned truncation on released compress inode Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 112/374] fuse: set FR_PENDING atomically in fuse_resend() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 113/374] fuse: clear FR_SENT when re-adding requests into pending list Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 114/374] serial: sh-sci: protect invalidating RXDMA on shutdown Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 115/374] libsubcmd: Fix parse-options memory leak Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 116/374] perf daemon: Fix file leak in daemon_session__control Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 117/374] backlight: mp3309c: Fix signedness bug in mp3309c_parse_fwnode() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 118/374] f2fs: fix to add missing iput() in gc_data_segment() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 119/374] usb: fotg210: Add missing kernel doc description Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 120/374] perf annotate: Fix segfault on sample histogram Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 121/374] perf stat: Dont display metric header for non-leader uncore events Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 122/374] perf tools: Use pmus to describe type from attribute Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 123/374] perf tools: Add/use PMU reverse lookup from config to name Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 124/374] perf pmu: Assume sysfs events are always the same case Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 125/374] perf pmu: Count sys and cpuid JSON events separately Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 126/374] LoongArch: Fix callchain parse error with kernel tracepoint events again Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 127/374] s390/vdso: Generate unwind information for C modules Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 128/374] s390/vdso: Create .build-id links for unstripped vdso files Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 129/374] s390/vdso: Use standard stack frame layout Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 130/374] s390/ftrace: Use unwinder instead of __builtin_return_address() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 131/374] s390/stacktrace: Merge perf_callchain_user() and arch_stack_walk_user() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 132/374] s390/stacktrace: Skip first user stack frame Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 133/374] s390/stacktrace: Improve detection of invalid instruction pointers Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 134/374] s390/vdso: Introduce and use struct stack_frame_vdso_wrapper Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 135/374] s390/stackstrace: Detect vdso stack frames Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 136/374] s390/ipl: Fix incorrect initialization of len fields in nvme reipl block Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 137/374] s390/ipl: Fix incorrect initialization of nvme dump block Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 138/374] s390/ap: Fix bind complete udev event sent after each AP bus scan Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 139/374] s390/boot: Remove alt_stfle_fac_list from decompressor Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 140/374] dt-bindings: PCI: rockchip,rk3399-pcie: Add missing maxItems to ep-gpios Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 141/374] Revert "selftests/harness: remove use of LINE_MAX" Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 142/374] ocfs2: correctly use ocfs2_find_next_zero_bit() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 143/374] selftests/harness: use 1024 in place of LINE_MAX Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 144/374] mailbox: mtk-cmdq: Fix pm_runtime_get_sync() warning in mbox shutdown Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 145/374] gpiolib: acpi: Fix failed in acpi_gpiochip_find() by adding parent node match Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 146/374] Input: ims-pcu - fix printf string overflow Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 147/374] Input: ioc3kbd - add device table Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 148/374] mmc: sdhci_am654: Add tuning algorithm for delay chain Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 149/374] mmc: sdhci_am654: Write ITAPDLY for DDR52 timing Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 150/374] mmc: sdhci_am654: Add OTAP/ITAP delay enable Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 151/374] mmc: sdhci_am654: Add ITAPDLYSEL in sdhci_j721e_4bit_set_clock Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 152/374] mmc: sdhci_am654: Fix ITAPDLY for HS400 timing Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 153/374] x86/percpu: Unify arch_raw_cpu_ptr() defines Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 154/374] x86/percpu: Use __force to cast from __percpu address space Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 155/374] phy: qcom: qmp-combo: fix sm8650 voltage swing table Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 156/374] Input: pm8xxx-vibrator - correct VIB_MAX_LEVELS calculation Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 157/374] media: ti: j721e-csi2rx: Fix races while restarting DMA Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 158/374] media: v4l: Dont turn on privacy LED if streamon fails Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 159/374] media: ov2680: Clear the ret variable on success Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 160/374] media: ov2680: Allow probing if link-frequencies is absent Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 161/374] media: ov2680: Do not fail if data-lanes property " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 162/374] drm/msm/dsi: Print dual-DSI-adjusted pclk instead of original mode pclk Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 163/374] drm/msm/dpu: Always flush the slave INTF on the CTL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 164/374] drm/msm/dpu: Allow configuring multiple active DSC blocks Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 165/374] drm/mediatek: dp: Fix mtk_dp_aux_transfer return value Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 166/374] drm/meson: gate px_clk when setting rate Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 167/374] um: Fix return value in ubd_init() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 168/374] um: Add winch to winch_handlers before registering winch IRQ Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 169/374] um: vector: fix bpfflash parameter evaluation Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 170/374] fs/ntfs3: Check folio pointer for NULL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 171/374] fs/ntfs3: Use 64 bit variable to avoid 32 bit overflow Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 172/374] fs/ntfs3: Use variable length array instead of fixed size Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 173/374] drm/msm/dpu: Add callback function pointer check before its call Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 174/374] drm/bridge: tc358775: fix support for jeida-18 and jeida-24 Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 175/374] media: stk1160: fix bounds checking in stk1160_copy_video() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 176/374] drm: Make drivers depends on DRM_DW_HDMI Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 177/374] drm/bridge: imx: Fix unmet depenency for PHY_FSL_SAMSUNG_HDMI_PHY Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 178/374] string_kunit: Add test cases for str*cmp functions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 179/374] string: Prepare to merge strscpy_kunit.c into string_kunit.c Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 180/374] string: Prepare to merge strcat KUnit tests " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 181/374] Input: cyapa - add missing input core locking to suspend/resume functions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 182/374] drm/amdgpu: init microcode chip name from ip versions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 183/374] drm/amdgpu: Fix buffer size in gfx_v9_4_3_init_ cp_compute_microcode() and rlc_microcode() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 184/374] media: mediatek: vcodec: fix possible unbalanced PM counter Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 185/374] tools/arch/x86/intel_sdsi: Fix maximum meter bundle length Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 186/374] tools/arch/x86/intel_sdsi: Fix meter_show display Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 187/374] tools/arch/x86/intel_sdsi: Fix meter_certificate decoding Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 188/374] platform/x86: thinkpad_acpi: Take hotkey_mutex during hotkey_exit() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 189/374] media: flexcop-usb: fix sanity check of bNumEndpoints Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 190/374] powerpc/pseries: Add failure related checks for h_get_mpp and h_get_ppp Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 191/374] ASoC: SOF: debug: Handle cases when fw_lib_prefix is not set, NULL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 192/374] um: Fix the -Wmissing-prototypes warning for __switch_mm Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 193/374] um: Fix the -Wmissing-prototypes warning for get_thread_reg Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 194/374] um: Fix the declaration of kasan_map_memory Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 195/374] cxl/trace: Correct DPA field masks for general_media & dram events Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 196/374] cxl/region: Fix cxlr_pmem leaks Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 197/374] media: sunxi: a83-mips-csi2: also select GENERIC_PHY Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 198/374] media: cec: cec-adap: always cancel work in cec_transmit_msg_fh Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 199/374] media: cec: cec-api: add locking in cec_release() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 200/374] media: cec: core: avoid recursive cec_claim_log_addrs Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 201/374] media: cec: core: avoid confusing "transmit timed out" message Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 202/374] Revert "drm/bridge: ti-sn65dsi83: Fix enable error path" Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 203/374] drm: zynqmp_dpsub: Always register bridge Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 204/374] ASoC: amd: acp: fix for acp platform device creation failure Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 205/374] selftests/powerpc/dexcr: Add -no-pie to hashchk tests Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 206/374] drm/msm/adreno: fix CP cycles stat retrieval on a7xx Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 207/374] drm/msm/a6xx: Avoid a nullptr dereference when speedbin setting fails Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 208/374] ASoC: tas2781: Fix a warning reported by robot kernel test Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 209/374] null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 210/374] printk: Fix LOG_CPU_MAX_BUF_SHIFT when BASE_SMALL is enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 211/374] powerpc/bpf/32: Fix failing test_bpf tests Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 212/374] KVM: PPC: Book3S HV nestedv2: Cancel pending DEC exception Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 213/374] KVM: PPC: Book3S HV nestedv2: Fix an error handling path in gs_msg_ops_kvmhv_nestedv2_config_fill_info() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 214/374] KVM: arm64: Destroy mpidr_data for late vCPU creation Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 215/374] nilfs2: make superblock data array index computation sparse friendly Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 216/374] ALSA: hda/cs_dsp_ctl: Use private_free for control cleanup Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 217/374] ALSA: hda: hda_component: Initialize shared data during bind callback Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 218/374] ALSA: hda: cs35l56: Fix lifetime of cs_dsp instance Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 219/374] ASoC: mediatek: mt8192: fix register configuration for tdm Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 220/374] ASoC: rt715-sdca-sdw: Fix wrong complete waiting in rt715_dev_resume() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 221/374] ALSA: hda/realtek: Drop doubly quirk entry for 103c:8a2e Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 222/374] drm/nouveau: use tile_mode and pte_kind for VM_BIND bo allocations Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 223/374] Bluetooth: ISO: Handle PA sync when no BIGInfo reports are generated Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 224/374] Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 225/374] blk-cgroup: fix list corruption from resetting io stat Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 226/374] blk-cgroup: fix list corruption from reorder of WRITE ->lqueued Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 227/374] blk-cgroup: Properly propagate the iostat update up the hierarchy Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 228/374] regulator: bd71828: Dont overwrite runtime voltages Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 229/374] xen/x86: add extra pages to unpopulated-alloc if available Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 230/374] perf/arm-dmc620: Fix lockdep assert in ->event_init() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 231/374] ubsan: Restore dependency on ARCH_HAS_UBSAN Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 232/374] x86/kconfig: Select ARCH_WANT_FRAME_POINTERS again when UNWINDER_FRAME_POINTER=y Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 233/374] net: Always descend into dsa/ folder with CONFIG_NET_DSA enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 234/374] ipv6: sr: fix missing sk_buff release in seg6_input_core Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 235/374] selftests: net: kill smcrouted in the cleanup logic in amt.sh Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 236/374] nfc: nci: Fix uninit-value in nci_rx_work Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 237/374] ASoC: tas2552: Add TX path for capturing AUDIO-OUT data Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 238/374] ASoC: tas2781: Fix wrong loading calibrated data sequence Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 239/374] NFSv4: Fixup smatch warning for ambiguous return Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 240/374] nfs: keep server info for remounts Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 241/374] sunrpc: fix NFSACL RPC retry on soft mount Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 242/374] rpcrdma: fix handling for RDMA_CM_EVENT_DEVICE_REMOVAL Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 243/374] regulator: pickable ranges: dont always cache vsel Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 244/374] regulator: tps6287x: Force writing VSEL bit Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 245/374] af_unix: Update unix_sk(sk)->oob_skb under sk_receive_queue lock Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 246/374] ipv6: sr: fix memleak in seg6_hmac_init_algo Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 247/374] selftests: forwarding: Change inappropriate log_test_skip() calls Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 248/374] selftests: forwarding: Have RET track kselftest framework constants Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 249/374] selftests: forwarding: Convert log_test() to recognize RET values Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 250/374] selftests: net: Unify code of busywait() and slowwait() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 251/374] selftests/net: use tc rule to filter the na packet Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 252/374] regulator: tps6594-regulator: Correct multi-phase configuration Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 253/374] tcp: Fix shift-out-of-bounds in dctcp_update_alpha() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 254/374] pNFS/filelayout: fixup pNfs allocation modes Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 255/374] openvswitch: Set the skbuff pkt_type for proper pmtud support Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 256/374] arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 257/374] rv: Update rv_en(dis)able_monitor doc to match kernel-doc Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 258/374] net: lan966x: Remove ptp traps in case the ptp is not enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 259/374] virtio_balloon: Give the balloon its own wakeup source Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 260/374] virtio: delete vq in vp_find_vqs_msix() when request_irq() fails Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 261/374] riscv: cpufeature: Fix thead vector hwcap removal Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 262/374] riscv: cpufeature: Fix extension subset checking Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 263/374] i3c: master: svc: change ENXIO to EAGAIN when IBI occurs during start frame Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 264/374] riscv: stacktrace: fixed walk_stackframe() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 265/374] riscv: selftests: Add hwprobe binaries to .gitignore Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 266/374] Revert "ixgbe: Manual AN-37 for troublesome link partners for X550 SFI" Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 267/374] net: fec: avoid lock evasion when reading pps_enable Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 268/374] tls: fix missing memory barrier in tls_init Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 269/374] tcp: remove 64 KByte limit for initial tp->rcv_wnd value Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 270/374] net: relax socket state check at accept time Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 271/374] nfc: nci: Fix handling of zero-length payload packets in nci_rx_work() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 272/374] drivers/xen: Improve the late XenStore init protocol Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 273/374] ice: Interpret .set_channels() input differently Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 274/374] idpf: " Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 275/374] null_blk: fix null-ptr-dereference while configuring power and submit_queues Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 276/374] netfs: Fix setting of BDP_ASYNC from iocb flags Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 277/374] kasan, fortify: properly rename memintrinsics Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 278/374] cifs: Set zero_point in the copy_file_range() and remap_file_range() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 279/374] cifs: Fix missing set of remote_i_size Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 280/374] tracing/probes: fix error check in parse_btf_field() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 281/374] tpm_tis_spi: Account for SPI header when allocating TPM SPI xfer buffer Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 282/374] tcp: reduce accepted window in NEW_SYN_RECV state Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 283/374] netfilter: nfnetlink_queue: acquire rcu_read_lock() in instance_destroy_rcu() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 284/374] netfilter: ipset: Add list flush to cancel_gc Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 285/374] netfilter: nft_payload: restore vlan q-in-q match support Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 286/374] spi: Dont mark message DMA mapped when no transfer in it is Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 287/374] spi: stm32: Revert change that enabled controller before asserting CS Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 288/374] dma-mapping: benchmark: fix up kthread-related error handling Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 289/374] dma-mapping: benchmark: fix node id validation Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 290/374] dma-mapping: benchmark: handle NUMA_NO_NODE correctly Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 291/374] nvme: fix multipath batched completion accounting Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 292/374] nvme-multipath: fix io accounting on failover Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 293/374] nvmet: fix ns enable/disable possible hang Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 294/374] drm/amd/display: Enable colorspace property for MST connectors Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 295/374] net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8061 Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 296/374] net/mlx5: Lag, do bond only if slaves agree on roce state Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 297/374] net/mlx5: Do not query MPIR on embedded CPU function Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 298/374] net/mlx5: Fix MTMP register capability offset in MCAM register Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 299/374] net/mlx5: Use mlx5_ipsec_rx_status_destroy to correctly delete status rules Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 300/374] net/mlx5e: Fix IPsec tunnel mode offload feature check Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 301/374] net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 302/374] net/mlx5e: Fix UDP GSO for encapsulated packets Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 303/374] dma-buf/sw-sync: dont enable IRQ from sync_print_obj() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 304/374] bpf: Fix potential integer overflow in resolve_btfids Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 305/374] netkit: Fix setting mac address in l2 mode Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 306/374] netkit: Fix pkt_type override upon netkit pass verdict Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 307/374] ALSA: core: Remove debugfs at disconnection Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 308/374] ALSA: hda/realtek: Adjust G814JZR to use SPI init for amp Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 309/374] enic: Validate length of nl attributes in enic_set_vf_port Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 310/374] af_unix: Annotate data-race around unix_sk(sk)->addr Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 311/374] af_unix: Read sk->sk_hash under bindlock during bind() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 312/374] Octeontx2-pf: Free send queue buffers incase of leaf to inner Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 313/374] net: usb: smsc95xx: fix changing LED_SEL bit value updated from EEPROM Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 314/374] ASoC: cs42l43: Only restrict 44.1kHz for the ASP Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 315/374] bpf: Allow delete from sockmap/sockhash only if update is allowed Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 316/374] null_blk: Fix return value of nullb_device_power_store() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 317/374] ipv4: Fix address dump when IPv4 is disabled on an interface Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 318/374] net:fec: Add fec_enet_deinit() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 319/374] net: micrel: Fix lan8841_config_intr after getting out of sleep mode Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 320/374] idpf: dont enable NAPI and interrupts prior to allocating Rx buffers Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 321/374] ice: fix accounting if a VLAN already exists Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 322/374] selftests: mptcp: simult flows: mark unbalanced tests as flaky Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 323/374] selftests: mptcp: join: mark fastclose " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 324/374] selftests: mptcp: add ms units for tc-netem delay Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 325/374] selftests: mptcp: join: mark fail tests as flaky Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 326/374] drm/xe: Add dbg messages on the suspend resume functions Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 327/374] drm/xe: check pcode init status only on root gt of root tile Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 328/374] drm/xe: Change pcode timeout to 50msec while polling again Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 329/374] drm/xe: Only use reserved BCS instances for usm migrate exec queue Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 330/374] ALSA: seq: Fix missing bank setup between MIDI1/MIDI2 UMP conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 331/374] ALSA: seq: Dont clear bank selection at event -> UMP MIDI2 conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 332/374] sd: also set max_user_sectors when setting max_sectors Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 333/374] block: stack max_user_sectors Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 334/374] net: ti: icssg-prueth: Fix start counter for ft1 filter Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 335/374] netfilter: nft_payload: skbuff vlan metadata mangle support Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 336/374] netfilter: tproxy: bail out if IP has been disabled on the device Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 337/374] netfilter: nft_fib: allow from forward/input without iif selector Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 338/374] net/sched: taprio: make q->picos_per_byte available to fill_sched_entry() Greg Kroah-Hartman
2024-06-06 14:05 ` Greg Kroah-Hartman [this message]
2024-06-06 14:05 ` [PATCH 6.9 340/374] kconfig: fix comparison to constant symbols, m, n Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 341/374] drm/i915/guc: avoid FIELD_PREP warning Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 342/374] drm/i915/gt: Fix CCS ids calculation for CCS mode setting Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 343/374] kheaders: use `command -v` to test for existence of `cpio` Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 344/374] spi: stm32: Dont warn about spurious interrupts Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 345/374] drm/amdgpu: Adjust logic in amdgpu_device_partner_bandwidth() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 346/374] ipv6: introduce dst_rt6_info() helper Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 347/374] inet: introduce dst_rtable() helper Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 348/374] net: fix __dst_negative_advice() race Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 349/374] ipv4: correctly iterate over the target netns in inet_dump_ifaddr() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 350/374] net: dsa: microchip: fix RGMII error in KSZ DSA driver Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 351/374] e1000e: move force SMBUS near the end of enable_ulp function Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 352/374] ice: fix 200G PHY types to link speed mapping Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 353/374] net: ena: Fix redundant device NUMA node override Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 354/374] ipvlan: Dont Use skb->sk in ipvlan_process_v{4,6}_outbound Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 355/374] ALSA: seq: Fix yet another spot for system message conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 356/374] powerpc/pseries/lparcfg: drop error message from guest name lookup Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 357/374] powerpc/uaccess: Use YZ asm constraint for ld Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 358/374] drm/panel: sitronix-st7789v: fix timing for jt240mhqs_hwt_ek_e3 panel Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 359/374] drm/panel: sitronix-st7789v: tweak " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 360/374] drm/panel: sitronix-st7789v: fix display size " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 361/374] hwmon: (intel-m10-bmc-hwmon) Fix multiplier for N6000 board power sensor Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 362/374] hwmon: (shtc1) Fix property misspelling Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 363/374] riscv: prevent pt_regs corruption for secondary idle threads Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 364/374] ALSA: seq: ump: Fix swapped song position pointer data Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 365/374] Revert "drm: Make drivers depends on DRM_DW_HDMI" Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 366/374] x86/efistub: Omit physical KASLR when memory reservations exist Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 367/374] efi: libstub: only free priv.runtime_map when allocated Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 368/374] x86/topology: Handle bogus ACPI tables correctly Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 369/374] x86/pci: Skip early E820 check for ECAM region Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 370/374] KVM: x86: Dont advertise guest.MAXPHYADDR as host.MAXPHYADDR in CPUID Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 371/374] x86/topology/intel: Unlock CPUID before evaluating anything Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 372/374] genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 373/374] platform/x86/intel/tpmi: Handle error from tpmi_process_info() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 374/374] platform/x86/intel-uncore-freq: Dont present root domain on error Greg Kroah-Hartman
2024-06-06 14:27 ` [PATCH 6.9 000/374] 6.9.4-rc1 review Naresh Kamboju
2024-06-06 18:23   ` Thorsten Leemhuis
2024-06-06 17:53 ` SeongJae Park
2024-06-06 19:54 ` Pavel Machek
2024-06-06 21:52 ` Shuah Khan
2024-06-07  2:08 ` Bagas Sanjaya
2024-06-07  9:02 ` Jon Hunter
2024-06-07 11:48 ` Naresh Kamboju
2024-06-07 15:25 ` Mark Brown
2024-06-07 18:01 ` Allen
2024-06-07 19:19 ` Pascal Ernster
2024-06-07 21:25 ` Ron Economos
2024-06-08  1:45 ` Peter Schneider

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=20240606131703.215864759@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kuba@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+a7d2b1d5d1af83035567@syzkaller.appspotmail.com \
    --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;
as well as URLs for NNTP newsgroup(s).