From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org,
Masahiro Yamada <yamada.masahiro@socionext.com>,
Nick Desaulniers <ndesaulniers@google.com>,
Andrew Morton <akpm@linux-foundation.org>,
Christophe Leroy <christophe.leroy@csgroup.eu>,
"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 5.15 068/139] net: Force inlining of checksum functions in net/checksum.h
Date: Mon, 28 Feb 2022 18:24:02 +0100 [thread overview]
Message-ID: <20220228172354.864490689@linuxfoundation.org> (raw)
In-Reply-To: <20220228172347.614588246@linuxfoundation.org>
From: Christophe Leroy <christophe.leroy@csgroup.eu>
commit 5486f5bf790b5c664913076c3194b8f916a5c7ad upstream.
All functions defined as static inline in net/checksum.h are
meant to be inlined for performance reason.
But since commit ac7c3e4ff401 ("compiler: enable
CONFIG_OPTIMIZE_INLINING forcibly") the compiler is allowed to
uninline functions when it wants.
Fair enough in the general case, but for tiny performance critical
checksum helpers that's counter-productive.
The problem mainly arises when selecting CONFIG_CC_OPTIMISE_FOR_SIZE,
Those helpers being 'static inline' in header files you suddenly find
them duplicated many times in the resulting vmlinux.
Here is a typical exemple when building powerpc pmac32_defconfig
with CONFIG_CC_OPTIMISE_FOR_SIZE. csum_sub() appears 4 times:
c04a23cc <csum_sub>:
c04a23cc: 7c 84 20 f8 not r4,r4
c04a23d0: 7c 63 20 14 addc r3,r3,r4
c04a23d4: 7c 63 01 94 addze r3,r3
c04a23d8: 4e 80 00 20 blr
...
c04a2ce8: 4b ff f6 e5 bl c04a23cc <csum_sub>
...
c04a2d2c: 4b ff f6 a1 bl c04a23cc <csum_sub>
...
c04a2d54: 4b ff f6 79 bl c04a23cc <csum_sub>
...
c04a754c <csum_sub>:
c04a754c: 7c 84 20 f8 not r4,r4
c04a7550: 7c 63 20 14 addc r3,r3,r4
c04a7554: 7c 63 01 94 addze r3,r3
c04a7558: 4e 80 00 20 blr
...
c04ac930: 4b ff ac 1d bl c04a754c <csum_sub>
...
c04ad264: 4b ff a2 e9 bl c04a754c <csum_sub>
...
c04e3b08 <csum_sub>:
c04e3b08: 7c 84 20 f8 not r4,r4
c04e3b0c: 7c 63 20 14 addc r3,r3,r4
c04e3b10: 7c 63 01 94 addze r3,r3
c04e3b14: 4e 80 00 20 blr
...
c04e5788: 4b ff e3 81 bl c04e3b08 <csum_sub>
...
c04e65c8: 4b ff d5 41 bl c04e3b08 <csum_sub>
...
c0512d34 <csum_sub>:
c0512d34: 7c 84 20 f8 not r4,r4
c0512d38: 7c 63 20 14 addc r3,r3,r4
c0512d3c: 7c 63 01 94 addze r3,r3
c0512d40: 4e 80 00 20 blr
...
c0512dfc: 4b ff ff 39 bl c0512d34 <csum_sub>
...
c05138bc: 4b ff f4 79 bl c0512d34 <csum_sub>
...
Restore the expected behaviour by using __always_inline for all
functions defined in net/checksum.h
vmlinux size is even reduced by 256 bytes with this patch:
text data bss dec hex filename
6980022 2515362 194384 9689768 93daa8 vmlinux.before
6979862 2515266 194384 9689512 93d9a8 vmlinux.now
Fixes: ac7c3e4ff401 ("compiler: enable CONFIG_OPTIMIZE_INLINING forcibly")
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
include/net/checksum.h | 45 +++++++++++++++++++++++----------------------
1 file changed, 23 insertions(+), 22 deletions(-)
--- a/include/net/checksum.h
+++ b/include/net/checksum.h
@@ -22,7 +22,7 @@
#include <asm/checksum.h>
#ifndef _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
-static inline
+static __always_inline
__wsum csum_and_copy_from_user (const void __user *src, void *dst,
int len)
{
@@ -33,7 +33,7 @@ __wsum csum_and_copy_from_user (const vo
#endif
#ifndef HAVE_CSUM_COPY_USER
-static __inline__ __wsum csum_and_copy_to_user
+static __always_inline __wsum csum_and_copy_to_user
(const void *src, void __user *dst, int len)
{
__wsum sum = csum_partial(src, len, ~0U);
@@ -45,7 +45,7 @@ static __inline__ __wsum csum_and_copy_t
#endif
#ifndef _HAVE_ARCH_CSUM_AND_COPY
-static inline __wsum
+static __always_inline __wsum
csum_partial_copy_nocheck(const void *src, void *dst, int len)
{
memcpy(dst, src, len);
@@ -54,7 +54,7 @@ csum_partial_copy_nocheck(const void *sr
#endif
#ifndef HAVE_ARCH_CSUM_ADD
-static inline __wsum csum_add(__wsum csum, __wsum addend)
+static __always_inline __wsum csum_add(__wsum csum, __wsum addend)
{
u32 res = (__force u32)csum;
res += (__force u32)addend;
@@ -62,12 +62,12 @@ static inline __wsum csum_add(__wsum csu
}
#endif
-static inline __wsum csum_sub(__wsum csum, __wsum addend)
+static __always_inline __wsum csum_sub(__wsum csum, __wsum addend)
{
return csum_add(csum, ~addend);
}
-static inline __sum16 csum16_add(__sum16 csum, __be16 addend)
+static __always_inline __sum16 csum16_add(__sum16 csum, __be16 addend)
{
u16 res = (__force u16)csum;
@@ -75,12 +75,12 @@ static inline __sum16 csum16_add(__sum16
return (__force __sum16)(res + (res < (__force u16)addend));
}
-static inline __sum16 csum16_sub(__sum16 csum, __be16 addend)
+static __always_inline __sum16 csum16_sub(__sum16 csum, __be16 addend)
{
return csum16_add(csum, ~addend);
}
-static inline __wsum csum_shift(__wsum sum, int offset)
+static __always_inline __wsum csum_shift(__wsum sum, int offset)
{
/* rotate sum to align it with a 16b boundary */
if (offset & 1)
@@ -88,42 +88,43 @@ static inline __wsum csum_shift(__wsum s
return sum;
}
-static inline __wsum
+static __always_inline __wsum
csum_block_add(__wsum csum, __wsum csum2, int offset)
{
return csum_add(csum, csum_shift(csum2, offset));
}
-static inline __wsum
+static __always_inline __wsum
csum_block_add_ext(__wsum csum, __wsum csum2, int offset, int len)
{
return csum_block_add(csum, csum2, offset);
}
-static inline __wsum
+static __always_inline __wsum
csum_block_sub(__wsum csum, __wsum csum2, int offset)
{
return csum_block_add(csum, ~csum2, offset);
}
-static inline __wsum csum_unfold(__sum16 n)
+static __always_inline __wsum csum_unfold(__sum16 n)
{
return (__force __wsum)n;
}
-static inline __wsum csum_partial_ext(const void *buff, int len, __wsum sum)
+static __always_inline
+__wsum csum_partial_ext(const void *buff, int len, __wsum sum)
{
return csum_partial(buff, len, sum);
}
#define CSUM_MANGLED_0 ((__force __sum16)0xffff)
-static inline void csum_replace_by_diff(__sum16 *sum, __wsum diff)
+static __always_inline void csum_replace_by_diff(__sum16 *sum, __wsum diff)
{
*sum = csum_fold(csum_add(diff, ~csum_unfold(*sum)));
}
-static inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
+static __always_inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
{
__wsum tmp = csum_sub(~csum_unfold(*sum), (__force __wsum)from);
@@ -136,7 +137,7 @@ static inline void csum_replace4(__sum16
* m : old value of a 16bit field
* m' : new value of a 16bit field
*/
-static inline void csum_replace2(__sum16 *sum, __be16 old, __be16 new)
+static __always_inline void csum_replace2(__sum16 *sum, __be16 old, __be16 new)
{
*sum = ~csum16_add(csum16_sub(~(*sum), old), new);
}
@@ -155,16 +156,16 @@ void inet_proto_csum_replace16(__sum16 *
void inet_proto_csum_replace_by_diff(__sum16 *sum, struct sk_buff *skb,
__wsum diff, bool pseudohdr);
-static inline void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
- __be16 from, __be16 to,
- bool pseudohdr)
+static __always_inline
+void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
+ __be16 from, __be16 to, bool pseudohdr)
{
inet_proto_csum_replace4(sum, skb, (__force __be32)from,
(__force __be32)to, pseudohdr);
}
-static inline __wsum remcsum_adjust(void *ptr, __wsum csum,
- int start, int offset)
+static __always_inline __wsum remcsum_adjust(void *ptr, __wsum csum,
+ int start, int offset)
{
__sum16 *psum = (__sum16 *)(ptr + offset);
__wsum delta;
@@ -180,7 +181,7 @@ static inline __wsum remcsum_adjust(void
return delta;
}
-static inline void remcsum_unadjust(__sum16 *psum, __wsum delta)
+static __always_inline void remcsum_unadjust(__sum16 *psum, __wsum delta)
{
*psum = csum_fold(csum_sub(delta, (__force __wsum)*psum));
}
next prev parent reply other threads:[~2022-02-28 17:50 UTC|newest]
Thread overview: 151+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-28 17:22 [PATCH 5.15 000/139] 5.15.26-rc1 review Greg Kroah-Hartman
2022-02-28 17:22 ` [PATCH 5.15 001/139] mm/filemap: Fix handling of THPs in generic_file_buffered_read() Greg Kroah-Hartman
2022-02-28 17:22 ` [PATCH 5.15 002/139] cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug Greg Kroah-Hartman
2022-02-28 17:22 ` [PATCH 5.15 003/139] cgroup-v1: Correct privileges check in release_agent writes Greg Kroah-Hartman
2022-02-28 17:22 ` [PATCH 5.15 004/139] x86/ptrace: Fix xfpregs_set()s incorrect xmm clearing Greg Kroah-Hartman
2022-02-28 17:22 ` [PATCH 5.15 005/139] btrfs: tree-checker: check item_size for inode_item Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 006/139] btrfs: tree-checker: check item_size for dev_item Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 007/139] clk: jz4725b: fix mmc0 clock gating Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 008/139] io_uring: dont convert to jiffies for waiting on timeouts Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 009/139] io_uring: disallow modification of rsrc_data during quiesce Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 010/139] selinux: fix misuse of mutex_is_locked() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 011/139] vhost/vsock: dont check owner in vhost_vsock_stop() while releasing Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 012/139] parisc/unaligned: Fix fldd and fstd unaligned handlers on 32-bit kernel Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 013/139] parisc/unaligned: Fix ldw() and stw() unalignment handlers Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 014/139] KVM: x86/mmu: make apf token non-zero to fix bug Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 015/139] drm/amd/display: Protect update_bw_bounding_box FPU code Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 016/139] drm/amd/pm: fix some OEM SKU specific stability issues Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 017/139] drm/amd: Check if ASPM is enabled from PCIe subsystem Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 018/139] drm/amdgpu: disable MMHUB PG for Picasso Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 019/139] drm/amdgpu: do not enable asic reset for raven2 Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 020/139] drm/amdgpu: check vm ready by amdgpu_vm->evicting flag Greg Kroah-Hartman
2022-02-28 18:23 ` Deucher, Alexander
2022-02-28 17:23 ` [PATCH 5.15 021/139] drm/i915: Widen the QGV point mask Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 022/139] drm/i915: Correctly populate use_sagv_wm for all pipes Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 023/139] drm/i915: Fix bw atomic check when switching between SAGV vs. no SAGV Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 024/139] sr9700: sanity check for packet length Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 025/139] USB: zaurus: support another broken Zaurus Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 026/139] CDC-NCM: avoid overflow in sanity checking Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 027/139] netfilter: xt_socket: fix a typo in socket_mt_destroy() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 028/139] netfilter: xt_socket: missing ifdef CONFIG_IP6_NF_IPTABLES dependency Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 029/139] netfilter: nf_tables_offload: incorrect flow offload action array size Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 030/139] tee: export teedev_open() and teedev_close_context() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 031/139] optee: use driver internal tee_context for some rpc Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 032/139] ping: remove pr_err from ping_lookup Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 033/139] Revert "i40e: Fix reset bw limit when DCB enabled with 1 TC" Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 034/139] gpu: host1x: Always return syncpoint value when waiting Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 035/139] perf evlist: Fix failed to use cpu list for uncore events Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 036/139] perf data: Fix double free in perf_session__delete() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 037/139] mptcp: fix race in incoming ADD_ADDR option processing Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 038/139] mptcp: add mibs counter for ignored incoming options Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 039/139] selftests: mptcp: fix diag instability Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 040/139] selftests: mptcp: be more conservative with cookie MPJ limits Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 041/139] bnx2x: fix driver load from initrd Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 042/139] bnxt_en: Fix active FEC reporting to ethtool Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 043/139] bnxt_en: Fix offline ethtool selftest with RDMA enabled Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 044/139] bnxt_en: Fix incorrect multicast rx mask setting when not requested Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 045/139] hwmon: Handle failure to register sensor with thermal zone correctly Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 046/139] net/mlx5: Fix tc max supported prio for nic mode Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 047/139] ice: check the return of ice_ptp_gettimex64 Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 048/139] ice: initialize local variable tlv Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 049/139] net/mlx5: Update the list of the PCI supported devices Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 050/139] bpf: Fix crash due to incorrect copy_map_value Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 051/139] bpf: Do not try bpf_msg_push_data with len 0 Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 052/139] selftests: bpf: Check bpf_msg_push_data return value Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 053/139] bpf: Fix a bpf_timer initialization issue Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 054/139] bpf: Add schedule points in batch ops Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 055/139] io_uring: add a schedule point in io_add_buffers() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 056/139] net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 057/139] nvme: also mark passthrough-only namespaces ready in nvme_update_ns_info Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 058/139] tipc: Fix end of loop tests for list_for_each_entry() Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 059/139] gso: do not skip outer ip header in case of ipip and net_failover Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 060/139] net: mv643xx_eth: process retval from of_get_mac_address Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 061/139] openvswitch: Fix setting ipv6 fields causing hw csum failure Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 062/139] drm/edid: Always set RGB444 Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 063/139] net/mlx5e: Fix wrong return value on ioctl EEPROM query failure Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 064/139] drm/vc4: crtc: Fix runtime_pm reference counting Greg Kroah-Hartman
2022-02-28 17:23 ` [PATCH 5.15 065/139] drm/i915/dg2: Print PHY name properly on calibration error Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 066/139] net/sched: act_ct: Fix flow table lookup after ct clear or switching zones Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 067/139] net: ll_temac: check the return value of devm_kmalloc() Greg Kroah-Hartman
2022-02-28 17:24 ` Greg Kroah-Hartman [this message]
2022-02-28 17:24 ` [PATCH 5.15 069/139] netfilter: nf_tables: unregister flowtable hooks on netns exit Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 070/139] nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 071/139] net: mdio-ipq4019: add delay after clock enable Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 072/139] netfilter: nf_tables: fix memory leak during stateful obj update Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 073/139] net/smc: Use a mutex for locking "struct smc_pnettable" Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 074/139] surface: surface3_power: Fix battery readings on batteries without a serial number Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 075/139] udp_tunnel: Fix end of loop test in udp_tunnel_nic_unregister() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 076/139] net/mlx5: DR, Cache STE shadow memory Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 077/139] ibmvnic: schedule failover only if vioctl fails Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 078/139] net/mlx5: DR, Dont allow match on IP w/o matching on full ethertype/ip_version Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 079/139] net/mlx5: Fix possible deadlock on rule deletion Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 080/139] net/mlx5: Fix wrong limitation of metadata match on ecpf Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 081/139] net/mlx5: DR, Fix the threshold that defines when pool sync is initiated Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 082/139] net/mlx5e: MPLSoUDP decap, fix check for unsupported matches Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 083/139] net/mlx5e: kTLS, Use CHECKSUM_UNNECESSARY for device-offloaded packets Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 084/139] net/mlx5: Update log_max_qp value to be 17 at most Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 085/139] spi: spi-zynq-qspi: Fix a NULL pointer dereference in zynq_qspi_exec_mem_op() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 086/139] gpio: rockchip: Reset int_bothedge when changing trigger Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 087/139] regmap-irq: Update interrupt clear register for proper reset Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 088/139] net-timestamp: convert sk->sk_tskey to atomic_t Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 089/139] RDMA/rtrs-clt: Fix possible double free in error case Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 090/139] RDMA/rtrs-clt: Move free_permit from free_clt to rtrs_clt_close Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 091/139] bnxt_en: Increase firmware message response DMA wait time Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 092/139] configfs: fix a race in configfs_{,un}register_subsystem() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 093/139] RDMA/ib_srp: Fix a deadlock Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 094/139] tracing: Dump stacktrace trigger to the corresponding instance Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 095/139] tracing: Have traceon and traceoff trigger honor the instance Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 096/139] iio:imu:adis16480: fix buffering for devices with no burst mode Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 097/139] iio: adc: men_z188_adc: Fix a resource leak in an error handling path Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 098/139] iio: adc: tsc2046: fix memory corruption by preventing array overflow Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 099/139] iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 100/139] iio: accel: fxls8962af: add padding to regmap for SPI Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 101/139] iio: imu: st_lsm6dsx: wait for settling time in st_lsm6dsx_read_oneshot Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 102/139] iio: Fix error handling for PM Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 103/139] sc16is7xx: Fix for incorrect data being transmitted Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 104/139] ata: pata_hpt37x: disable primary channel on HPT371 Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 105/139] Revert "USB: serial: ch341: add new Product ID for CH341A" Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 106/139] usb: gadget: rndis: add spinlock for rndis response list Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 107/139] USB: gadget: validate endpoint index for xilinx udc Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 108/139] tracefs: Set the group ownership in apply_options() not parse_options() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 109/139] USB: serial: option: add support for DW5829e Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 110/139] USB: serial: option: add Telit LE910R1 compositions Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 111/139] usb: dwc2: drd: fix soft connect when gadget is unconfigured Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 112/139] usb: dwc3: pci: Add "snps,dis_u2_susphy_quirk" for Intel Bay Trail Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 113/139] usb: dwc3: pci: Fix Bay Trail phy GPIO mappings Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 114/139] usb: dwc3: gadget: Let the interrupt handler disable bottom halves Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 115/139] xhci: re-initialize the HC during resume if HCE was set Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 116/139] xhci: Prevent futile URB re-submissions due to incorrect return value Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 117/139] nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 118/139] mtd: " Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 119/139] driver core: Free DMA range map when device is released Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 120/139] btrfs: prevent copying too big compressed lzo segment Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 121/139] RDMA/cma: Do not change route.addr.src_addr outside state checks Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 122/139] thermal: int340x: fix memory leak in int3400_notify() Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 123/139] staging: fbtft: fb_st7789v: reset display before initialization Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 124/139] tps6598x: clear int mask on probe failure Greg Kroah-Hartman
2022-02-28 17:24 ` [PATCH 5.15 125/139] IB/qib: Fix duplicate sysfs directory name Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 126/139] riscv: fix nommu_k210_sdcard_defconfig Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 127/139] riscv: fix oops caused by irqsoff latency tracer Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 128/139] tty: n_gsm: fix encoding of control signal octet bit DV Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 129/139] tty: n_gsm: fix proper link termination after failed open Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 130/139] tty: n_gsm: fix NULL pointer access due to DLCI release Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 131/139] tty: n_gsm: fix wrong tty control line for flow control Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 132/139] tty: n_gsm: fix wrong modem processing in convergence layer type 2 Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 133/139] tty: n_gsm: fix deadlock in gsmtty_open() Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 134/139] pinctrl: fix loop in k210_pinconf_get_drive() Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 135/139] pinctrl: k210: Fix bias-pull-up Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 136/139] gpio: tegra186: Fix chip_data type confusion Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 137/139] memblock: use kfree() to release kmalloced memblock regions Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 138/139] ice: Fix race conditions between virtchnl handling and VF ndo ops Greg Kroah-Hartman
2022-02-28 17:25 ` [PATCH 5.15 139/139] ice: fix concurrent reset and removal of VFs Greg Kroah-Hartman
2022-02-28 21:38 ` [PATCH 5.15 000/139] 5.15.26-rc1 review Shuah Khan
2022-03-01 3:17 ` Florian Fainelli
2022-03-01 7:38 ` Ron Economos
2022-03-01 7:44 ` Naresh Kamboju
2022-03-01 9:13 ` Jon Hunter
2022-03-01 9:39 ` Bagas Sanjaya
2022-03-01 11:38 ` Sudip Mukherjee
2022-03-01 17:52 ` Allen Pais
2022-03-01 19:14 ` Guenter Roeck
2022-03-02 7:04 ` Slade Watkins
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=20220228172354.864490689@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=christophe.leroy@csgroup.eu \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=ndesaulniers@google.com \
--cc=stable@vger.kernel.org \
--cc=yamada.masahiro@socionext.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).