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, Antoine Tenart <atenart@kernel.org>,
	Willem de Bruijn <willemb@google.com>,
	"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 5.15 649/690] udp: do not accept non-tunnel GSO skbs landing in a tunnel
Date: Mon,  8 Apr 2024 14:58:35 +0200	[thread overview]
Message-ID: <20240408125423.158284805@linuxfoundation.org> (raw)
In-Reply-To: <20240408125359.506372836@linuxfoundation.org>

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

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

From: Antoine Tenart <atenart@kernel.org>

commit 3d010c8031e39f5fa1e8b13ada77e0321091011f upstream.

When rx-udp-gro-forwarding is enabled UDP packets might be GROed when
being forwarded. If such packets might land in a tunnel this can cause
various issues and udp_gro_receive makes sure this isn't the case by
looking for a matching socket. This is performed in
udp4/6_gro_lookup_skb but only in the current netns. This is an issue
with tunneled packets when the endpoint is in another netns. In such
cases the packets will be GROed at the UDP level, which leads to various
issues later on. The same thing can happen with rx-gro-list.

We saw this with geneve packets being GROed at the UDP level. In such
case gso_size is set; later the packet goes through the geneve rx path,
the geneve header is pulled, the offset are adjusted and frag_list skbs
are not adjusted with regard to geneve. When those skbs hit
skb_fragment, it will misbehave. Different outcomes are possible
depending on what the GROed skbs look like; from corrupted packets to
kernel crashes.

One example is a BUG_ON[1] triggered in skb_segment while processing the
frag_list. Because gso_size is wrong (geneve header was pulled)
skb_segment thinks there is "geneve header size" of data in frag_list,
although it's in fact the next packet. The BUG_ON itself has nothing to
do with the issue. This is only one of the potential issues.

Looking up for a matching socket in udp_gro_receive is fragile: the
lookup could be extended to all netns (not speaking about performances)
but nothing prevents those packets from being modified in between and we
could still not find a matching socket. It's OK to keep the current
logic there as it should cover most cases but we also need to make sure
we handle tunnel packets being GROed too early.

This is done by extending the checks in udp_unexpected_gso: GSO packets
lacking the SKB_GSO_UDP_TUNNEL/_CSUM bits and landing in a tunnel must
be segmented.

[1] kernel BUG at net/core/skbuff.c:4408!
    RIP: 0010:skb_segment+0xd2a/0xf70
    __udp_gso_segment+0xaa/0x560

Fixes: 9fd1ff5d2ac7 ("udp: Support UDP fraglist GRO/GSO.")
Fixes: 36707061d6ba ("udp: allow forwarding of plain (non-fraglisted) UDP GRO packets")
Signed-off-by: Antoine Tenart <atenart@kernel.org>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/linux/udp.h    |   28 ++++++++++++++++++++++++++++
 net/ipv4/udp.c         |    7 +++++++
 net/ipv4/udp_offload.c |    6 ++++--
 net/ipv6/udp.c         |    2 +-
 4 files changed, 40 insertions(+), 3 deletions(-)

--- a/include/linux/udp.h
+++ b/include/linux/udp.h
@@ -132,6 +132,24 @@ static inline void udp_cmsg_recv(struct
 	}
 }
 
