stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Florian Westphal <fw@strlen.de>,
	Pablo Neira Ayuso <pablo@netfilter.org>,
	Topi Miettinen <toiwoton@gmail.com>
Subject: [PATCH 5.15 162/177] netfilter: nft_socket: only do sk lookups when indev is available
Date: Wed,  4 May 2022 18:45:55 +0200	[thread overview]
Message-ID: <20220504153107.993723163@linuxfoundation.org> (raw)
In-Reply-To: <20220504153053.873100034@linuxfoundation.org>

From: Florian Westphal <fw@strlen.de>

commit 743b83f15d4069ea57c3e40996bf4a1077e0cdc1 upstream.

Check if the incoming interface is available and NFT_BREAK
in case neither skb->sk nor input device are set.

Because nf_sk_lookup_slow*() assume packet headers are in the
'in' direction, use in postrouting is not going to yield a meaningful
result.  Same is true for the forward chain, so restrict the use
to prerouting, input and output.

Use in output work if a socket is already attached to the skb.

Fixes: 554ced0a6e29 ("netfilter: nf_tables: add support for native socket matching")
Reported-and-tested-by: Topi Miettinen <toiwoton@gmail.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/netfilter/nft_socket.c |   52 ++++++++++++++++++++++++++++++++-------------
 1 file changed, 38 insertions(+), 14 deletions(-)

--- a/net/netfilter/nft_socket.c
+++ b/net/netfilter/nft_socket.c
@@ -53,6 +53,32 @@ nft_sock_get_eval_cgroupv2(u32 *dest, st
 }
 #endif
 
+static struct sock *nft_socket_do_lookup(const struct nft_pktinfo *pkt)
+{
+	const struct net_device *indev = nft_in(pkt);
+	const struct sk_buff *skb = pkt->skb;
+	struct sock *sk = NULL;
+
+	if (!indev)
+		return NULL;
+
+	switch (nft_pf(pkt)) {
+	case NFPROTO_IPV4:
+		sk = nf_sk_lookup_slow_v4(nft_net(pkt), skb, indev);
+		break;
+#if IS_ENABLED(CONFIG_NF_TABLES_IPV6)
+	case NFPROTO_IPV6:
+		sk = nf_sk_lookup_slow_v6(nft_net(pkt), skb, indev);
+		break;
+#endif
+	default:
+		WARN_ON_ONCE(1);
+		break;
+	}
+
+	return sk;
+}
+
 static void nft_socket_eval(const struct nft_expr *expr,
 			    struct nft_regs *regs,
 			    const struct nft_pktinfo *pkt)
