diff options
author | Florian Westphal <fw@strlen.de> | 2021-02-13 02:59:59 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-02-13 03:31:46 +0300 |
commit | 4d54cc32112d8d8b0667559c9309f1a6f764f70b (patch) | |
tree | 05ec63a09dc8ed396f0ff2694a4d25fd752beba5 /include/net/genetlink.h | |
parent | 6c714f1b547feb0402520357c91024375a4236f7 (diff) | |
download | linux-4d54cc32112d8d8b0667559c9309f1a6f764f70b.tar.xz |
mptcp: avoid lock_fast usage in accept path
Once event support is added this may need to allocate memory while msk
lock is held with softirqs disabled.
Not using lock_fast also allows to do the allocation with GFP_KERNEL.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/genetlink.h')
-rw-r--r-- | include/net/genetlink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h index e55ec1597ce7..7cb3fa8310ed 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -14,6 +14,7 @@ */ struct genl_multicast_group { char name[GENL_NAMSIZ]; + u8 flags; }; struct genl_ops; |