+DECLARE_STATIC_KEY_FALSE(udp_encap_needed_key);
+#if IS_ENABLED(CONFIG_IPV6)
+DECLARE_STATIC_KEY_FALSE(udpv6_encap_needed_key);
+#endif
+
+static inline bool udp_encap_needed(void)
+{
+	if (static_branch_unlikely(&udp_encap_needed_key))
+		return true;
+
+#if IS_ENABLED(CONFIG_IPV6)
+	if (static_branch_unlikely(&udpv6_encap_needed_key))
+		return true;
+#endif
+
+	return false;
+}
+
 static inline bool udp_unexpected_gso(struct sock *sk, struct sk_buff *skb)
 {
 	if (!skb_is_gso(skb))
@@ -143,6 +161,16 @@ static inline bool udp_unexpected_gso(st
 	if (skb_shinfo(skb)->gso_type & SKB_GSO_FRAGLIST && !udp_sk(sk)->accept_udp_fraglist)
 		return true;
 
+	/* GSO packets lacking the SKB_GSO_UDP_TUNNEL/_CSUM bits might still
+	 * land in a tunnel as the socket check in udp_gro_receive cannot be
+	 * foolproof.
+	 */
+	if (udp_encap_needed() &&
+	    READ_ONCE(udp_sk(sk)->encap_rcv) &&
+	    !(skb_shinfo(skb)->gso_type &
+	      (SKB_GSO_UDP_TUNNEL | SKB_GSO_UDP_TUNNEL_CSUM)))
+		return true;
+
 	return false;
 }
 
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -601,6 +601,13 @@ static inline bool __udp_is_mcast_sock(s
 }
 
 DEFINE_STATIC_KEY_FALSE(udp_encap_needed_key);
+EXPORT_SYMBOL(udp_encap_needed_key);
+
+#if IS_ENABLED(CONFIG_IPV6)
+DEFINE_STATIC_KEY_FALSE(udpv6_encap_needed_key);
+EXPORT_SYMBOL(udpv6_encap_needed_key);
+#endif
+
 void udp_encap_enable(void)
 {
 	static_branch_inc(&udp_encap_needed_key);
--- a/net/ipv4/udp_offload.c
+++ b/net/ipv4/udp_offload.c
@@ -515,8 +515,10 @@ struct sk_buff *udp_gro_receive(struct l
 	unsigned int off = skb_gro_offset(skb);
 	int flush = 1;
 
-	/* we can do L4 aggregation only if the packet can't land in a tunnel
-	 * otherwise we could corrupt the inner stream
+	/* We can do L4 aggregation only if the packet can't land in a tunnel
+	 * otherwise we could corrupt the inner stream. Detecting such packets
+	 * cannot be foolproof and the aggregation might still happen in some
+	 * cases. Such packets should be caught in udp_unexpected_gso later.
 	 */
 	NAPI_GRO_CB(skb)->is_flist = 0;
 	if (!sk || !udp_sk(sk)->gro_receive) {
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -473,7 +473,7 @@ csum_copy_err:
 	goto try_again;
 }
 
-DEFINE_STATIC_KEY_FALSE(udpv6_encap_needed_key);
+DECLARE_STATIC_KEY_FALSE(udpv6_encap_needed_key);
 void udpv6_encap_enable(void)
 {
 	static_branch_inc(&udpv6_encap_needed_key);



  parent reply	other threads:[~2024-04-08 14:05 UTC|newest]

Thread overview: 702+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-08 12:47 [PATCH 5.15 000/690] 5.15.154-rc1 review Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 001/690] Documentation/hw-vuln: Update spectre doc Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 002/690] x86/cpu: Support AMD Automatic IBRS Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 003/690] x86/bugs: Use sysfs_emit() Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 004/690] KVM: x86: Update KVM-only leaf handling to allow for 100% KVM-only leafs Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 005/690] KVM: x86: Advertise CPUID.(EAX=7,ECX=2):EDX[5:0] to userspace Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 006/690] KVM: x86: Use a switch statement and macros in __feature_translate() Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 007/690] timers: Update kernel-doc for various functions Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 008/690] timers: Use del_timer_sync() even on UP Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 009/690] timers: Rename del_timer_sync() to timer_delete_sync() Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 010/690] wifi: brcmfmac: Fix use-after-free bug in brcmf_cfg80211_detach Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 011/690] media: staging: ipu3-imgu: Set fields before media_entity_pads_init() Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 012/690] clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd Greg Kroah-Hartman
2024-04-08 12:47 ` [PATCH 5.15 013/690] smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr() Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 014/690] smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity() Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 015/690] arm: dts: marvell: Fix maxium->maxim typo in brownstone dts Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 016/690] drm/vmwgfx: Fix possible null pointer derefence with invalid contexts Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 017/690] pci_iounmap(): Fix MMIO mapping leak Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 018/690] media: xc4000: Fix atomicity violation in xc4000_get_frequency Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 019/690] KVM: Always flush async #PF workqueue when vCPU is being destroyed Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 020/690] sparc64: NMI watchdog: fix return value of __setup handler Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 021/690] sparc: vDSO: " Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 022/690] crypto: qat - fix double free during reset Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 023/690] crypto: qat - resolve race condition during AER recovery Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 024/690] selftests/mqueue: Set timeout to 180 seconds Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 025/690] ext4: correct best extent lstart adjustment logic Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 026/690] block: Clear zone limits for a non-zoned stacked queue Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 027/690] kasan: test: add memcpy test that avoids out-of-bounds write Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 028/690] kasan/test: avoid gcc warning for intentional overflow Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 029/690] bounds: support non-power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 030/690] fat: fix uninitialized field in nostale filehandles Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 031/690] ubifs: Set page uptodate in the correct place Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 032/690] ubi: Check for too small LEB size in VTBL code Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 033/690] ubi: correct the calculation of fastmap size Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 034/690] mtd: rawnand: meson: fix scrambling mode value in command macro Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 035/690] parisc: Avoid clobbering the C/B bits in the PSW with tophys and tovirt macros Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 036/690] parisc: Fix ip_fast_csum Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 037/690] parisc: Fix csum_ipv6_magic on 32-bit systems Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 038/690] parisc: Fix csum_ipv6_magic on 64-bit systems Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 039/690] parisc: Strip upper 32 bit of sum in csum_ipv6_magic for 64-bit builds Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 040/690] PM: suspend: Set mem_sleep_current during kernel command line setup Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 041/690] clk: qcom: gcc-ipq6018: fix terminating of frequency table arrays Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 042/690] clk: qcom: gcc-ipq8074: " Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 043/690] clk: qcom: mmcc-apq8084: " Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 044/690] clk: qcom: mmcc-msm8974: " Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 045/690] usb: xhci: Add error handling in xhci_map_urb_for_dma Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 046/690] powerpc/fsl: Fix mfpmr build errors with newer binutils Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 047/690] USB: serial: ftdi_sio: add support for GMC Z216C Adapter IR-USB Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 048/690] USB: serial: add device ID for VeriFone adapter Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 049/690] USB: serial: cp210x: add ID for MGP Instruments PDS100 Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 050/690] USB: serial: option: add MeiG Smart SLM320 product Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 051/690] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 052/690] PM: sleep: wakeirq: fix wake irq warning in system suspend Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 053/690] mmc: tmio: avoid concurrent runs of mmc_request_done() Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 054/690] fuse: fix root lookup with nonzero generation Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 055/690] fuse: dont unhash root Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 056/690] usb: typec: ucsi: Clean up UCSI_CABLE_PROP macros Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 057/690] printk/console: Split out code that enables default console Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 058/690] serial: Lock console when calling into driver before registration Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 059/690] btrfs: fix off-by-one chunk length calculation at contains_pending_extent() Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 060/690] PCI: Drop pci_device_remove() test of pci_dev->driver Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 061/690] PCI/PM: Drain runtime-idle callbacks before driver removal Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 062/690] PCI: Work around Intel I210 ROM BAR overlap defect Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 063/690] PCI/ASPM: Make Intel DG2 L1 acceptable latency unlimited Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 064/690] PCI/DPC: Quirk PIO log size for certain Intel Root Ports Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 065/690] PCI/DPC: Quirk PIO log size for Intel Raptor Lake " Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 066/690] dm-raid: fix lockdep waring in "pers->hot_add_disk" Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 067/690] mac802154: fix llsec key resources release in mac802154_llsec_key_del Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 068/690] swap: comments get_swap_device() with usage rule Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 069/690] mm: swap: fix race between free_swap_and_cache() and swapoff() Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 070/690] mmc: core: Fix switch on gp3 partition Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 071/690] drm/etnaviv: Restore some id values Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 072/690] landlock: Warn once if a Landlock action is requested while disabled Greg Kroah-Hartman
2024-04-08 12:48 ` [PATCH 5.15 073/690] hwmon: (amc6821) add of_match table Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 074/690] ext4: fix corruption during on-line resize Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 075/690] nvmem: meson-efuse: fix function pointer type mismatch Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 076/690] slimbus: core: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 077/690] phy: tegra: xusb: Add API to retrieve the port number of phy Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 078/690] usb: gadget: tegra-xudc: Fix USB3 PHY retrieval logic Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 079/690] speakup: Fix 8bit characters from direct synth Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 080/690] PCI/AER: Block runtime suspend when handling errors Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 081/690] nfs: fix UAF in direct writes Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 082/690] kbuild: Move -Wenum-{compare-conditional,enum-conversion} into W=1 Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 083/690] PCI: dwc: endpoint: Fix advertised resizable BAR size Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 084/690] vfio/platform: Disable virqfds on cleanup Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 085/690] ksmbd: retrieve number of blocks using vfs_getattr in set_file_allocation_info Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 086/690] ring-buffer: Fix waking up ring buffer readers Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 087/690] ring-buffer: Do not set shortest_full when full target is hit Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 088/690] ring-buffer: Fix resetting of shortest_full Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 089/690] ring-buffer: Fix full_waiters_pending in poll Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 090/690] ring-buffer: Use wait_event_interruptible() in ring_buffer_wait() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 091/690] soc: fsl: qbman: Always disable interrupts when taking cgr_lock Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 092/690] soc: fsl: qbman: Add helper for sanity checking cgr ops Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 093/690] soc: fsl: qbman: Add CGR update function Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 094/690] soc: fsl: qbman: Use raw spinlock for cgr_lock Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 095/690] s390/zcrypt: fix reference counting on zcrypt card objects Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 096/690] drm/panel: do not return negative error codes from drm_panel_get_modes() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 097/690] drm/exynos: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 098/690] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 099/690] drm/vc4: hdmi: " Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 100/690] memtest: use {READ,WRITE}_ONCE in memory scanning Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 101/690] nilfs2: fix failure to detect DAT corruption in btree and direct mappings Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 102/690] nilfs2: prevent kernel bug at submit_bh_wbc() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 103/690] cpufreq: dt: always allocate zeroed cpumask Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 104/690] x86/CPU/AMD: Update the Zenbleed microcode revisions Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 105/690] NFSD: Fix nfsd_clid_class use of __string_len() macro Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 106/690] net: hns3: tracing: fix hclgevf trace event strings Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 107/690] wireguard: netlink: check for dangling peer via is_dead instead of empty list Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 108/690] wireguard: netlink: access device through ctx instead of peer Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 109/690] ahci: asm1064: correct count of reported ports Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 110/690] ahci: asm1064: asm1166: dont limit " Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 111/690] drm/amdgpu: amdgpu_ttm_gart_bind set gtt bound flag Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 112/690] drm/amd/display: Return the correct HDCP error code Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 113/690] drm/amd/display: Fix noise issue on HDMI AV mute Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 114/690] dm snapshot: fix lockup in dm_exception_table_exit Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 115/690] x86/pm: Work around false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 116/690] net: ravb: Add R-Car Gen4 support Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 117/690] cpufreq: brcmstb-avs-cpufreq: fix up "add check for cpufreq_cpu_gets return value" Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 118/690] netfilter: nf_tables: mark set as dead when unbinding anonymous set with timeout Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 119/690] netfilter: nf_tables: disallow anonymous set with timeout flag Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 120/690] netfilter: nf_tables: reject constant set with timeout Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 121/690] Drivers: hv: vmbus: Calculate ring buffer size for more efficient use of memory Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 122/690] xfrm: Avoid clang fortify warning in copy_to_user_tmpl() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 123/690] KVM: SVM: Flush pages under kvm->lock to fix UAF in svm_register_enc_region() Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 124/690] tracing: Use .flush() call to wake up readers Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 125/690] drm/i915: Check before removing mm notifier Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 126/690] ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 platform Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 127/690] USB: usb-storage: Prevent divide-by-0 error in isd200_ata_command Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 128/690] usb: gadget: ncm: Fix handling of zero block length packets Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 129/690] usb: port: Dont try to peer unused USB ports based on location Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 130/690] tty: serial: fsl_lpuart: avoid idle preamble pending if CTS is enabled Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 131/690] mei: me: add arrow lake point S DID Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 132/690] mei: me: add arrow lake point H DID Greg Kroah-Hartman
2024-04-08 12:49 ` [PATCH 5.15 133/690] vt: fix unicode buffer corruption when deleting characters Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 134/690] fs/aio: Check IOCB_AIO_RW before the struct aio_kiocb conversion Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 135/690] tee: optee: Fix kernel panic caused by incorrect error handling Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 136/690] i2c: i801: Avoid potential double call to gpiod_remove_lookup_table Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 137/690] xen/events: close evtchn after mapping cleanup Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 138/690] ACPI: CPPC: Use access_width over bit_width for system memory accesses Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 139/690] clocksource/drivers/arm_global_timer: Fix maximum prescaler value Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 140/690] entry: Respect changes to system call number by trace_sys_enter() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 141/690] minmax: add umin(a, b) and umax(a, b) Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 142/690] swiotlb: Fix alignment checks when both allocation and DMA masks are present Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 143/690] dma-mapping: add dma_opt_mapping_size() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 144/690] dma-iommu: add iommu_dma_opt_mapping_size() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 145/690] iommu/dma: Force swiotlb_max_mapping_size on an untrusted device Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 146/690] printk: Update @console_may_schedule in console_trylock_spinning() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 147/690] tty: serial: imx: Fix broken RS485 Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 148/690] KVM: arm64: Work out supported block level at compile time Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 149/690] KVM: arm64: Limit stage2_apply_range() batch size to largest block Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 150/690] x86/asm: Add _ASM_RIP() macro for x86-64 (%rip) suffix Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 151/690] x86/bugs: Add asm helpers for executing VERW Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 152/690] x86/entry_64: Add VERW just before userspace transition Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 153/690] x86/entry_32: " Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 154/690] x86/bugs: Use ALTERNATIVE() instead of mds_user_clear static key Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 155/690] KVM/VMX: Use BT+JNC, i.e. EFLAGS.CF to select VMRESUME vs. VMLAUNCH Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 156/690] KVM/VMX: Move VERW closer to VMentry for MDS mitigation Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 157/690] x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 158/690] Documentation/hw-vuln: Add documentation for RFDS Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 159/690] x86/rfds: Mitigate Register File Data Sampling (RFDS) Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 160/690] KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 161/690] arch: Introduce CONFIG_FUNCTION_ALIGNMENT Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 162/690] x86/asm: Differentiate between code and function alignment Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 163/690] x86/alternatives: Introduce int3_emulate_jcc() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 164/690] x86/alternatives: Teach text_poke_bp() to patch Jcc.d32 instructions Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 165/690] x86/static_call: Add support for Jcc tail-calls Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 166/690] fsnotify: pass data_type to fsnotify_name() Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 167/690] fsnotify: pass dentry instead of inode data Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 168/690] fsnotify: clarify contract for create event hooks Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 169/690] fsnotify: Dont insert unmergeable events in hashtable Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 170/690] fanotify: Fold event size calculation to its own function Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 171/690] fanotify: Split fsid check from other fid mode checks Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 172/690] inotify: Dont force FS_IN_IGNORED Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 173/690] fsnotify: Add helper to detect overflow_event Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 174/690] fsnotify: Add wrapper around fsnotify_add_event Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 175/690] fsnotify: Retrieve super block from the data field Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 176/690] fsnotify: Protect fsnotify_handle_inode_event from no-inode events Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 177/690] fsnotify: Pass group argument to free_event Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 178/690] fanotify: Support null inode event in fanotify_dfid_inode Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 179/690] fanotify: Allow file handle encoding for unhashed events Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 180/690] fanotify: Encode empty file handle when no inode is provided Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 181/690] fanotify: Require fid_mode for any non-fd event Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 182/690] fsnotify: Support FS_ERROR event type Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 183/690] fanotify: Reserve UAPI bits for FAN_FS_ERROR Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 184/690] fanotify: Pre-allocate pool of error events Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 185/690] fanotify: Support enqueueing " Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 186/690] fanotify: Support merging " Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 187/690] fanotify: Wrap object_fh inline space in a creator macro Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 188/690] fanotify: Add helpers to decide whether to report FID/DFID Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 189/690] fanotify: WARN_ON against too large file handles Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 190/690] fanotify: Report fid info for file related file system errors Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 191/690] fanotify: Emit generic error info for error event Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 192/690] fanotify: Allow users to request FAN_FS_ERROR events Greg Kroah-Hartman
2024-04-08 12:50 ` [PATCH 5.15 193/690] ext4: Send notifications on error Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 194/690] docs: Document the FAN_FS_ERROR event Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 195/690] NFS: Remove unnecessary TRACE_DEFINE_ENUM()s Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 196/690] SUNRPC: Tracepoints should display tk_pid and cl_clid as a fixed-size field Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 197/690] NFS: Move generic FS show macros to global header Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 198/690] NFS: Move NFS protocol display " Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 199/690] NFSD: Optimize DRC bucket pruning Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 200/690] NFSD: move filehandle format declarations out of "uapi" Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 201/690] NFSD: drop support for ancient filehandles Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 202/690] NFSD: simplify struct nfsfh Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 203/690] NFSD: Initialize pointer ni with NULL and not plain integer 0 Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 204/690] SUNRPC: Replace the "__be32 *p" parameter to .pc_decode Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 205/690] SUNRPC: Change return value type of .pc_decode Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 206/690] NFSD: Save location of NFSv4 COMPOUND status Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 207/690] SUNRPC: Replace the "__be32 *p" parameter to .pc_encode Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 208/690] SUNRPC: Change return value type of .pc_encode Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 209/690] nfsd: update create verifier comment Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 210/690] NFSD:fix boolreturn.cocci warning Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 211/690] nfsd4: remove obselete comment Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 212/690] ext4: fix error code saved on super block during file system abort Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 213/690] fsnotify: clarify object type argument Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 214/690] fsnotify: separate mark iterator type from object type enum Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 215/690] fanotify: introduce group flag FAN_REPORT_TARGET_FID Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 216/690] fsnotify: generate FS_RENAME event with rich information Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 217/690] fanotify: use macros to get the offset to fanotify_info buffer Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 218/690] fanotify: use helpers to parcel " Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 219/690] fanotify: support secondary dir fh and name in fanotify_info Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 220/690] fanotify: record old and new parent and name in FAN_RENAME event Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 221/690] fanotify: record either old name new name or both for FAN_RENAME Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 222/690] fanotify: report old and/or new parent+name in FAN_RENAME event Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 223/690] fanotify: wire up " Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 224/690] exit: Implement kthread_exit Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 225/690] exit: Rename module_put_and_exit to module_put_and_kthread_exit Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 226/690] NFSD: handle errors better in write_ports_addfd() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 227/690] SUNRPC: change svc_get() to return the svc Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 228/690] SUNRPC/NFSD: clean up get/put functions Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 229/690] SUNRPC: stop using ->sv_nrthreads as a refcount Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 230/690] nfsd: make nfsd_stats.th_cnt atomic_t Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 231/690] SUNRPC: use sv_lock to protect updates to sv_nrthreads Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 232/690] NFSD: narrow nfsd_mutex protection in nfsd thread Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 233/690] NFSD: Make it possible to use svc_set_num_threads_sync Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 234/690] SUNRPC: discard svo_setup and rename svc_set_num_threads_sync() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 235/690] NFSD: simplify locking for network notifier Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 236/690] lockd: introduce nlmsvc_serv Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 237/690] lockd: simplify management of network status notifiers Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 238/690] lockd: move lockd_start_svc() call into lockd_create_svc() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 239/690] lockd: move svc_exit_thread() into the thread Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 240/690] lockd: introduce lockd_put() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 241/690] lockd: rename lockd_create_svc() to lockd_get() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 242/690] SUNRPC: move the pool_map definitions (back) into svc.c Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 243/690] SUNRPC: always treat sv_nrpools==1 as "not pooled" Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 244/690] lockd: use svc_set_num_threads() for thread start and stop Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 245/690] NFS: switch the callback service back to non-pooled Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 246/690] NFSD: Remove be32_to_cpu() from DRC hash function Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 247/690] NFSD: Fix inconsistent indenting Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 248/690] NFSD: simplify per-net file cache management Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 249/690] NFSD: Combine XDR error tracepoints Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 250/690] nfsd: improve stateid access bitmask documentation Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 251/690] NFSD: De-duplicate nfsd4_decode_bitmap4() Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 252/690] nfs: block notification on fs with its own ->lock Greg Kroah-Hartman
2024-04-08 12:51 ` [PATCH 5.15 253/690] nfsd4: add refcount for nfsd4_blocked_lock Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 254/690] nfsd: map EBADF Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 255/690] nfsd: Add errno mapping for EREMOTEIO Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 256/690] nfsd: Retry once in nfsd_open on an -EOPENSTALE return Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 257/690] NFSD: Clean up nfsd_vfs_write() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 258/690] NFSD: De-duplicate net_generic(SVC_NET(rqstp), nfsd_net_id) Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 259/690] nfsd: Add a tracepoint for errors in nfsd4_clone_file_range() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 260/690] NFSD: Write verifier might go backwards Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 261/690] NFSD: Clean up the nfsd_net::nfssvc_boot field Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 262/690] NFSD: Rename boot verifier functions Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 263/690] NFSD: Trace boot verifier resets Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 264/690] NFSD: Move fill_pre_wcc() and fill_post_wcc() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 265/690] fsnotify: invalidate dcache before IN_DELETE event Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 266/690] NFSD: Deprecate NFS_OFFSET_MAX Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 267/690] nfsd: Add support for the birth time attribute Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 268/690] orDate: Thu Sep 30 19:19:57 2021 -0400 Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 269/690] NFSD: Skip extra computation for RC_NOCACHE case Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 270/690] NFSD: Streamline the rare "found" case Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 271/690] NFSD: Remove NFSD_PROC_ARGS_* macros Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 272/690] SUNRPC: Remove the .svo_enqueue_xprt method Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 273/690] SUNRPC: Merge svc_do_enqueue_xprt() into svc_enqueue_xprt() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 274/690] SUNRPC: Remove svo_shutdown method Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 275/690] SUNRPC: Rename svc_create_xprt() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 276/690] SUNRPC: Rename svc_close_xprt() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 277/690] SUNRPC: Remove svc_shutdown_net() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 278/690] NFSD: Remove svc_serv_ops::svo_module Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 279/690] NFSD: Move svc_serv_ops::svo_function into struct svc_serv Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 280/690] NFSD: Remove CONFIG_NFSD_V3 Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 281/690] NFSD: Clean up _lm_ operation names Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 282/690] nfsd: fix using the correct variable for sizeof() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 283/690] fsnotify: fix merge with parents ignored mask Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 284/690] fsnotify: optimize FS_MODIFY events with no ignored masks Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 285/690] fsnotify: remove redundant parameter judgment Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 286/690] nfsd: Fix a write performance regression Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 287/690] nfsd: Clean up nfsd_file_put() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 288/690] fanotify: do not allow setting dirent events in mask of non-dir Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 289/690] fs/lock: documentation cleanup. Replace inode->i_lock with flc_lock Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 290/690] inotify: move control flags from mask to mark flags Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 291/690] fsnotify: pass flags argument to fsnotify_alloc_group() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 292/690] fsnotify: make allow_dups a property of the group Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 293/690] fsnotify: create helpers for group mark_mutex lock Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 294/690] inotify: use fsnotify group lock helpers Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 295/690] nfsd: " Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 296/690] dnotify: " Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 297/690] fsnotify: allow adding an inode mark without pinning inode Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 298/690] fanotify: create helper fanotify_mark_user_flags() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 299/690] fanotify: factor out helper fanotify_mark_update_flags() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 300/690] fanotify: implement "evictable" inode marks Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 301/690] fanotify: use fsnotify group lock helpers Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 302/690] fanotify: enable "evictable" inode marks Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 303/690] fsnotify: introduce mark type iterator Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 304/690] fsnotify: consistent behavior for parent not watching children Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 305/690] fanotify: fix incorrect fmode_t casts Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 306/690] NFSD: Clean up nfsd_splice_actor() Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 307/690] NFSD: add courteous server support for thread with only delegation Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 308/690] NFSD: add support for share reservation conflict to courteous server Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 309/690] NFSD: move create/destroy of laundry_wq to init_nfsd and exit_nfsd Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 310/690] fs/lock: add helper locks_owner_has_blockers to check for blockers Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 311/690] fs/lock: add 2 callbacks to lock_manager_operations to resolve conflict Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 312/690] NFSD: add support for lock conflict to courteous server Greg Kroah-Hartman
2024-04-08 12:52 ` [PATCH 5.15 313/690] NFSD: Show state of courtesy client in client info Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 314/690] NFSD: Clean up nfsd3_proc_create() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 315/690] NFSD: Avoid calling fh_drop_write() twice in do_nfsd_create() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 316/690] NFSD: Refactor nfsd_create_setattr() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 317/690] NFSD: Refactor NFSv3 CREATE Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 318/690] NFSD: Refactor NFSv4 OPEN(CREATE) Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 319/690] NFSD: Remove do_nfsd_create() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 320/690] NFSD: Clean up nfsd_open_verified() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 321/690] NFSD: Instantiate a struct file when creating a regular NFSv4 file Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 322/690] NFSD: Remove dprintk call sites from tail of nfsd4_open() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 323/690] NFSD: Fix whitespace Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 324/690] NFSD: Move documenting comment for nfsd4_process_open2() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 325/690] NFSD: Trace filecache opens Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 326/690] SUNRPC: Use RMW bitops in single-threaded hot paths Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 327/690] nfsd: Unregister the cld notifier when laundry_wq create failed Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 328/690] nfsd: Fix null-ptr-deref in nfsd_fill_super() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 329/690] NFSD: Modernize nfsd4_release_lockowner() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 330/690] NFSD: Add documenting comment for nfsd4_release_lockowner() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 331/690] NFSD: nfsd_file_put() can sleep Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 332/690] NFSD: Fix potential use-after-free in nfsd_file_put() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 333/690] NFS: restore module put when manager exits Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 334/690] fanotify: refine the validation checks on non-dir inode mask Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 335/690] NFSD: Decode NFSv4 birth time attribute Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 336/690] fs: inotify: Fix typo in inotify comment Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 337/690] fanotify: prepare for setting event flags in ignore mask Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 338/690] fanotify: cleanups for fanotify_mark() input validations Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 339/690] fanotify: introduce FAN_MARK_IGNORE Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 340/690] fsnotify: Fix comment typo Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 341/690] NLM: Defend against file_lock changes after vfs_test_lock() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 342/690] NFSD: Instrument fh_verify() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 343/690] NFSD: Fix space and spelling mistake Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 344/690] nfsd: remove redundant assignment to variable len Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 345/690] NFSD: Demote a WARN to a pr_warn() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 346/690] NFSD: Report filecache LRU size Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 347/690] NFSD: Report count of calls to nfsd_file_acquire() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 348/690] NFSD: Report count of freed filecache items Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 349/690] NFSD: Report average age of " Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 350/690] NFSD: Add nfsd_file_lru_dispose_list() helper Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 351/690] NFSD: Refactor nfsd_file_gc() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 352/690] NFSD: Refactor nfsd_file_lru_scan() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 353/690] NFSD: Report the number of items evicted by the LRU walk Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 354/690] NFSD: Record number of flush calls Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 355/690] NFSD: Zero counters when the filecache is re-initialized Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 356/690] NFSD: Hook up the filecache stat file Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 357/690] NFSD: WARN when freeing an item still linked via nf_lru Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 358/690] NFSD: Trace filecache LRU activity Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 359/690] NFSD: Leave open files out of the filecache LRU Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 360/690] NFSD: Fix the filecache LRU shrinker Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 361/690] NFSD: Never call nfsd_file_gc() in foreground paths Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 362/690] NFSD: No longer record nf_hashval in the trace log Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 363/690] NFSD: Remove lockdep assertion from unhash_and_release_locked() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 364/690] NFSD: nfsd_file_unhash can compute hashval from nf->nf_inode Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 365/690] NFSD: Refactor __nfsd_file_close_inode() Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 366/690] NFSD: nfsd_file_hash_remove can compute hashval Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 367/690] NFSD: Remove nfsd_file::nf_hashval Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 368/690] NFSD: Replace the "init once" mechanism Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 369/690] NFSD: Set up an rhashtable for the filecache Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 370/690] NFSD: Convert the filecache to use rhashtable Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 371/690] NFSD: Clean up unused code after rhashtable conversion Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 372/690] NFSD: Separate tracepoints for acquire and create Greg Kroah-Hartman
2024-04-08 12:53 ` [PATCH 5.15 373/690] NFSD: Move nfsd_file_trace_alloc() tracepoint Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 374/690] NFSD: NFSv4 CLOSE should release an nfsd_file immediately Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 375/690] NFSD: Ensure nf_inode is never dereferenced Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 376/690] NFSD: refactoring v4 specific code to a helper in nfs4state.c Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 377/690] NFSD: keep track of the number of v4 clients in the system Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 378/690] NFSD: limit the number of v4 clients to 1024 per 1GB of system memory Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 379/690] nfsd: silence extraneous printk on nfsd.ko insertion Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 380/690] NFSD: Optimize nfsd4_encode_operation() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 381/690] NFSD: Optimize nfsd4_encode_fattr() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 382/690] NFSD: Clean up SPLICE_OK in nfsd4_encode_read() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 383/690] NFSD: Add an nfsd4_read::rd_eof field Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 384/690] NFSD: Optimize nfsd4_encode_readv() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 385/690] NFSD: Simplify starting_len Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 386/690] NFSD: Use xdr_pad_size() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 387/690] NFSD: Clean up nfsd4_encode_readlink() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 388/690] NFSD: Fix strncpy() fortify warning Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 389/690] NFSD: nfserrno(-ENOMEM) is nfserr_jukebox Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 390/690] NFSD: Shrink size of struct nfsd4_copy_notify Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 391/690] NFSD: Shrink size of struct nfsd4_copy Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 392/690] NFSD: Reorder the fields in struct nfsd4_op Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 393/690] NFSD: Make nfs4_put_copy() static Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 394/690] NFSD: Replace boolean fields in struct nfsd4_copy Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 395/690] NFSD: Refactor nfsd4_cleanup_inter_ssc() (1/2) Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 396/690] NFSD: Refactor nfsd4_cleanup_inter_ssc() (2/2) Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 397/690] NFSD: Refactor nfsd4_do_copy() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 398/690] NFSD: Remove kmalloc from nfsd4_do_async_copy() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 399/690] NFSD: Add nfsd4_send_cb_offload() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 400/690] NFSD: Move copy offload callback arguments into a separate structure Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 401/690] NFSD: drop fh argument from alloc_init_deleg Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 402/690] NFSD: verify the opened dentry after setting a delegation Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 403/690] NFSD: introduce struct nfsd_attrs Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 404/690] NFSD: set attributes when creating symlinks Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 405/690] NFSD: add security label to struct nfsd_attrs Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 406/690] NFSD: add posix ACLs " Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 407/690] NFSD: change nfsd_create()/nfsd_symlink() to unlock directory before returning Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 408/690] NFSD: always drop directory lock in nfsd_unlink() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 409/690] NFSD: only call fh_unlock() once in nfsd_link() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 410/690] NFSD: reduce locking in nfsd_lookup() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 411/690] NFSD: use explicit lock/unlock for directory ops Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 412/690] NFSD: use (un)lock_inode instead of fh_(un)lock for file operations Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 413/690] NFSD: discard fh_locked flag and fh_lock/fh_unlock Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 414/690] NFSD: fix regression with setting ACLs Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 415/690] nfsd_splice_actor(): handle compound pages Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 416/690] NFSD: move from strlcpy with unused retval to strscpy Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 417/690] lockd: " Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 418/690] NFSD enforce filehandle check for source file in COPY Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 419/690] NFSD: remove redundant variable status Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 420/690] nfsd: Avoid some useless tests Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 421/690] nfsd: Propagate some error code returned by memdup_user() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 422/690] NFSD: Increase NFSD_MAX_OPS_PER_COMPOUND Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 423/690] NFSD: drop fname and flen args from nfsd_create_locked() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 424/690] nfsd: clean up mounted_on_fileid handling Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 425/690] nfsd: remove nfsd4_prepare_cb_recall() declaration Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 426/690] NFSD: Replace dprintk() call site in fh_verify() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 427/690] NFSD: Trace NFSv4 COMPOUND tags Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 428/690] NFSD: Add tracepoints to report NFSv4 callback completions Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 429/690] NFSD: Add a mechanism to wait for a DELEGRETURN Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 430/690] NFSD: Refactor nfsd_setattr() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 431/690] NFSD: Make nfsd4_setattr() wait before returning NFS4ERR_DELAY Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 432/690] NFSD: Make nfsd4_rename() " Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 5.15 433/690] NFSD: Make nfsd4_remove() " Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 434/690] NFSD: keep track of the number of courtesy clients in the system Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 435/690] NFSD: add shrinker to reap courtesy clients on low memory condition Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 436/690] SUNRPC: Parametrize how much of argsize should be zeroed Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 437/690] NFSD: Reduce amount of struct nfsd4_compoundargs that needs clearing Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 438/690] NFSD: Refactor common code out of dirlist helpers Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 439/690] NFSD: Use xdr_inline_decode() to decode NFSv3 symlinks Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 440/690] NFSD: Clean up WRITE arg decoders Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 441/690] NFSD: Clean up nfs4svc_encode_compoundres() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 442/690] NFSD: Remove "inline" directives on op_rsize_bop helpers Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 443/690] NFSD: Remove unused nfsd4_compoundargs::cachetype field Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 444/690] NFSD: Pack struct nfsd4_compoundres Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 445/690] nfsd: use DEFINE_PROC_SHOW_ATTRIBUTE to define nfsd_proc_ops Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 446/690] nfsd: use DEFINE_SHOW_ATTRIBUTE to define export_features_fops and supported_enctypes_fops Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 447/690] nfsd: use DEFINE_SHOW_ATTRIBUTE to define client_info_fops Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 448/690] nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_reply_cache_stats_fops Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 449/690] nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_file_cache_stats_fops Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 450/690] NFSD: Rename the fields in copy_stateid_t Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 451/690] NFSD: Cap rsize_bop result based on send buffer size Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 452/690] nfsd: only fill out return pointer on success in nfsd4_lookup_stateid Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 453/690] nfsd: fix comments about spinlock handling with delegations Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 454/690] nfsd: make nfsd4_run_cb a bool return function Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 455/690] nfsd: extra checks when freeing delegation stateids Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 456/690] fs/notify: constify path Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 457/690] fsnotify: remove unused declaration Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 458/690] fanotify: Remove obsoleted fanotify_event_has_path() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 459/690] nfsd: fix nfsd_file_unhash_and_dispose Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 460/690] nfsd: rework hashtable handling in nfsd_do_file_acquire Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 461/690] NFSD: unregister shrinker when nfsd_init_net() fails Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 462/690] nfsd: ensure we always call fh_verify_error tracepoint Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 463/690] nfsd: fix net-namespace logic in __nfsd_file_cache_purge Greg Kroah-Hartman
2024-04-09  6:42   ` Petr Vorel
2024-04-09  6:53     ` Greg Kroah-Hartman
2024-04-09 10:36       ` Petr Vorel
2024-04-09 11:31         ` Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 464/690] nfsd: fix use-after-free in nfsd_file_do_acquire tracepoint Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 465/690] nfsd: put the export reference in nfsd4_verify_deleg_dentry Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 466/690] NFSD: Fix trace_nfsd_fh_verify_err() crasher Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 467/690] NFSD: Fix reads with a non-zero offset that dont end on a page boundary Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 468/690] lockd: use locks_inode_context helper Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 469/690] nfsd: " Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 470/690] NFSD: Simplify READ_PLUS Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 471/690] NFSD: Remove redundant assignment to variable host_err Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 472/690] NFSD: Finish converting the NFSv3 GETACL result encoder Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 473/690] nfsd: ignore requests to disable unsupported versions Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 474/690] nfsd: move nfserrno() to vfs.c Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 475/690] nfsd: allow disabling NFSv2 at compile time Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 476/690] exportfs: use pr_debug for unreachable debug statements Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 477/690] NFSD: Pass the target nfsd_file to nfsd_commit() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 478/690] NFSD: Revert "NFSD: NFSv4 CLOSE should release an nfsd_file immediately" Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 479/690] NFSD: Add an NFSD_FILE_GC flag to enable nfsd_file garbage collection Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 480/690] NFSD: Flesh out a documenting comment for filecache.c Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 481/690] NFSD: Clean up nfs4_preprocess_stateid_op() call sites Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 482/690] NFSD: Trace stateids returned via DELEGRETURN Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 483/690] NFSD: Trace delegation revocations Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 484/690] NFSD: Use const pointers as parameters to fh_ helpers Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 485/690] NFSD: Update file_hashtbl() helpers Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 486/690] NFSD: Clean up nfsd4_init_file() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 487/690] NFSD: Add a nfsd4_file_hash_remove() helper Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 488/690] NFSD: Clean up find_or_add_file() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 489/690] NFSD: Refactor find_file() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 490/690] NFSD: Use rhashtable for managing nfs4_file objects Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 491/690] NFSD: Fix licensing header in filecache.c Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 492/690] nfsd: remove the pages_flushed statistic from filecache Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 5.15 493/690] nfsd: reorganize filecache.c Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 494/690] filelock: add a new locks_inode_context accessor function Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 495/690] nfsd: fix up the filecache laundrette scheduling Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 496/690] NFSD: Add an nfsd_file_fsync tracepoint Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 497/690] nfsd: return error if nfs4_setacl fails Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 498/690] NFSD: Use struct_size() helper in alloc_session() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 499/690] lockd: set missing fl_flags field when retrieving args Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 500/690] lockd: ensure we use the correct file descriptor when unlocking Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 501/690] lockd: fix file selection in nlmsvc_cancel_blocked Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 502/690] trace: Relocate event helper files Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 503/690] NFSD: refactoring courtesy_client_reaper to a generic low memory shrinker Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 504/690] NFSD: add support for sending CB_RECALL_ANY Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 505/690] NFSD: add delegation reaper to react to low memory condition Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 506/690] NFSD: add CB_RECALL_ANY tracepoints Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 507/690] NFSD: Use only RQ_DROPME to signal the need to drop a reply Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 508/690] NFSD: Avoid clashing function prototypes Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 509/690] nfsd: rework refcounting in filecache Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 510/690] nfsd: fix handling of cached open files in nfsd4_open codepath Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 511/690] Revert "SUNRPC: Use RMW bitops in single-threaded hot paths" Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 512/690] NFSD: Use set_bit(RQ_DROPME) Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 513/690] NFSD: register/unregister of nfsd-client shrinker at nfsd startup/shutdown time Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 514/690] NFSD: replace delayed_work with work_struct for nfsd_client_shrinker Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 515/690] nfsd: dont free files unconditionally in __nfsd_file_cache_purge Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 516/690] nfsd: dont destroy global nfs4_file table in per-net shutdown Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 517/690] NFSD: enhance inter-server copy cleanup Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 518/690] nfsd: allow nfsd_file_get to sanely handle a NULL pointer Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 519/690] nfsd: clean up potential nfsd_file refcount leaks in COPY codepath Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 520/690] NFSD: fix leaked reference count of nfsd4_ssc_umount_item Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 521/690] nfsd: dont hand out delegation on setuid files being opened for write Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 522/690] NFSD: fix problems with cleanup on errors in nfsd4_copy Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 523/690] nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 524/690] nfsd: dont fsync nfsd_files on last close Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 525/690] NFSD: copy the whole verifier in nfsd_copy_write_verifier Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 526/690] NFSD: Protect against filesystem freezing Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 527/690] nfsd: dont replace page in rq_pages if its a continuation of last page Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 528/690] nfsd: call op_release, even when op_func returns an error Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 529/690] nfsd: dont open-code clear_and_wake_up_bit Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 530/690] nfsd: NFSD_FILE_KEY_INODE only needs to find GCed entries Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 531/690] nfsd: simplify test_bit return in NFSD_FILE_KEY_FULL comparator Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 532/690] nfsd: dont kill nfsd_files because of lease break error Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 533/690] nfsd: add some comments to nfsd_file_do_acquire Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 534/690] nfsd: dont take/put an extra reference when putting a file Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 535/690] nfsd: update comment over __nfsd_file_cache_purge Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 536/690] nfsd: allow reaping files still under writeback Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 537/690] NFSD: Convert filecache to rhltable Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 538/690] nfsd: simplify the delayed disposal list code Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 539/690] NFSD: Fix problem of COMMIT and NFS4ERR_DELAY in infinite loop Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 540/690] nfsd: make a copy of struct iattr before calling notify_change Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 541/690] nfsd: fix double fget() bug in __write_ports_addfd() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 542/690] lockd: drop inappropriate svc_get() from locked_get() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 543/690] NFSD: Add an nfsd4_encode_nfstime4() helper Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 544/690] nfsd: Fix creation time serialization order Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 545/690] nfsd: dont allow nfsd threads to be signalled Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 546/690] nfsd: Simplify code around svc_exit_thread() call in nfsd() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 547/690] nfsd: separate nfsd_last_thread() from nfsd_put() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 548/690] Documentation: Add missing documentation for EXPORT_OP flags Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 549/690] NFSD: fix possible oops when nfsd/pool_stats is closed Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 550/690] lockd: introduce safe async lock op Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 551/690] nfsd: call nfsd_last_thread() before final nfsd_put() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 552/690] nfsd: drop the nfsd_put helper Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 5.15 553/690] nfsd: fix RELEASE_LOCKOWNER Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 554/690] nfsd: dont take fi_lock in nfsd_break_deleg_cb() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 555/690] nfsd: dont call locks_release_private() twice concurrently Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 556/690] nfsd: Fix a regression in nfsd_setattr() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 557/690] perf/core: Fix reentry problem in perf_output_read_group() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 558/690] efivarfs: Request at most 512 bytes for variable names Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 559/690] powerpc: xor_vmx: Add -mhard-float to CFLAGS Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 560/690] selftests: mptcp: diag: return KSFT_FAIL not test_cnt Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 561/690] vfio/pci: Disable auto-enable of exclusive INTx IRQ Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 562/690] vfio/pci: Lock external INTx masking ops Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 563/690] vfio: Introduce interface to flush virqfd inject workqueue Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 564/690] vfio/pci: Create persistent INTx handler Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 565/690] vfio/platform: Create persistent IRQ handlers Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 566/690] vfio/fsl-mc: Block calling interrupt handler without trigger Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 567/690] serial: sc16is7xx: convert from _raw_ to _noinc_ regmap functions for FIFO Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 568/690] mm/migrate: set swap entry values of THP tail pages properly Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 569/690] init: open /initrd.image with O_LARGEFILE Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 570/690] btrfs: zoned: use zone aware sb location for scrub Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 571/690] wifi: mac80211: check/clear fast rx for non-4addr sta VLAN changes Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 572/690] exec: Fix NOMMU linux_binprm::exec in transfer_args_to_stack() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 573/690] hexagon: vmlinux.lds.S: handle attributes section Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 574/690] mmc: core: Initialize mmc_blk_ioc_data Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 575/690] mmc: core: Avoid negative index with array access Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 576/690] net: ll_temac: platform_get_resource replaced by wrong function Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 577/690] drm/i915/gt: Reset queue_priority_hint on parking Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 578/690] usb: cdc-wdm: close race between read and workqueue Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 579/690] drm/amdgpu: Use drm_mode_copy() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 580/690] drm/amd/display: Preserve original aspect ratio in create stream Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 581/690] ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 582/690] scsi: core: Fix unremoved procfs host directory regression Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 583/690] staging: vc04_services: changen strncpy() to strscpy_pad() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 584/690] staging: vc04_services: fix information leak in create_component() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 585/690] USB: core: Add hub_get() and hub_put() routines Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 586/690] usb: dwc2: host: Fix remote wakeup from hibernation Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 587/690] usb: dwc2: host: Fix hibernation flow Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 588/690] usb: dwc2: host: Fix ISOC flow in DDMA mode Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 589/690] usb: dwc2: gadget: Fix exiting from clock gating Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 590/690] usb: dwc2: gadget: LPM flow fix Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 591/690] usb: udc: remove warning when queue disabled ep Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 592/690] usb: typec: ucsi: Ack unsupported commands Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 593/690] usb: typec: ucsi: Clear UCSI_CCI_RESET_COMPLETE before reset Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 594/690] scsi: qla2xxx: Prevent command send on chip reset Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 595/690] scsi: qla2xxx: Fix N2N stuck connection Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 596/690] scsi: qla2xxx: Split FCE|EFT trace control Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 597/690] scsi: qla2xxx: NVME|FCP prefer flag not being honored Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 598/690] scsi: qla2xxx: Fix command flush on cable pull Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 599/690] scsi: qla2xxx: Fix double free of fcport Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 600/690] scsi: qla2xxx: Change debug message during driver unload Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 601/690] scsi: qla2xxx: Delay I/O Abort on PCI error Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 602/690] x86/cpu: Enable STIBP on AMD if Automatic IBRS is enabled Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 603/690] PCI/DPC: Quirk PIO log size for Intel Ice Lake Root Ports Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 604/690] scsi: lpfc: Correct size for wqe for memset() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 605/690] USB: core: Fix deadlock in usb_deauthorize_interface() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 606/690] scsi: usb: Call scsi_done() directly Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 607/690] scsi: usb: Stop using the SCSI pointer Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 608/690] USB: UAS: return ENODEV when submit urbs fail with device not attached Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 609/690] nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 610/690] mlxbf_gige: stop PHY during open() error paths Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 611/690] iwlwifi: mvm: rfi: use kmemdup() to replace kzalloc + memcpy Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 612/690] wifi: iwlwifi: mvm: rfi: fix potential response leaks Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 5.15 613/690] ixgbe: avoid sleeping allocation in ixgbe_ipsec_vf_add_sa() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 614/690] s390/qeth: handle deferred cc1 Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 615/690] tcp: properly terminate timers for kernel sockets Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 616/690] ACPICA: debugger: check status of acpi_evaluate_object() in acpi_db_walk_for_fields() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 617/690] mlxbf_gige: call request_irq() after NAPI initialized Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 618/690] bpf: Protect against int overflow for stack access size Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 619/690] Octeontx2-af: fix pause frame configuration in GMP mode Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 620/690] dm integrity: fix out-of-range warning Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 621/690] r8169: fix issue caused by buggy BIOS on certain boards with RTL8168d Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 622/690] x86/cpufeatures: Add new word for scattered features Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 623/690] x86/cpufeatures: Add CPUID_LNX_5 to track recently added Linux-defined word Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 624/690] arm64: dts: qcom: sc7180-trogdor: mark bluetooth address as broken Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 625/690] Bluetooth: hci_event: set the conn encrypted before conn establishes Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 626/690] Bluetooth: Fix TOCTOU in HCI debugfs implementation Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 627/690] xen-netfront: Add missing skb_mark_for_recycle Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 628/690] net/rds: fix possible cp null dereference Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 629/690] locking/rwsem: Disable preemption while trying for rwsem lock Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 630/690] io_uring: ensure 0 is returned on file registration success Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 631/690] Revert "x86/mm/ident_map: Use gbpages only where full GB page should be mapped." Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 632/690] mm, vmscan: prevent infinite loop for costly GFP_NOIO | __GFP_RETRY_MAYFAIL allocations Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 633/690] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 634/690] KVM: x86: Bail to userspace if emulation of atomic user access faults Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 635/690] KVM: x86: Mark target gfn of emulated atomic instruction as dirty Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 636/690] netfilter: nf_tables: reject new basechain after table flag update Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 637/690] netfilter: nf_tables: flush pending destroy work before exit_net release Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 638/690] netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 639/690] netfilter: validate user input for expected length Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 640/690] vboxsf: Avoid an spurious warning if load_nls_xxx() fails Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 641/690] bpf, sockmap: Prevent lock inversion deadlock in map delete elem Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 642/690] net/sched: act_skbmod: prevent kernel-infoleak Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 643/690] net: stmmac: fix rx queue priority assignment Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 644/690] selftests: net: gro fwd: update vxlan GRO test expectations Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 645/690] erspan: make sure erspan_base_hdr is present in skb->head Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 646/690] selftests: reuseaddr_conflict: add missing new line at the end of the output Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 647/690] ipv6: Fix infinite recursion in fib6_dump_done() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 648/690] mlxbf_gige: stop interface during shutdown Greg Kroah-Hartman
2024-04-08 12:58 ` Greg Kroah-Hartman [this message]
2024-04-08 12:58 ` [PATCH 5.15 650/690] udp: do not transition UDP GRO fraglist partial checksums to unnecessary Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 651/690] udp: prevent local UDP tunnel packets from being GROed Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 652/690] octeontx2-af: Fix issue with loading coalesced KPU profiles Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 653/690] octeontx2-pf: check negative error code in otx2_open() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 654/690] i40e: fix i40e_count_filters() to count only active/new filters Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 655/690] i40e: fix vf may be used uninitialized in this function warning Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 656/690] scsi: qla2xxx: Update manufacturer details Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 657/690] scsi: qla2xxx: Update manufacturer detail Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 658/690] Revert "usb: phy: generic: Get the vbus supply" Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 659/690] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 660/690] i40e: Store the irq number in i40e_q_vector Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 661/690] i40e: Remove _t suffix from enum type names Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 662/690] i40e: Enforce software interrupt during busy-poll exit Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 663/690] net: usb: asix: suspend embedded PHY if external is used Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 664/690] drivers: net: convert to boolean for the mac_managed_pm flag Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 665/690] net: fec: Set mac_managed_pm during probe Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 666/690] net: ravb: Always process TX descriptor ring Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 667/690] ASoC: rt5682-sdw: fix locking sequence Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 668/690] ASoC: rt711-sdca: " Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 669/690] ASoC: rt711-sdw: " Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 670/690] ASoC: ops: Fix wraparound for mask in snd_soc_get_volsw Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 671/690] ata: sata_sx4: fix pdc20621_get_from_dimm() on 64-bit Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 672/690] scsi: mylex: Fix sysfs buffer lengths Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 5.15 673/690] ata: sata_mv: Fix PCI device ID table declaration compilation warning Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 674/690] nfsd: hold a lighter-weight client reference over CB_RECALL_ANY Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 675/690] HID: uhid: Use READ_ONCE()/WRITE_ONCE() for ->running Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 676/690] openrisc: Fix pagewalk usage in arch_dma_{clear, set}_uncached Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 677/690] fs/pipe: Fix lockdep false-positive in watchqueue pipe_write() Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 678/690] ALSA: hda/realtek: Update Panasonic CF-SZ6 quirk to support headset with microphone Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 679/690] driver core: Introduce device_link_wait_removal() Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 680/690] of: dynamic: Synchronize of_changeset_destroy() with the devlink removals Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 681/690] x86/mce: Make sure to grab mce_sysfs_mutex in set_bank() Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 682/690] s390/entry: align system call table on 8 bytes Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 683/690] riscv: Fix spurious errors from __get/put_kernel_nofault Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 684/690] riscv: process: Fix kernel gp leakage Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 685/690] x86/bugs: Fix the SRSO mitigation on Zen3/4 Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 686/690] x86/retpoline: Do the necessary fixup to the Zen3/4 srso return thunk for !SRSO Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 687/690] mptcp: dont account accept() of non-MPC client as fallback to TCP Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 688/690] mm/secretmem: fix GUP-fast succeeding on secretmem folios Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 689/690] gro: fix ownership transfer Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 5.15 690/690] nvme: fix miss command type check Greg Kroah-Hartman
2024-04-08 16:02 ` [PATCH 5.15 000/690] 5.15.154-rc1 review SeongJae Park
2024-04-08 20:06 ` Kelsey Steele
2024-04-09  3:33 ` Ron Economos
2024-04-09  6:53 ` Jon Hunter
2024-04-09 12:23   ` Greg Kroah-Hartman
2024-04-09 15:19 ` Anders Roxell
2024-04-10  0:32 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240408125423.158284805@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=atenart@kernel.org \
    --cc=davem@davemloft.net \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=willemb@google.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 read-only IMAP folder(s) and NNTP newsgroup(s).