Unverified Commit e6047304 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!7959 v2 Add network relationship for NUMA isolation and consolidation

Merge Pull Request from: @ci-robot 
 
PR sync from: Liu Jian <liujian56@huawei.com>
https://mailweb.openeuler.org/hyperkitty/list/kernel@openeuler.org/message/2NQ24GEY3OJNPK4K3YZFHUUEU4DDLV62/ 
Add network relationship for NUMA isolation and consolidation

Eric Dumazet (1):
  net: initialize net->net_cookie at netns setup

Liu Jian (4):
  net: fix kabi breakage in struct net
  net: add one bpf prog type for network numa relationship
  net: add some bpf hooks in tcp stack for network numa relationship
  config: Add new config entry to default config file to fix CI warning

Martynas Pumputis (1):
  net: retrieve netns cookie via getsocketopt


-- 
2.34.1
 
https://gitee.com/openeuler/kernel/issues/I9GZAQ 
 
Link:https://gitee.com/openeuler/kernel/pulls/7959

 

Reviewed-by: default avatarYue Haibing <yuehaibing@huawei.com>
Signed-off-by: default avatarJialin Zhang <zhangjialin11@huawei.com>
parents b08db2d4 ea311805
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -124,6 +124,8 @@

#define SO_DETACH_REUSEPORT_BPF 68

#define SO_NETNS_COOKIE		71

#if !defined(__KERNEL__)

#if __BITS_PER_LONG == 64
+2 −0
Original line number Diff line number Diff line
@@ -135,6 +135,8 @@

#define SO_DETACH_REUSEPORT_BPF 68

#define SO_NETNS_COOKIE		71

#if !defined(__KERNEL__)

#if __BITS_PER_LONG == 64
+2 −0
Original line number Diff line number Diff line
@@ -116,6 +116,8 @@

#define SO_DETACH_REUSEPORT_BPF 0x4042

#define SO_NETNS_COOKIE		0x4045

#if !defined(__KERNEL__)

#if __BITS_PER_LONG == 64
+2 −0
Original line number Diff line number Diff line
@@ -117,6 +117,8 @@

#define SO_DETACH_REUSEPORT_BPF  0x0047

#define SO_NETNS_COOKIE          0x0050

#if !defined(__KERNEL__)


+1 −0
Original line number Diff line number Diff line
@@ -1927,6 +1927,7 @@ CONFIG_PAGE_POOL=y
# CONFIG_PAGE_POOL_STATS is not set
CONFIG_FAILOVER=m
CONFIG_ETHTOOL_NETLINK=y
# CONFIG_BPF_NET_GLOBAL_PROG is not set
CONFIG_HAVE_EBPF_JIT=y

#
Loading