@@ -66,20 +92,7 @@ static void nft_socket_eval(const struct
 		sk = NULL;
 
 	if (!sk)
-		switch(nft_pf(pkt)) {
-		case NFPROTO_IPV4:
-			sk = nf_sk_lookup_slow_v4(nft_net(pkt), skb, nft_in(pkt));
-			break;
-#if IS_ENABLED(CONFIG_NF_TABLES_IPV6)
-		case NFPROTO_IPV6:
-			sk = nf_sk_lookup_slow_v6(nft_net(pkt), skb, nft_in(pkt));
-			break;
-#endif
-		default:
-			WARN_ON_ONCE(1);
-			regs->verdict.code = NFT_BREAK;
-			return;
-		}
+		sk = nft_socket_do_lookup(pkt);
 
 	if (!sk) {
 		regs->verdict.code = NFT_BREAK;
@@ -197,6 +210,16 @@ static int nft_socket_dump(struct sk_buf
 	return 0;
 }
 
+static int nft_socket_validate(const struct nft_ctx *ctx,
+			       const struct nft_expr *expr,
+			       const struct nft_data **data)
+{
+	return nft_chain_validate_hooks(ctx->chain,
+					(1 << NF_INET_PRE_ROUTING) |
+					(1 << NF_INET_LOCAL_IN) |
+					(1 << NF_INET_LOCAL_OUT));
+}
+
 static struct nft_expr_type nft_socket_type;
 static const struct nft_expr_ops nft_socket_ops = {
 	.type		= &nft_socket_type,
@@ -204,6 +227,7 @@ static const struct nft_expr_ops nft_soc
 	.eval		= nft_socket_eval,
 	.init		= nft_socket_init,
 	.dump		= nft_socket_dump,
+	.validate	= nft_socket_validate,
 };
 
 static struct nft_expr_type nft_socket_type __read_mostly = {



  parent reply	other threads:[~2022-05-04 17:10 UTC|newest]

Thread overview: 185+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-04 16:43 [PATCH 5.15 000/177] 5.15.38-rc1 review Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 001/177] usb: mtu3: fix USB 3.0 dual-role-switch from device to host Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 002/177] USB: quirks: add a Realtek card reader Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 003/177] USB: quirks: add STRING quirk for VCOM device Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 004/177] USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 005/177] USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 006/177] USB: serial: option: add support for Cinterion MV32-WA/MV32-WB Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 007/177] USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 008/177] usb: xhci: tegra:Fix PM usage reference leak of tegra_xusb_unpowergate_partitions Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 009/177] xhci: Enable runtime PM on second Alderlake controller Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 010/177] xhci: stop polling roothubs after shutdown Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 011/177] xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 012/177] iio: dac: ad5592r: Fix the missing return value Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 013/177] iio: dac: ad5446: Fix read_raw not returning set value Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 014/177] iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 015/177] iio: imu: inv_icm42600: Fix I2C init possible nack Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 016/177] usb: misc: fix improper handling of refcount in uss720_probe() Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 017/177] usb: core: Dont hold the device lock while sleeping in do_proc_control() Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 018/177] usb: typec: ucsi: Fix reuse of completion structure Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 019/177] usb: typec: ucsi: Fix role swapping Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 020/177] usb: gadget: uvc: Fix crash when encoding data for usb request Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 021/177] usb: gadget: configfs: clear deactivation flag in configfs_composite_unbind() Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 022/177] usb: dwc3: Try usb-role-switch first in dwc3_drd_init Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 023/177] usb: dwc3: core: Fix tx/rx threshold settings Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 024/177] usb: dwc3: core: Only handle soft-reset in DCTL Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 025/177] usb: dwc3: gadget: Return proper request status Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 026/177] usb: dwc3: pci: add support for the Intel Meteor Lake-P Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 027/177] usb: cdns3: Fix issue for clear halt endpoint Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 028/177] usb: phy: generic: Get the vbus supply Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 029/177] serial: imx: fix overrun interrupts in DMA mode Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 030/177] serial: amba-pl011: do not time out prematurely when draining tx fifo Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 031/177] serial: 8250: Also set sticky MCR bits in console restoration Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 032/177] serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 033/177] arch_topology: Do not set llc_sibling if llc_id is invalid Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 034/177] ceph: fix possible NULL pointer dereference for req->r_session Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 035/177] bus: mhi: host: pci_generic: Add missing poweroff() PM callback Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 036/177] bus: mhi: host: pci_generic: Flush recovery worker during freeze Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 037/177] arm64: dts: imx8mm-venice: fix spi2 pin configuration Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 038/177] pinctrl: samsung: fix missing GPIOLIB on ARM64 Exynos config Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 039/177] hex2bin: make the function hex_to_bin constant-time Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 040/177] hex2bin: fix access beyond string end Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 041/177] riscv: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 042/177] x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 043/177] iocost: dont reset the inuse weight of under-weighted debtors Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 044/177] virtio_net: fix wrong buf address calculation when using xdp Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 045/177] cpufreq: qcom-hw: fix the race between LMH worker and cpuhp Greg Kroah-Hartman
2022-05-04 16:43 ` [PATCH 5.15 046/177] cpufreq: qcom-cpufreq-hw: Fix throttle frequency value on EPSS platforms Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 047/177] video: fbdev: udlfb: properly check endpoint type Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 048/177] arm64: dts: meson: remove CPU opps below 1GHz for G12B boards Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 049/177] arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 050/177] iio:imu:bmi160: disable regulator in error path Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 051/177] mtd: rawnand: fix ecc parameters for mt7622 Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 052/177] xsk: Fix l2fwd for copy mode + busy poll combo Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 053/177] arm64: dts: imx8qm: Correct SCU clock controllers compatible property Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 054/177] USB: Fix xhci event ring dequeue pointer ERDP update issue Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 055/177] ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 056/177] arm64: dts: imx8mn: Fix SAI nodes Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 057/177] arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO pin labeling for CON1 Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 058/177] phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 059/177] phy: samsung: exynos5250-sata: fix missing device put in probe error paths Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 060/177] ARM: OMAP2+: Fix refcount leak in omap_gic_of_init Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 061/177] bus: ti-sysc: Make omap3 gpt12 quirk handling SoC specific Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 062/177] ARM: dts: dra7: Fix suspend warning for vpe powerdomain Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 063/177] phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 064/177] ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 065/177] ARM: dts: at91: sama5d4_xplained: fix pinctrl phandle name Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 066/177] ARM: dts: at91: fix pinctrl phandles Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 067/177] phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 068/177] phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 069/177] interconnect: qcom: sdx55: Drop IP0 interconnects Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 070/177] ARM: dts: Fix mmc order for omap3-gta04 Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 071/177] ARM: dts: am3517-evm: Fix misc pinmuxing Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 072/177] ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 073/177] ipvs: correctly print the memory size of ip_vs_conn_tab Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 074/177] phy: amlogic: fix error path in phy_g12a_usb3_pcie_probe() Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 075/177] pinctrl: mediatek: moore: Fix build error Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 076/177] mtd: rawnand: Fix return value check of wait_for_completion_timeout Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 077/177] mtd: fix part field data corruption in mtd_info Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 078/177] pinctrl: stm32: Do not call stm32_gpio_get() for edge triggered IRQs in EOI Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 079/177] memory: renesas-rpc-if: Fix HF/OSPI data transfer in Manual Mode Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 080/177] net: dsa: Add missing of_node_put() in dsa_port_link_register_of Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 081/177] netfilter: nft_set_rbtree: overlap detection with element re-addition after deletion Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 082/177] bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt hook Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 083/177] pinctrl: rockchip: fix RK3308 pinmux bits Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 084/177] tcp: md5: incorrect tcp_header_len for incoming connections Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 085/177] pinctrl: stm32: Keep pinctrl block clock enabled when LEVEL IRQ requested Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 086/177] tcp: ensure to use the most recently sent skb when filling the rate sample Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 087/177] wireguard: device: check for metadata_dst with skb_valid_dst() Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 088/177] sctp: check asoc strreset_chunk in sctp_generate_reconf_event Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 089/177] ARM: dts: imx6ull-colibri: fix vqmmc regulator Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 090/177] arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 091/177] pinctrl: pistachio: fix use of irq_of_parse_and_map() Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 092/177] cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 093/177] net: hns3: clear inited state and stop client after failed to register netdev Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 094/177] net: hns3: modify the return code of hclge_get_ring_chain_from_mbx Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 095/177] net: hns3: add validity check for message data length Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 096/177] net: hns3: add return value for mailbox handling in PF Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 097/177] net/smc: sync err code when tcp connection was refused Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 098/177] ip_gre: Make o_seqno start from 0 in native mode Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 099/177] ip6_gre: " Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 100/177] ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 101/177] tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 102/177] tcp: make sure treq->af_specific is initialized Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 103/177] bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 104/177] clk: sunxi: sun9i-mmc: check return value after calling platform_get_resource() Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 105/177] cpufreq: qcom-cpufreq-hw: Clear dcvs interrupts Greg Kroah-Hartman
2022-05-04 16:44 ` [PATCH 5.15 106/177] net: bcmgenet: hide status block before TX timestamping Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 107/177] net: phy: marvell10g: fix return value on error Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 108/177] net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addr Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 109/177] drm/sun4i: Remove obsolete references to PHYS_OFFSET Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 110/177] net: dsa: lantiq_gswip: Dont set GSWIP_MII_CFG_RMII_CLK Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 111/177] io_uring: check reserved fields for send/sendmsg Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 112/177] io_uring: check reserved fields for recv/recvmsg Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 113/177] netfilter: conntrack: fix udp offload timeout sysctl Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 114/177] drm/amdkfd: Fix GWS queue count Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 115/177] drm/amd/display: Fix memory leak in dcn21_clock_source_create Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 116/177] tls: Skip tls_append_frag on zero copy size Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 117/177] bnx2x: fix napi API usage sequence Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 118/177] net: fec: add missing of_node_put() in fec_enet_init_stop_mode() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 119/177] gfs2: Prevent endless loops in gfs2_file_buffered_write Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 120/177] gfs2: Minor retry logic cleanup Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 121/177] gfs2: Make sure not to return short direct writes Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 122/177] gfs2: No short reads or writes upon glock contention Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 123/177] perf arm-spe: Fix addresses of synthesized SPE events Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 124/177] ixgbe: ensure IPsec VF<->PF compatibility Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 125/177] Revert "ibmvnic: Add ethtool private flag for driver-defined queue limits" Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 126/177] tcp: fix F-RTO may not work correctly when receiving DSACK Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 127/177] ASoC: Intel: soc-acpi: correct device endpoints for max98373 Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 128/177] ASoC: wm8731: Disable the regulator when probing fails Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 129/177] ext4: fix bug_on in start_this_handle during umount filesystem Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 130/177] arch: xtensa: platforms: Fix deadlock in rs_close() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 131/177] ksmbd: increment reference count of parent fp Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 132/177] ksmbd: set fixed sector size to FS_SECTOR_SIZE_INFORMATION Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 133/177] bonding: do not discard lowest hash bit for non layer3+4 hashing Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 134/177] x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 135/177] cifs: destage any unwritten data to the server before calling copychunk_write Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 136/177] drivers: net: hippi: Fix deadlock in rr_close() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 137/177] powerpc/perf: Fix 32bit compile Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 138/177] selftest/vm: verify mmap addr in mremap_test Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 139/177] selftest/vm: verify remap destination address " Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 140/177] Revert "ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40" Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 141/177] zonefs: Fix management of open zones Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 142/177] zonefs: Clear inode information flags on inode creation Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 143/177] kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink occur at same time Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 144/177] mtd: rawnand: qcom: fix memory corruption that causes panic Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 145/177] netfilter: Update ip6_route_me_harder to consider L3 domain Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 146/177] drm/i915: Check EDID for HDR static metadata when choosing blc Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 147/177] drm/i915: Fix SEL_FETCH_PLANE_*(PIPE_B+) register addresses Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 148/177] net: ethernet: stmmac: fix write to sgmii_adapter_base Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 149/177] ACPI: processor: idle: Avoid falling back to C3 type C-states Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 150/177] thermal: int340x: Fix attr.show callback prototype Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 151/177] btrfs: fix leaked plug after failure syncing log on zoned filesystems Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 152/177] ARM: dts: at91: sama7g5ek: enable pull-up on flexcom3 console lines Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 153/177] ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 154/177] x86/cpu: Load microcode during restore_processor_state() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 155/177] perf symbol: Pass is_kallsyms to symbols__fixup_end() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 156/177] perf symbol: Update symbols__fixup_end() Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 157/177] tty: n_gsm: fix restart handling via CLD command Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 158/177] tty: n_gsm: fix decoupled mux resource Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 159/177] tty: n_gsm: fix mux cleanup after unregister tty device Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 160/177] tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 161/177] tty: n_gsm: fix malformed counter for out of frame data Greg Kroah-Hartman
2022-05-04 16:45 ` Greg Kroah-Hartman [this message]
2022-05-04 16:45 ` [PATCH 5.15 163/177] tty: n_gsm: fix insufficient txframe size Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 164/177] tty: n_gsm: fix wrong DLCI release order Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 165/177] tty: n_gsm: fix missing explicit ldisc flush Greg Kroah-Hartman
2022-05-04 16:45 ` [PATCH 5.15 166/177] tty: n_gsm: fix wrong command retry handling Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 167/177] tty: n_gsm: fix wrong command frame length field encoding Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 168/177] tty: n_gsm: fix wrong signal octets encoding in MSC Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 169/177] tty: n_gsm: fix missing tty wakeup in convergence layer type 2 Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 170/177] tty: n_gsm: fix reset fifo race condition Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 171/177] tty: n_gsm: fix incorrect UA handling Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 172/177] tty: n_gsm: fix software flow control handling Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 173/177] perf symbol: Remove arch__symbols__fixup_end() Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 174/177] eeprom: at25: Use DMA safe buffers Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 175/177] objtool: Fix code relocs vs weak symbols Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 176/177] objtool: Fix type of reloc::addend Greg Kroah-Hartman
2022-05-04 16:46 ` [PATCH 5.15 177/177] powerpc/64: Add UADDR64 relocation support Greg Kroah-Hartman
2022-05-05  7:11 ` [PATCH 5.15 000/177] 5.15.38-rc1 review Ron Economos
2022-05-05  8:06 ` Naresh Kamboju
2022-05-05  9:59 ` Jon Hunter
2022-05-09  7:14   ` Greg Kroah-Hartman
2022-05-09 14:37     ` Jon Hunter
2022-05-05 21:42 ` Guenter Roeck
2022-05-05 22:08 ` Florian Fainelli

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=20220504153107.993723163@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=fw@strlen.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pablo@netfilter.org \
    --cc=stable@vger.kernel.org \
    --cc=toiwoton@gmail.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).