All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
@ 2023-07-18  8:00 Hangbin Liu
  2023-07-18 10:19 ` Ido Schimmel
  2023-07-25 14:13 ` kernel test robot
  0 siblings, 2 replies; 45+ messages in thread
From: Hangbin Liu @ 2023-07-18  8:00 UTC (permalink / raw)
  To: netdev
  Cc: David S . Miller, David Ahern, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Hangbin Liu, Thomas Haller

After deleting an interface address in fib_del_ifaddr(), the function
scans the fib_info list for stray entries and calls fib_flush.
Then the stray entries will be deleted silently and no RTM_DELROUTE
notification will be sent.

This lack of notification can make routing daemons like NetworkManager,
miss the routing changes. e.g.

+ ip link add dummy1 type dummy
+ ip link add dummy2 type dummy
+ ip link set dummy1 up
+ ip link set dummy2 up
+ ip addr add 192.168.5.5/24 dev dummy1
+ ip route add 7.7.7.0/24 dev dummy2 src 192.168.5.5
+ ip -4 route
7.7.7.0/24 dev dummy2 scope link src 192.168.5.5
192.168.5.0/24 dev dummy1 proto kernel scope link src 192.168.5.5
+ ip monitor route
+ ip addr del 192.168.5.5/24 dev dummy1
Deleted 192.168.5.0/24 dev dummy1 proto kernel scope link src 192.168.5.5
Deleted broadcast 192.168.5.255 dev dummy1 table local proto kernel scope link src 192.168.5.5
Deleted local 192.168.5.5 dev dummy1 table local proto kernel scope host src 192.168.5.5

After update:
+ ip monitor route
+ ip addr del 192.168.5.5/24 dev dummy1
Deleted 192.168.5.0/24 dev dummy1 proto kernel scope link src 192.168.5.5
Deleted broadcast 192.168.5.255 dev dummy1 table local proto kernel scope link src 192.168.5.5
Deleted local 192.168.5.5 dev dummy1 table local proto kernel scope host src 192.168.5.5
Deleted 7.7.7.0/24 dev dummy2 scope link src 192.168.5.5

Suggested-by: Thomas Haller <thaller@redhat.com>
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
 net/ipv4/fib_trie.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
index 74d403dbd2b4..1a88013f6a5b 100644
--- a/net/ipv4/fib_trie.c
+++ b/net/ipv4/fib_trie.c
@@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
 int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
 {
 	struct trie *t = (struct trie *)tb->tb_data;
+	struct nl_info info = { .nl_net = net };
 	struct key_vector *pn = t->kv;
 	unsigned long cindex = 1;
 	struct hlist_node *tmp;
@@ -2088,6 +2089,8 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
 
 			fib_notify_alias_delete(net, n->key, &n->leaf, fa,
 						NULL);
+			rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
+				  KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
 			hlist_del_rcu(&fa->fa_list);
 			fib_release_info(fa->fa_info);
 			alias_free_mem_rcu(fa);
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18  8:00 [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Hangbin Liu
@ 2023-07-18 10:19 ` Ido Schimmel
  2023-07-18 10:32   ` Ido Schimmel
  2023-07-18 15:58   ` Stephen Hemminger
  2023-07-25 14:13 ` kernel test robot
  1 sibling, 2 replies; 45+ messages in thread
From: Ido Schimmel @ 2023-07-18 10:19 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: netdev, David S . Miller, David Ahern, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On Tue, Jul 18, 2023 at 04:00:44PM +0800, Hangbin Liu wrote:
> After deleting an interface address in fib_del_ifaddr(), the function
> scans the fib_info list for stray entries and calls fib_flush.
> Then the stray entries will be deleted silently and no RTM_DELROUTE
> notification will be sent.

[...]

> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> index 74d403dbd2b4..1a88013f6a5b 100644
> --- a/net/ipv4/fib_trie.c
> +++ b/net/ipv4/fib_trie.c
> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>  {
>  	struct trie *t = (struct trie *)tb->tb_data;
> +	struct nl_info info = { .nl_net = net };
>  	struct key_vector *pn = t->kv;
>  	unsigned long cindex = 1;
>  	struct hlist_node *tmp;
> @@ -2088,6 +2089,8 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>  
>  			fib_notify_alias_delete(net, n->key, &n->leaf, fa,
>  						NULL);
> +			rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> +				  KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);

fib_table_flush() isn't only called when an address is deleted, but also
when an interface is deleted or put down. The lack of notification in
these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
skip DELROUTE message on device down") introduced a sysctl to make IPv6
behave like IPv4 in this regard, but this patch breaks it.

IMO, the number of routes being flushed because a preferred source
address is deleted is significantly lower compared to interface down /
deletion, so generating notifications in this case is probably OK. It
also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
calls fib6_clean_all() and not fib6_clean_all_skip_notify().

>  			hlist_del_rcu(&fa->fa_list);
>  			fib_release_info(fa->fa_info);
>  			alias_free_mem_rcu(fa);
> -- 
> 2.38.1
> 
> 

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18 10:19 ` Ido Schimmel
@ 2023-07-18 10:32   ` Ido Schimmel
  2023-07-18 14:45     ` David Ahern
  2023-07-18 15:58   ` Stephen Hemminger
  1 sibling, 1 reply; 45+ messages in thread
From: Ido Schimmel @ 2023-07-18 10:32 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: netdev, David S . Miller, David Ahern, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On Tue, Jul 18, 2023 at 01:19:13PM +0300, Ido Schimmel wrote:
> On Tue, Jul 18, 2023 at 04:00:44PM +0800, Hangbin Liu wrote:
> > After deleting an interface address in fib_del_ifaddr(), the function
> > scans the fib_info list for stray entries and calls fib_flush.
> > Then the stray entries will be deleted silently and no RTM_DELROUTE
> > notification will be sent.
> 
> [...]
> 
> > diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> > index 74d403dbd2b4..1a88013f6a5b 100644
> > --- a/net/ipv4/fib_trie.c
> > +++ b/net/ipv4/fib_trie.c
> > @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
> >  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> >  {
> >  	struct trie *t = (struct trie *)tb->tb_data;
> > +	struct nl_info info = { .nl_net = net };
> >  	struct key_vector *pn = t->kv;
> >  	unsigned long cindex = 1;
> >  	struct hlist_node *tmp;
> > @@ -2088,6 +2089,8 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> >  
> >  			fib_notify_alias_delete(net, n->key, &n->leaf, fa,
> >  						NULL);
> > +			rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> > +				  KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> 
> fib_table_flush() isn't only called when an address is deleted, but also
> when an interface is deleted or put down. The lack of notification in
> these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
> skip DELROUTE message on device down") introduced a sysctl to make IPv6
> behave like IPv4 in this regard, but this patch breaks it.
> 
> IMO, the number of routes being flushed because a preferred source
> address is deleted is significantly lower compared to interface down /
> deletion, so generating notifications in this case is probably OK. It
> also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
> calls fib6_clean_all() and not fib6_clean_all_skip_notify().

Actually, looking closer at IPv6, it seems that routes are not deleted,
but instead the preferred source address is simply removed from them
(w/o a notification).

Anyway, my point is that a RTM_DELROUTE notification should not be
emitted for routes that are deleted because of interface down /
deletion.

> 
> >  			hlist_del_rcu(&fa->fa_list);
> >  			fib_release_info(fa->fa_info);
> >  			alias_free_mem_rcu(fa);
> > -- 
> > 2.38.1
> > 
> > 

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18 10:32   ` Ido Schimmel
@ 2023-07-18 14:45     ` David Ahern
  0 siblings, 0 replies; 45+ messages in thread
From: David Ahern @ 2023-07-18 14:45 UTC (permalink / raw)
  To: Ido Schimmel, Hangbin Liu
  Cc: netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Thomas Haller

On 7/18/23 4:32 AM, Ido Schimmel wrote:
>>> @@ -2088,6 +2089,8 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>>>  
>>>  			fib_notify_alias_delete(net, n->key, &n->leaf, fa,
>>>  						NULL);
>>> +			rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
>>> +				  KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
>>
>> fib_table_flush() isn't only called when an address is deleted, but also
>> when an interface is deleted or put down. The lack of notification in
>> these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
>> skip DELROUTE message on device down") introduced a sysctl to make IPv6
>> behave like IPv4 in this regard, but this patch breaks it.
>>
>> IMO, the number of routes being flushed because a preferred source
>> address is deleted is significantly lower compared to interface down /
>> deletion, so generating notifications in this case is probably OK. It
>> also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
>> calls fib6_clean_all() and not fib6_clean_all_skip_notify().
> 
> Actually, looking closer at IPv6, it seems that routes are not deleted,
> but instead the preferred source address is simply removed from them
> (w/o a notification).
> 
> Anyway, my point is that a RTM_DELROUTE notification should not be
> emitted for routes that are deleted because of interface down /
> deletion.
> 

exactly.


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18 10:19 ` Ido Schimmel
  2023-07-18 10:32   ` Ido Schimmel
@ 2023-07-18 15:58   ` Stephen Hemminger
  2023-07-20  7:51     ` Hangbin Liu
  1 sibling, 1 reply; 45+ messages in thread
From: Stephen Hemminger @ 2023-07-18 15:58 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: Hangbin Liu, netdev, David S . Miller, David Ahern, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On Tue, 18 Jul 2023 13:19:06 +0300
Ido Schimmel <idosch@idosch.org> wrote:

> fib_table_flush() isn't only called when an address is deleted, but also
> when an interface is deleted or put down. The lack of notification in
> these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
> skip DELROUTE message on device down") introduced a sysctl to make IPv6
> behave like IPv4 in this regard, but this patch breaks it.
> 
> IMO, the number of routes being flushed because a preferred source
> address is deleted is significantly lower compared to interface down /
> deletion, so generating notifications in this case is probably OK. It
> also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
> calls fib6_clean_all() and not fib6_clean_all_skip_notify().

Agree. Imagine the case of 3 million routes and device goes down.
There is a reason IPv4 behaves the way it does.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18 15:58   ` Stephen Hemminger
@ 2023-07-20  7:51     ` Hangbin Liu
  2023-07-20 14:29       ` Ido Schimmel
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-20  7:51 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: Stephen Hemminger, netdev, David S . Miller, David Ahern,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Tue, Jul 18, 2023 at 08:58:14AM -0700, Stephen Hemminger wrote:
> On Tue, 18 Jul 2023 13:19:06 +0300
> Ido Schimmel <idosch@idosch.org> wrote:
> 
> > fib_table_flush() isn't only called when an address is deleted, but also
> > when an interface is deleted or put down. The lack of notification in
> > these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
> > skip DELROUTE message on device down") introduced a sysctl to make IPv6
> > behave like IPv4 in this regard, but this patch breaks it.
> > 
> > IMO, the number of routes being flushed because a preferred source
> > address is deleted is significantly lower compared to interface down /
> > deletion, so generating notifications in this case is probably OK. It

How about ignore route deletion for link down? e.g.

diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
index 74d403dbd2b4..11c0f325e887 100644
--- a/net/ipv4/fib_trie.c
+++ b/net/ipv4/fib_trie.c
@@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
 int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
 {
        struct trie *t = (struct trie *)tb->tb_data;
+       struct nl_info info = { .nl_net = net };
        struct key_vector *pn = t->kv;
        unsigned long cindex = 1;
        struct hlist_node *tmp;
@@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)

                        fib_notify_alias_delete(net, n->key, &n->leaf, fa,
                                                NULL);
+                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
+                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
+                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
+                       }
                        hlist_del_rcu(&fa->fa_list);
                        fib_release_info(fa->fa_info);
                        alias_free_mem_rcu(fa);

> > also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
> > calls fib6_clean_all() and not fib6_clean_all_skip_notify().
> 
> Agree. Imagine the case of 3 million routes and device goes down.
> There is a reason IPv4 behaves the way it does.

^ permalink raw reply related	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-20  7:51     ` Hangbin Liu
@ 2023-07-20 14:29       ` Ido Schimmel
  2023-07-21  1:34         ` Hangbin Liu
  0 siblings, 1 reply; 45+ messages in thread
From: Ido Schimmel @ 2023-07-20 14:29 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Stephen Hemminger, netdev, David S . Miller, David Ahern,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Thu, Jul 20, 2023 at 03:51:13PM +0800, Hangbin Liu wrote:
> On Tue, Jul 18, 2023 at 08:58:14AM -0700, Stephen Hemminger wrote:
> > On Tue, 18 Jul 2023 13:19:06 +0300
> > Ido Schimmel <idosch@idosch.org> wrote:
> > 
> > > fib_table_flush() isn't only called when an address is deleted, but also
> > > when an interface is deleted or put down. The lack of notification in
> > > these cases is deliberate. Commit 7c6bb7d2faaf ("net/ipv6: Add knob to
> > > skip DELROUTE message on device down") introduced a sysctl to make IPv6
> > > behave like IPv4 in this regard, but this patch breaks it.
> > > 
> > > IMO, the number of routes being flushed because a preferred source
> > > address is deleted is significantly lower compared to interface down /
> > > deletion, so generating notifications in this case is probably OK. It
> 
> How about ignore route deletion for link down? e.g.
> 
> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> index 74d403dbd2b4..11c0f325e887 100644
> --- a/net/ipv4/fib_trie.c
> +++ b/net/ipv4/fib_trie.c
> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>  {
>         struct trie *t = (struct trie *)tb->tb_data;
> +       struct nl_info info = { .nl_net = net };
>         struct key_vector *pn = t->kv;
>         unsigned long cindex = 1;
>         struct hlist_node *tmp;
> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> 
>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
>                                                 NULL);
> +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> +                       }

Will you get a notification in this case for 198.51.100.0/24?

# ip link add name dummy1 up type dummy
# ip link add name dummy2 up type dummy
# ip address add 192.0.2.1/24 dev dummy1
# ip route add 198.51.100.0/24 dev dummy2 src 192.0.2.1
# ip link set dev dummy2 carrier off
# ip -4 r s
192.0.2.0/24 dev dummy1 proto kernel scope link src 192.0.2.1 
198.51.100.0/24 dev dummy2 scope link src 192.0.2.1 linkdown 
# ip address del 192.0.2.1/24 dev dummy1
# ip -4 r s

>                         hlist_del_rcu(&fa->fa_list);
>                         fib_release_info(fa->fa_info);
>                         alias_free_mem_rcu(fa);
> 
> > > also seems to be consistent with IPv6 given that rt6_remove_prefsrc()
> > > calls fib6_clean_all() and not fib6_clean_all_skip_notify().
> > 
> > Agree. Imagine the case of 3 million routes and device goes down.
> > There is a reason IPv4 behaves the way it does.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-20 14:29       ` Ido Schimmel
@ 2023-07-21  1:34         ` Hangbin Liu
  2023-07-21  4:01           ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-21  1:34 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: Stephen Hemminger, netdev, David S . Miller, David Ahern,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Thu, Jul 20, 2023 at 05:29:58PM +0300, Ido Schimmel wrote:
> > > > IMO, the number of routes being flushed because a preferred source
> > > > address is deleted is significantly lower compared to interface down /
> > > > deletion, so generating notifications in this case is probably OK. It
> > 
> > How about ignore route deletion for link down? e.g.
> > 
> > diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> > index 74d403dbd2b4..11c0f325e887 100644
> > --- a/net/ipv4/fib_trie.c
> > +++ b/net/ipv4/fib_trie.c
> > @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
> >  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> >  {
> >         struct trie *t = (struct trie *)tb->tb_data;
> > +       struct nl_info info = { .nl_net = net };
> >         struct key_vector *pn = t->kv;
> >         unsigned long cindex = 1;
> >         struct hlist_node *tmp;
> > @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> > 
> >                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
> >                                                 NULL);
> > +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
> > +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> > +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> > +                       }
> 
> Will you get a notification in this case for 198.51.100.0/24?

No. Do you think it is expected with this patch or not?
> 
> # ip link add name dummy1 up type dummy
> # ip link add name dummy2 up type dummy
> # ip address add 192.0.2.1/24 dev dummy1
> # ip route add 198.51.100.0/24 dev dummy2 src 192.0.2.1
> # ip link set dev dummy2 carrier off
> # ip -4 r s
> 192.0.2.0/24 dev dummy1 proto kernel scope link src 192.0.2.1 
> 198.51.100.0/24 dev dummy2 scope link src 192.0.2.1 linkdown 
> # ip address del 192.0.2.1/24 dev dummy1
> # ip -4 r s

+ ip link set dev dummy2 carrier off
+ sleep 1
+ ip -4 r s
default via 10.73.131.254 dev eth0 proto dhcp src 10.73.131.181 metric 100
10.73.130.0/23 dev eth0 proto kernel scope link src 10.73.131.181 metric 100
192.0.2.0/24 dev dummy1 proto kernel scope link src 192.0.2.1
198.51.100.0/24 dev dummy2 scope link src 192.0.2.1 linkdown
+ sleep 1
+ ip address del 192.0.2.1/24 dev dummy1
Deleted 192.0.2.0/24 dev dummy1 proto kernel scope link src 192.0.2.1
Deleted broadcast 192.0.2.255 dev dummy1 table local proto kernel scope link src 192.0.2.1
Deleted local 192.0.2.1 dev dummy1 table local proto kernel scope host src 192.0.2.1
+ sleep 1
+ ip -4 r s
default via 10.73.131.254 dev eth0 proto dhcp src 10.73.131.181 metric 100
10.73.130.0/23 dev eth0 proto kernel scope link src 10.73.131.181 metric 100

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-21  1:34         ` Hangbin Liu
@ 2023-07-21  4:01           ` David Ahern
  2023-07-21  5:46             ` Hangbin Liu
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-07-21  4:01 UTC (permalink / raw)
  To: Hangbin Liu, Ido Schimmel
  Cc: Stephen Hemminger, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On 7/20/23 7:34 PM, Hangbin Liu wrote:
> On Thu, Jul 20, 2023 at 05:29:58PM +0300, Ido Schimmel wrote:
>>>>> IMO, the number of routes being flushed because a preferred source
>>>>> address is deleted is significantly lower compared to interface down /
>>>>> deletion, so generating notifications in this case is probably OK. It
>>>
>>> How about ignore route deletion for link down? e.g.
>>>
>>> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
>>> index 74d403dbd2b4..11c0f325e887 100644
>>> --- a/net/ipv4/fib_trie.c
>>> +++ b/net/ipv4/fib_trie.c
>>> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
>>>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>>>  {
>>>         struct trie *t = (struct trie *)tb->tb_data;
>>> +       struct nl_info info = { .nl_net = net };
>>>         struct key_vector *pn = t->kv;
>>>         unsigned long cindex = 1;
>>>         struct hlist_node *tmp;
>>> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>>>
>>>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
>>>                                                 NULL);
>>> +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
>>> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
>>> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
>>> +                       }
>>
>> Will you get a notification in this case for 198.51.100.0/24?
> 
> No. Do you think it is expected with this patch or not?

The intent is that notifications are sent for link events but not route
events which are easily deduced from the link events.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-21  4:01           ` David Ahern
@ 2023-07-21  5:46             ` Hangbin Liu
  2023-07-23  7:38               ` Ido Schimmel
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-21  5:46 UTC (permalink / raw)
  To: David Ahern
  Cc: Ido Schimmel, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Thu, Jul 20, 2023 at 10:01:06PM -0600, David Ahern wrote:
> >>> How about ignore route deletion for link down? e.g.
> >>>
> >>> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> >>> index 74d403dbd2b4..11c0f325e887 100644
> >>> --- a/net/ipv4/fib_trie.c
> >>> +++ b/net/ipv4/fib_trie.c
> >>> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
> >>>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> >>>  {
> >>>         struct trie *t = (struct trie *)tb->tb_data;
> >>> +       struct nl_info info = { .nl_net = net };
> >>>         struct key_vector *pn = t->kv;
> >>>         unsigned long cindex = 1;
> >>>         struct hlist_node *tmp;
> >>> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> >>>
> >>>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
> >>>                                                 NULL);
> >>> +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
> >>> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> >>> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> >>> +                       }
> >>
> >> Will you get a notification in this case for 198.51.100.0/24?
> > 
> > No. Do you think it is expected with this patch or not?
> 
> The intent is that notifications are sent for link events but not route
> events which are easily deduced from the link events.

Sorry, I didn't get what you mean. The link events should be notified to user
via rtmsg_ifinfo_event()? So I think here we ignore the route events caused by
link down looks reasonable.

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-21  5:46             ` Hangbin Liu
@ 2023-07-23  7:38               ` Ido Schimmel
  2023-07-24  8:56                 ` Hangbin Liu
                                   ` (2 more replies)
  0 siblings, 3 replies; 45+ messages in thread
From: Ido Schimmel @ 2023-07-23  7:38 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Fri, Jul 21, 2023 at 01:46:13PM +0800, Hangbin Liu wrote:
> On Thu, Jul 20, 2023 at 10:01:06PM -0600, David Ahern wrote:
> > >>> How about ignore route deletion for link down? e.g.
> > >>>
> > >>> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> > >>> index 74d403dbd2b4..11c0f325e887 100644
> > >>> --- a/net/ipv4/fib_trie.c
> > >>> +++ b/net/ipv4/fib_trie.c
> > >>> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
> > >>>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> > >>>  {
> > >>>         struct trie *t = (struct trie *)tb->tb_data;
> > >>> +       struct nl_info info = { .nl_net = net };
> > >>>         struct key_vector *pn = t->kv;
> > >>>         unsigned long cindex = 1;
> > >>>         struct hlist_node *tmp;
> > >>> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> > >>>
> > >>>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
> > >>>                                                 NULL);
> > >>> +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
> > >>> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> > >>> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> > >>> +                       }
> > >>
> > >> Will you get a notification in this case for 198.51.100.0/24?
> > > 
> > > No. Do you think it is expected with this patch or not?
> > 
> > The intent is that notifications are sent for link events but not route
> > events which are easily deduced from the link events.
> 
> Sorry, I didn't get what you mean. The link events should be notified to user
> via rtmsg_ifinfo_event()? So I think here we ignore the route events caused by
> link down looks reasonable.

The route in the scenario I mentioned wasn't deleted because of a link
event, but because the source address was deleted yet no notification
was emitted. IMO, this is wrong given the description of the patch.

I assume NetworkManager already knows how to delete routes given
RTM_DELLINK events. Can't it be taught to react to RTM_DELADDR events as
well? Then this functionality will always work, regardless of the kernel
version being used.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-23  7:38               ` Ido Schimmel
@ 2023-07-24  8:56                 ` Hangbin Liu
  2023-07-24 15:48                   ` Stephen Hemminger
  2023-08-02  9:06                 ` [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Thomas Haller
  2023-08-04  8:09                 ` Hangbin Liu
  2 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-24  8:56 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Sun, Jul 23, 2023 at 10:38:11AM +0300, Ido Schimmel wrote:
> > > >>> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> > > >>>
> > > >>>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
> > > >>>                                                 NULL);
> > > >>> +                       if (!(fi->fib_flags & RTNH_F_LINKDOWN)) {
> > > >>> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> > > >>> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> > > >>> +                       }
> > > >>
> > > >> Will you get a notification in this case for 198.51.100.0/24?
> > > > 
> > > > No. Do you think it is expected with this patch or not?
> > > 
> > > The intent is that notifications are sent for link events but not route
> > > events which are easily deduced from the link events.
> > 
> > Sorry, I didn't get what you mean. The link events should be notified to user
> > via rtmsg_ifinfo_event()? So I think here we ignore the route events caused by
> > link down looks reasonable.
> 
> The route in the scenario I mentioned wasn't deleted because of a link
> event, but because the source address was deleted yet no notification
> was emitted. IMO, this is wrong given the description of the patch.

OK. I got what you mean now. Is there a way to get the device the route
bond in fib_table_flush() so we can also check the dev flag?

> 
> I assume NetworkManager already knows how to delete routes given
> RTM_DELLINK events. Can't it be taught to react to RTM_DELADDR events as
> well? Then this functionality will always work, regardless of the kernel
> version being used.

The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
the cache becomes inconsistent. The IPv4 will not send src route delete info
if it's bond to other device. While IPv6 only modify the src route instead of
delete it, and also no notify. So NetworkManager developers complained and
hope to have a consistent and clear notification about route modify/delete.

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-24  8:56                 ` Hangbin Liu
@ 2023-07-24 15:48                   ` Stephen Hemminger
  2023-07-25  8:20                     ` Hangbin Liu
  2023-07-26 10:17                     ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Hangbin Liu
  0 siblings, 2 replies; 45+ messages in thread
From: Stephen Hemminger @ 2023-07-24 15:48 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Ido Schimmel, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Mon, 24 Jul 2023 16:56:37 +0800
Hangbin Liu <liuhangbin@gmail.com> wrote:

> The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
> the cache becomes inconsistent. The IPv4 will not send src route delete info
> if it's bond to other device. While IPv6 only modify the src route instead of
> delete it, and also no notify. So NetworkManager developers complained and
> hope to have a consistent and clear notification about route modify/delete.

Read FRR they get it right. The routing daemons have to track kernel,
and the semantics have been worked out for years.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-24 15:48                   ` Stephen Hemminger
@ 2023-07-25  8:20                     ` Hangbin Liu
  2023-07-25 16:36                       ` Stephen Hemminger
  2023-07-26 10:17                     ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Hangbin Liu
  1 sibling, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-25  8:20 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: Ido Schimmel, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
> On Mon, 24 Jul 2023 16:56:37 +0800
> Hangbin Liu <liuhangbin@gmail.com> wrote:
> 
> > The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
> > the cache becomes inconsistent. The IPv4 will not send src route delete info
> > if it's bond to other device. While IPv6 only modify the src route instead of
> > delete it, and also no notify. So NetworkManager developers complained and
> > hope to have a consistent and clear notification about route modify/delete.
> 
> Read FRR they get it right. The routing daemons have to track kernel,
> and the semantics have been worked out for years.

Yes, normally the routing daemon need to track kernel. On the other hand,
the kernel also need to make a clear feedback. The userspace developers may
not know the kernel code very well. The unclear/inconsistent notification
would make them confused.

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-18  8:00 [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Hangbin Liu
  2023-07-18 10:19 ` Ido Schimmel
@ 2023-07-25 14:13 ` kernel test robot
  1 sibling, 0 replies; 45+ messages in thread
From: kernel test robot @ 2023-07-25 14:13 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: oe-lkp, lkp, Thomas Haller, netdev, David S . Miller,
	David Ahern, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Hangbin Liu, oliver.sang

[-- Attachment #1: Type: text/plain, Size: 3216 bytes --]



Hello,

kernel test robot noticed "kernel-selftests.net.fib_nexthops.sh.fail" on:

commit: 4c189e1954949695724236c7c1f182a39e67b262 ("[PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib")
url: https://github.com/intel-lab-lkp/linux/commits/Hangbin-Liu/ipv4-fib-send-RTM_DELROUTE-notify-when-flush-fib/20230718-195536
base: https://git.kernel.org/cgit/linux/kernel/git/davem/net-next.git d3750076d4641b697da990b6aee5b096a10c4d12
patch link: https://lore.kernel.org/all/20230718080044.2738833-1-liuhangbin@gmail.com/
patch subject: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib

in testcase: kernel-selftests
version: kernel-selftests-x86_64-60acb023-1_20230329
with following parameters:

	group: net
	test: fib_nexthops.sh



compiler: gcc-12
test machine: 36 threads 1 sockets Intel(R) Core(TM) i9-10980XE CPU @ 3.00GHz (Cascade Lake) with 32G memory

(please refer to attached dmesg/kmsg for entire log/backtrace)




If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <oliver.sang@intel.com>
| Closes: https://lore.kernel.org/oe-lkp/202307252113.2b2036b2-oliver.sang@intel.com

TAP version 13
1..1
# timeout set to 3600
# selftests: net: fib_nexthops.sh
# 
# Basic functional tests
# ----------------------
# TEST: List with nothing defined                                     [ OK ]

...

# 
# IPv4 nexthop api compat mode
# ----------------------------
# TEST: IPv4 default nexthop compat mode check                        [ OK ]
# TEST: IPv4 compat mode on - route add notification                  [ OK ]
# TEST: IPv4 compat mode on - route dump                              [ OK ]
# TEST: IPv4 compat mode on - nexthop change                          [ OK ]
# TEST: IPv4 set compat mode - 0                                      [ OK ]
# TEST: IPv4 compat mode off - route add notification                 [ OK ]
# TEST: IPv4 compat mode off - route dump                             [ OK ]
# TEST: IPv4 compat mode off - nexthop change                         [ OK ]
# TEST: IPv4 compat mode off - nexthop delete                         [FAIL]   <---
# TEST: IPv4 set compat mode - 1                                      [ OK ]
# 
# IPv4 fdb groups functional
# --------------------------
# TEST: Fdb Nexthop group with multiple nexthops                      [ OK ]

...

# 
# IPv6 runtime resilient nexthop group torture
# --------------------------------------------
# TEST: IPv6 resilient nexthop group torture test                     [ OK ]
# 
# Tests passed: 227
# Tests failed:   1
not ok 1 selftests: net: fib_nexthops.sh # exit=1



To reproduce:

        git clone https://github.com/intel/lkp-tests.git
        cd lkp-tests
        sudo bin/lkp install job.yaml           # job file is attached in this email
        bin/lkp split-job --compatible job.yaml # generate the yaml file for lkp run
        sudo bin/lkp run generated-yaml-file

        # if come across any failure that blocks the test,
        # please remove ~/.lkp and /lkp dir to run from a clean state.



-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki



[-- Attachment #2: config-6.5.0-rc1-00339-g4c189e195494 --]
[-- Type: text/plain, Size: 164930 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 6.5.0-rc1 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc-12 (Debian 12.2.0-14) 12.2.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=120200
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=24000
CONFIG_LD_IS_BFD=y
CONFIG_LD_VERSION=24000
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
CONFIG_TOOLS_SUPPORT_RELR=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
CONFIG_PAHOLE_VERSION=125
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
# CONFIG_WERROR is not set
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_BUILD_SALT=""
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_HAVE_KERNEL_ZSTD=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
# CONFIG_KERNEL_ZSTD is not set
CONFIG_DEFAULT_INIT=""
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
# CONFIG_WATCH_QUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
# CONFIG_USELIB is not set
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_GENERIC_IRQ_INJECTION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_SIM=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_IRQ_MSI_IOMMU=y
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
# end of IRQ subsystem

CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_INIT=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y
CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y
CONFIG_CONTEXT_TRACKING=y
CONFIG_CONTEXT_TRACKING_IDLE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
# CONFIG_NO_HZ_IDLE is not set
CONFIG_NO_HZ_FULL=y
CONFIG_CONTEXT_TRACKING_USER=y
# CONFIG_CONTEXT_TRACKING_USER_FORCE is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=125
# end of Timers subsystem

CONFIG_BPF=y
CONFIG_HAVE_EBPF_JIT=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y

#
# BPF subsystem
#
CONFIG_BPF_SYSCALL=y
CONFIG_BPF_JIT=y
CONFIG_BPF_JIT_ALWAYS_ON=y
CONFIG_BPF_JIT_DEFAULT_ON=y
CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
CONFIG_USERMODE_DRIVER=y
CONFIG_BPF_PRELOAD=y
CONFIG_BPF_PRELOAD_UMD=y
CONFIG_BPF_LSM=y
# end of BPF subsystem

CONFIG_PREEMPT_BUILD=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_PREEMPTION=y
CONFIG_PREEMPT_DYNAMIC=y
# CONFIG_SCHED_CORE is not set

#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_SCHED_AVG_IRQ=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting

CONFIG_CPU_ISOLATION=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
CONFIG_PREEMPT_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
CONFIG_RCU_NOCB_CPU=y
# CONFIG_RCU_NOCB_CPU_DEFAULT_ALL is not set
# CONFIG_RCU_LAZY is not set
# end of RCU Subsystem

CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=20
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
# CONFIG_PRINTK_INDEX is not set
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y

#
# Scheduler features
#
# CONFIG_UCLAMP_TASK is not set
# end of Scheduler features

CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_CC_HAS_INT128=y
CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5"
CONFIG_GCC11_NO_ARRAY_BOUNDS=y
CONFIG_CC_NO_ARRAY_BOUNDS=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_NUMA_BALANCING=y
CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
# CONFIG_CGROUP_FAVOR_DYNMODS is not set
CONFIG_MEMCG=y
CONFIG_MEMCG_KMEM=y
CONFIG_BLK_CGROUP=y
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_SCHED_MM_CID=y
CONFIG_CGROUP_PIDS=y
CONFIG_CGROUP_RDMA=y
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_MISC is not set
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_TIME_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_SCHED_AUTOGROUP=y
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_RD_ZSTD=y
CONFIG_BOOT_CONFIG=y
# CONFIG_BOOT_CONFIG_FORCE is not set
# CONFIG_BOOT_CONFIG_EMBED is not set
CONFIG_INITRAMFS_PRESERVE_MTIME=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_LD_ORPHAN_WARN=y
CONFIG_LD_ORPHAN_WARN_LEVEL="warn"
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_SELFTEST is not set
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_KCMP=y
CONFIG_RSEQ=y
CONFIG_CACHESTAT_SYSCALL=y
# CONFIG_DEBUG_RSEQ is not set
CONFIG_EMBEDDED=y
CONFIG_HAVE_PERF_EVENTS=y
CONFIG_GUEST_PERF_EVENTS=y
# CONFIG_PC104 is not set

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters

CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# end of General setup

CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_AUDIT_ARCH=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_DYNAMIC_PHYSICAL_MASK=y
CONFIG_PGTABLE_LEVELS=5
CONFIG_CC_HAS_SANE_STACKPROTECTOR=y

#
# Processor type and features
#
CONFIG_SMP=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
CONFIG_X86_CPU_RESCTRL=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
CONFIG_X86_UV=y
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
CONFIG_X86_INTEL_LPSS=y
# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
CONFIG_IOSF_MBI=y
# CONFIG_IOSF_MBI_DEBUG is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_X86_HV_CALLBACK_VECTOR=y
# CONFIG_XEN is not set
CONFIG_KVM_GUEST=y
CONFIG_ARCH_CPUIDLE_HALTPOLL=y
# CONFIG_PVH is not set
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_JAILHOUSE_GUEST is not set
# CONFIG_ACRN_GUEST is not set
CONFIG_INTEL_TDX_GUEST=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_IA32_FEAT_CTL=y
CONFIG_X86_VMX_FEATURE_NAMES=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
# CONFIG_CPU_SUP_AMD is not set
# CONFIG_CPU_SUP_HYGON is not set
# CONFIG_CPU_SUP_CENTAUR is not set
# CONFIG_CPU_SUP_ZHAOXIN is not set
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_BOOT_VESA_SUPPORT=y
CONFIG_MAXSMP=y
CONFIG_NR_CPUS_RANGE_BEGIN=8192
CONFIG_NR_CPUS_RANGE_END=8192
CONFIG_NR_CPUS_DEFAULT=8192
CONFIG_NR_CPUS=8192
CONFIG_SCHED_CLUSTER=y
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_MC_PRIO=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCELOG_LEGACY=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_THRESHOLD=y
CONFIG_X86_MCE_INJECT=m

#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=m
CONFIG_PERF_EVENTS_INTEL_RAPL=m
CONFIG_PERF_EVENTS_INTEL_CSTATE=m
# end of Performance monitoring

CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
CONFIG_X86_IOPL_IOPERM=y
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_LATE_LOADING=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_X86_5LEVEL=y
CONFIG_X86_DIRECT_GBPAGES=y
# CONFIG_X86_CPA_STATISTICS is not set
CONFIG_X86_MEM_ENCRYPT=y
CONFIG_NUMA=y
# CONFIG_AMD_NUMA is not set
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NUMA_EMU=y
CONFIG_NODES_SHIFT=10
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
# CONFIG_ARCH_MEMORY_PROBE is not set
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_X86_PMEM_LEGACY_DEVICE=y
CONFIG_X86_PMEM_LEGACY=m
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_X86_UMIP=y
CONFIG_CC_HAS_IBT=y
CONFIG_X86_KERNEL_IBT=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_X86_INTEL_TSX_MODE_OFF=y
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
CONFIG_X86_SGX=y
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_EFI_HANDOVER_PROTOCOL=y
CONFIG_EFI_MIXED=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
CONFIG_KEXEC_FILE=y
CONFIG_ARCH_HAS_KEXEC_PURGATORY=y
# CONFIG_KEXEC_SIG is not set
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_RANDOMIZE_BASE=y
CONFIG_X86_NEED_RELOCS=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_DYNAMIC_MEMORY_LAYOUT=y
CONFIG_RANDOMIZE_MEMORY=y
CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
# CONFIG_ADDRESS_MASKING is not set
CONFIG_HOTPLUG_CPU=y
# CONFIG_COMPAT_VDSO is not set
CONFIG_LEGACY_VSYSCALL_XONLY=y
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
# CONFIG_STRICT_SIGALTSTACK_SIZE is not set
CONFIG_HAVE_LIVEPATCH=y
CONFIG_LIVEPATCH=y
# end of Processor type and features

CONFIG_CC_HAS_SLS=y
CONFIG_CC_HAS_RETURN_THUNK=y
CONFIG_CC_HAS_ENTRY_PADDING=y
CONFIG_FUNCTION_PADDING_CFI=11
CONFIG_FUNCTION_PADDING_BYTES=16
CONFIG_SPECULATION_MITIGATIONS=y
CONFIG_PAGE_TABLE_ISOLATION=y
# CONFIG_RETPOLINE is not set
CONFIG_CPU_IBRS_ENTRY=y
# CONFIG_SLS is not set
CONFIG_ARCH_HAS_ADD_PAGES=y
CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_SUSPEND_SKIP_SYNC is not set
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_HIBERNATION_SNAPSHOT_DEV=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_USERSPACE_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
# CONFIG_DPM_WATCHDOG is not set
# CONFIG_PM_TRACE_RTC is not set
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
# CONFIG_ENERGY_MODEL is not set
CONFIG_ARCH_SUPPORTS_ACPI=y
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_SPCR_TABLE=y
# CONFIG_ACPI_FPDT is not set
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
CONFIG_ACPI_EC_DEBUGFS=m
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_TAD=m
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_CSTATE=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_CPPC_LIB=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_IPMI=m
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_PLATFORM_PROFILE=m
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_PCI_SLOT=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_MEMORY=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
CONFIG_ACPI_SBS=m
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
CONFIG_ACPI_BGRT=y
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
CONFIG_ACPI_NFIT=m
# CONFIG_NFIT_SECURITY_DEBUG is not set
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_HMAT=y
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
CONFIG_ACPI_APEI_EINJ=m
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
# CONFIG_ACPI_DPTF is not set
CONFIG_ACPI_WATCHDOG=y
CONFIG_ACPI_EXTLOG=m
CONFIG_ACPI_ADXL=y
# CONFIG_ACPI_CONFIGFS is not set
# CONFIG_ACPI_PFRUT is not set
CONFIG_ACPI_PCC=y
# CONFIG_ACPI_FFH is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_ACPI_PRMT=y
CONFIG_X86_PM_TIMER=y

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y

#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
# CONFIG_X86_PCC_CPUFREQ is not set
# CONFIG_X86_AMD_PSTATE is not set
# CONFIG_X86_AMD_PSTATE_UT is not set
CONFIG_X86_ACPI_CPUFREQ=m
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
CONFIG_X86_P4_CLOCKMOD=m

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=m
# end of CPU Frequency scaling

#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
CONFIG_CPU_IDLE_GOV_HALTPOLL=y
CONFIG_HALTPOLL_CPUIDLE=y
# end of CPU Idle

CONFIG_INTEL_IDLE=y
# end of Power management and ACPI options

#
# Bus options (PCI etc.)
#
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_MMCONF_FAM10H=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
# CONFIG_ISA_BUS is not set
CONFIG_ISA_DMA_API=y
# end of Bus options (PCI etc.)

#
# Binary Emulations
#
CONFIG_IA32_EMULATION=y
# CONFIG_X86_X32_ABI is not set
CONFIG_COMPAT_32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
# end of Binary Emulations

CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_PFNCACHE=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_DIRTY_RING=y
CONFIG_HAVE_KVM_DIRTY_RING_TSO=y
CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_KVM_COMPAT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_HAVE_KVM_NO_POLL=y
CONFIG_KVM_XFER_TO_GUEST_WORK=y
CONFIG_HAVE_KVM_PM_NOTIFIER=y
CONFIG_KVM_GENERIC_HARDWARE_ENABLING=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
# CONFIG_KVM_WERROR is not set
CONFIG_KVM_INTEL=m
# CONFIG_X86_SGX_KVM is not set
# CONFIG_KVM_AMD is not set
CONFIG_KVM_SMM=y
# CONFIG_KVM_XEN is not set
CONFIG_AS_AVX512=y
CONFIG_AS_SHA1_NI=y
CONFIG_AS_SHA256_NI=y
CONFIG_AS_TPAUSE=y
CONFIG_AS_GFNI=y

#
# General architecture-dependent options
#
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
CONFIG_HAVE_IMA_KEXEC=y
CONFIG_HOTPLUG_SMT=y
CONFIG_HOTPLUG_CORE_SYNC=y
CONFIG_HOTPLUG_CORE_SYNC_DEAD=y
CONFIG_HOTPLUG_CORE_SYNC_FULL=y
CONFIG_HOTPLUG_SPLIT_STARTUP=y
CONFIG_HOTPLUG_PARALLEL=y
CONFIG_GENERIC_ENTRY=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
# CONFIG_STATIC_CALL_SELFTEST is not set
CONFIG_OPTPROBES=y
CONFIG_KPROBES_ON_FTRACE=y
CONFIG_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_KRETPROBE_ON_RETHOOK=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=y
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_ARCH_WANTS_NO_INSTR=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_RUST=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
CONFIG_MMU_GATHER_TABLE_FREE=y
CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
CONFIG_MMU_GATHER_MERGE_VMAS=y
CONFIG_MMU_LAZY_TLB_REFCOUNT=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP=y
CONFIG_SECCOMP_FILTER=y
# CONFIG_SECCOMP_CACHE_DEBUG is not set
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y
CONFIG_LTO_NONE=y
CONFIG_ARCH_SUPPORTS_CFI_CLANG=y
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING_USER=y
CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_MOVE_PUD=y
CONFIG_HAVE_MOVE_PMD=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_ARCH_HUGE_VMALLOC=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y
CONFIG_SOFTIRQ_ON_OWN_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
CONFIG_HAVE_OBJTOOL=y
CONFIG_HAVE_JUMP_LABEL_HACK=y
CONFIG_HAVE_NOINSTR_HACK=y
CONFIG_HAVE_NOINSTR_VALIDATION=y
CONFIG_HAVE_UACCESS_VALIDATION=y
CONFIG_HAVE_STACK_VALIDATION=y
CONFIG_HAVE_RELIABLE_STACKTRACE=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
CONFIG_VMAP_STACK=y
CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y
CONFIG_RANDOMIZE_KSTACK_OFFSET=y
CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
CONFIG_ARCH_USE_MEMREMAP_PROT=y
# CONFIG_LOCK_EVENT_COUNTS is not set
CONFIG_ARCH_HAS_MEM_ENCRYPT=y
CONFIG_ARCH_HAS_CC_PLATFORM=y
CONFIG_HAVE_STATIC_CALL=y
CONFIG_HAVE_STATIC_CALL_INLINE=y
CONFIG_HAVE_PREEMPT_DYNAMIC=y
CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y
CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y
CONFIG_ARCH_HAS_ELFCORE_COMPAT=y
CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y
CONFIG_DYNAMIC_SIGFRAME=y
CONFIG_HAVE_ARCH_NODE_DEV_GROUP=y
CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling

CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_GCC_PLUGINS=y
# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set
CONFIG_FUNCTION_ALIGNMENT_4B=y
CONFIG_FUNCTION_ALIGNMENT_16B=y
CONFIG_FUNCTION_ALIGNMENT=16
# end of General architecture-dependent options

CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULE_SIG_FORMAT=y
CONFIG_MODULES=y
# CONFIG_MODULE_DEBUG is not set
CONFIG_MODULE_FORCE_LOAD=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set
CONFIG_MODVERSIONS=y
CONFIG_ASM_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
CONFIG_MODULE_SIG_SHA256=y
# CONFIG_MODULE_SIG_SHA384 is not set
# CONFIG_MODULE_SIG_SHA512 is not set
CONFIG_MODULE_SIG_HASH="sha256"
CONFIG_MODULE_COMPRESS_NONE=y
# CONFIG_MODULE_COMPRESS_GZIP is not set
# CONFIG_MODULE_COMPRESS_XZ is not set
# CONFIG_MODULE_COMPRESS_ZSTD is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
CONFIG_MODPROBE_PATH="/sbin/modprobe"
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLOCK_LEGACY_AUTOLOAD=y
CONFIG_BLK_CGROUP_RWSTAT=y
CONFIG_BLK_CGROUP_PUNT_BIO=y
CONFIG_BLK_DEV_BSG_COMMON=y
CONFIG_BLK_ICQ=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_INTEGRITY_T10=m
# CONFIG_BLK_DEV_ZONED is not set
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_DEV_THROTTLING_LOW is not set
CONFIG_BLK_WBT=y
CONFIG_BLK_WBT_MQ=y
CONFIG_BLK_CGROUP_IOLATENCY=y
# CONFIG_BLK_CGROUP_IOCOST is not set
# CONFIG_BLK_CGROUP_IOPRIO is not set
CONFIG_BLK_DEBUG_FS=y
# CONFIG_BLK_SED_OPAL is not set
# CONFIG_BLK_INLINE_ENCRYPTION is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_EFI_PARTITION=y
# end of Partition Types

CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_PM=y
CONFIG_BLOCK_HOLDER_DEPRECATED=y
CONFIG_BLK_MQ_STACKING=y

#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
CONFIG_IOSCHED_BFQ=y
CONFIG_BFQ_GROUP_IOSCHED=y
# CONFIG_BFQ_CGROUP_DEBUG is not set
# end of IO Schedulers

CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PADATA=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
CONFIG_FREEZER=y

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
# end of Executable file formats

#
# Memory Management options
#
CONFIG_ZPOOL=y
CONFIG_SWAP=y
CONFIG_ZSWAP=y
# CONFIG_ZSWAP_DEFAULT_ON is not set
# CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set
CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set
CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo"
CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y
# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set
# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set
CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud"
CONFIG_ZBUD=y
# CONFIG_Z3FOLD is not set
CONFIG_ZSMALLOC=y
CONFIG_ZSMALLOC_STAT=y
CONFIG_ZSMALLOC_CHAIN_SIZE=8

#
# SLAB allocator options
#
# CONFIG_SLAB_DEPRECATED is not set
CONFIG_SLUB=y
# CONFIG_SLUB_TINY is not set
CONFIG_SLAB_MERGE_DEFAULT=y
CONFIG_SLAB_FREELIST_RANDOM=y
CONFIG_SLAB_FREELIST_HARDENED=y
# CONFIG_SLUB_STATS is not set
CONFIG_SLUB_CPU_PARTIAL=y
# end of SLAB allocator options

CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SPARSEMEM=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_NUMA_KEEP_MEMINFO=y
CONFIG_MEMORY_ISOLATION=y
CONFIG_EXCLUSIVE_SYSTEM_RAM=y
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_MEMORY_HOTPLUG=y
# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_MHP_MEMMAP_ON_MEMORY=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_MEMORY_BALLOON=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_COMPACTION=y
CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_DEVICE_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
CONFIG_HWPOISON_INJECT=m
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_TRANSPARENT_HUGEPAGE=y
# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
CONFIG_THP_SWAP=y
# CONFIG_READ_ONLY_THP_FOR_FS is not set
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_FRONTSWAP=y
CONFIG_CMA=y
# CONFIG_CMA_DEBUG is not set
# CONFIG_CMA_DEBUGFS is not set
# CONFIG_CMA_SYSFS is not set
CONFIG_CMA_AREAS=7
CONFIG_MEM_SOFT_DIRTY=y
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
CONFIG_PAGE_IDLE_FLAG=y
CONFIG_IDLE_PAGE_TRACKING=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_ARCH_HAS_ZONE_DMA_SET=y
CONFIG_ZONE_DMA=y
CONFIG_ZONE_DMA32=y
CONFIG_ZONE_DEVICE=y
CONFIG_HMM_MIRROR=y
CONFIG_GET_FREE_REGION=y
CONFIG_DEVICE_PRIVATE=y
CONFIG_VMAP_PFN=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_PERCPU_STATS is not set
CONFIG_GUP_TEST=y
# CONFIG_DMAPOOL_TEST is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
CONFIG_SECRETMEM=y
CONFIG_ANON_VMA_NAME=y
CONFIG_USERFAULTFD=y
CONFIG_HAVE_ARCH_USERFAULTFD_WP=y
CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y
CONFIG_PTE_MARKER_UFFD_WP=y
# CONFIG_LRU_GEN is not set
CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK=y
CONFIG_PER_VMA_LOCK=y
CONFIG_LOCK_MM_AND_FIND_VMA=y

#
# Data Access Monitoring
#
CONFIG_DAMON=y
CONFIG_DAMON_VADDR=y
CONFIG_DAMON_PADDR=y
CONFIG_DAMON_SYSFS=y
CONFIG_DAMON_DBGFS=y
# CONFIG_DAMON_RECLAIM is not set
# CONFIG_DAMON_LRU_SORT is not set
# end of Data Access Monitoring
# end of Memory Management options

CONFIG_NET=y
CONFIG_NET_INGRESS=y
CONFIG_NET_EGRESS=y
CONFIG_NET_REDIRECT=y
CONFIG_SKB_EXTENSIONS=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_DIAG=m
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
CONFIG_AF_UNIX_OOB=y
CONFIG_UNIX_DIAG=m
CONFIG_TLS=m
CONFIG_TLS_DEVICE=y
# CONFIG_TLS_TOE is not set
CONFIG_XFRM=y
CONFIG_XFRM_OFFLOAD=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_USER_COMPAT is not set
# CONFIG_XFRM_INTERFACE is not set
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
CONFIG_XFRM_STATISTICS=y
CONFIG_XFRM_AH=m
CONFIG_XFRM_ESP=m
CONFIG_XFRM_IPCOMP=m
# CONFIG_NET_KEY is not set
CONFIG_XDP_SOCKETS=y
CONFIG_XDP_SOCKETS_DIAG=y
CONFIG_NET_HANDSHAKE=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_ROUTE_CLASSID=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
CONFIG_NET_IPIP=y
CONFIG_NET_IPGRE_DEMUX=y
CONFIG_NET_IP_TUNNEL=y
CONFIG_NET_IPGRE=y
CONFIG_NET_IPGRE_BROADCAST=y
CONFIG_IP_MROUTE_COMMON=y
CONFIG_IP_MROUTE=y
CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
CONFIG_NET_IPVTI=m
CONFIG_NET_UDP_TUNNEL=y
CONFIG_NET_FOU=y
CONFIG_NET_FOU_IP_TUNNELS=y
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
CONFIG_INET_ESP_OFFLOAD=m
# CONFIG_INET_ESPINTCP is not set
CONFIG_INET_IPCOMP=m
CONFIG_INET_TABLE_PERTURB_ORDER=16
CONFIG_INET_XFRM_TUNNEL=m
CONFIG_INET_TUNNEL=y
CONFIG_INET_DIAG=m
CONFIG_INET_TCP_DIAG=m
CONFIG_INET_UDP_DIAG=m
CONFIG_INET_RAW_DIAG=m
# CONFIG_INET_DIAG_DESTROY is not set
CONFIG_TCP_CONG_ADVANCED=y
CONFIG_TCP_CONG_BIC=m
CONFIG_TCP_CONG_CUBIC=y
CONFIG_TCP_CONG_WESTWOOD=m
CONFIG_TCP_CONG_HTCP=m
CONFIG_TCP_CONG_HSTCP=m
CONFIG_TCP_CONG_HYBLA=m
CONFIG_TCP_CONG_VEGAS=m
CONFIG_TCP_CONG_NV=m
CONFIG_TCP_CONG_SCALABLE=m
CONFIG_TCP_CONG_LP=m
CONFIG_TCP_CONG_VENO=m
CONFIG_TCP_CONG_YEAH=m
CONFIG_TCP_CONG_ILLINOIS=m
CONFIG_TCP_CONG_DCTCP=m
# CONFIG_TCP_CONG_CDG is not set
CONFIG_TCP_CONG_BBR=m
# CONFIG_DEFAULT_CUBIC is not set
CONFIG_DEFAULT_RENO=y
CONFIG_DEFAULT_TCP_CONG="reno"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
CONFIG_IPV6_OPTIMISTIC_DAD=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_ESP_OFFLOAD=m
# CONFIG_INET6_ESPINTCP is not set
CONFIG_INET6_IPCOMP=m
CONFIG_IPV6_MIP6=m
# CONFIG_IPV6_ILA is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=y
CONFIG_IPV6_VTI=m
CONFIG_IPV6_SIT=m
CONFIG_IPV6_SIT_6RD=y
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
CONFIG_IPV6_GRE=y
CONFIG_IPV6_FOU=y
CONFIG_IPV6_FOU_TUNNEL=y
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
CONFIG_IPV6_SEG6_LWTUNNEL=y
# CONFIG_IPV6_SEG6_HMAC is not set
CONFIG_IPV6_SEG6_BPF=y
# CONFIG_IPV6_RPL_LWTUNNEL is not set
CONFIG_IPV6_IOAM6_LWTUNNEL=y
CONFIG_NETLABEL=y
CONFIG_MPTCP=y
CONFIG_INET_MPTCP_DIAG=m
CONFIG_MPTCP_IPV6=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
CONFIG_NETWORK_PHY_TIMESTAMPING=y
CONFIG_NETFILTER=y
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=m

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_EGRESS=y
CONFIG_NETFILTER_SKIP_EGRESS=y
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_FAMILY_BRIDGE=y
CONFIG_NETFILTER_FAMILY_ARP=y
CONFIG_NETFILTER_BPF_LINK=y
# CONFIG_NETFILTER_NETLINK_HOOK is not set
# CONFIG_NETFILTER_NETLINK_ACCT is not set
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
CONFIG_NETFILTER_NETLINK_OSF=m
CONFIG_NF_CONNTRACK=m
CONFIG_NF_LOG_SYSLOG=m
CONFIG_NETFILTER_CONNCOUNT=m
CONFIG_NF_CONNTRACK_MARK=y
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_ZONES=y
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_EVENTS=y
CONFIG_NF_CONNTRACK_TIMEOUT=y
CONFIG_NF_CONNTRACK_TIMESTAMP=y
CONFIG_NF_CONNTRACK_LABELS=y
CONFIG_NF_CONNTRACK_OVS=y
CONFIG_NF_CT_PROTO_DCCP=y
CONFIG_NF_CT_PROTO_GRE=y
CONFIG_NF_CT_PROTO_SCTP=y
CONFIG_NF_CT_PROTO_UDPLITE=y
CONFIG_NF_CONNTRACK_AMANDA=m
CONFIG_NF_CONNTRACK_FTP=m
CONFIG_NF_CONNTRACK_H323=m
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_BROADCAST=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
CONFIG_NF_CONNTRACK_SNMP=m
CONFIG_NF_CONNTRACK_PPTP=m
CONFIG_NF_CONNTRACK_SANE=m
CONFIG_NF_CONNTRACK_SIP=m
CONFIG_NF_CONNTRACK_TFTP=m
CONFIG_NF_CT_NETLINK=m
CONFIG_NF_CT_NETLINK_TIMEOUT=m
CONFIG_NF_CT_NETLINK_HELPER=m
CONFIG_NETFILTER_NETLINK_GLUE_CT=y
CONFIG_NF_NAT=m
CONFIG_NF_NAT_AMANDA=m
CONFIG_NF_NAT_FTP=m
CONFIG_NF_NAT_IRC=m
CONFIG_NF_NAT_SIP=m
CONFIG_NF_NAT_TFTP=m
CONFIG_NF_NAT_REDIRECT=y
CONFIG_NF_NAT_MASQUERADE=y
CONFIG_NF_NAT_OVS=y
CONFIG_NETFILTER_SYNPROXY=m
CONFIG_NF_TABLES=m
CONFIG_NF_TABLES_INET=y
CONFIG_NF_TABLES_NETDEV=y
CONFIG_NFT_NUMGEN=m
CONFIG_NFT_CT=m
CONFIG_NFT_FLOW_OFFLOAD=m
CONFIG_NFT_CONNLIMIT=m
CONFIG_NFT_LOG=m
CONFIG_NFT_LIMIT=m
CONFIG_NFT_MASQ=m
CONFIG_NFT_REDIR=m
CONFIG_NFT_NAT=m
# CONFIG_NFT_TUNNEL is not set
CONFIG_NFT_QUEUE=m
CONFIG_NFT_QUOTA=m
CONFIG_NFT_REJECT=m
CONFIG_NFT_REJECT_INET=m
CONFIG_NFT_COMPAT=m
CONFIG_NFT_HASH=m
CONFIG_NFT_FIB=m
CONFIG_NFT_FIB_INET=m
# CONFIG_NFT_XFRM is not set
CONFIG_NFT_SOCKET=m
# CONFIG_NFT_OSF is not set
CONFIG_NFT_TPROXY=m
CONFIG_NFT_SYNPROXY=m
CONFIG_NF_DUP_NETDEV=m
CONFIG_NFT_DUP_NETDEV=m
CONFIG_NFT_FWD_NETDEV=m
CONFIG_NFT_FIB_NETDEV=m
# CONFIG_NFT_REJECT_NETDEV is not set
CONFIG_NF_FLOW_TABLE_INET=m
CONFIG_NF_FLOW_TABLE=m
# CONFIG_NF_FLOW_TABLE_PROCFS is not set
CONFIG_NETFILTER_XTABLES=y
# CONFIG_NETFILTER_XTABLES_COMPAT is not set

#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
CONFIG_NETFILTER_XT_CONNMARK=m
CONFIG_NETFILTER_XT_SET=m

#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_AUDIT=m
CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
CONFIG_NETFILTER_XT_TARGET_CT=m
CONFIG_NETFILTER_XT_TARGET_DSCP=m
CONFIG_NETFILTER_XT_TARGET_HL=m
CONFIG_NETFILTER_XT_TARGET_HMARK=m
CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
# CONFIG_NETFILTER_XT_TARGET_LED is not set
CONFIG_NETFILTER_XT_TARGET_LOG=m
CONFIG_NETFILTER_XT_TARGET_MARK=m
CONFIG_NETFILTER_XT_NAT=m
CONFIG_NETFILTER_XT_TARGET_NETMAP=m
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
CONFIG_NETFILTER_XT_TARGET_RATEEST=m
CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m
CONFIG_NETFILTER_XT_TARGET_TEE=m
CONFIG_NETFILTER_XT_TARGET_TPROXY=m
CONFIG_NETFILTER_XT_TARGET_TRACE=m
CONFIG_NETFILTER_XT_TARGET_SECMARK=m
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m

#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
CONFIG_NETFILTER_XT_MATCH_BPF=m
CONFIG_NETFILTER_XT_MATCH_CGROUP=m
CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
CONFIG_NETFILTER_XT_MATCH_CPU=m
CONFIG_NETFILTER_XT_MATCH_DCCP=m
CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
CONFIG_NETFILTER_XT_MATCH_DSCP=m
CONFIG_NETFILTER_XT_MATCH_ECN=m
CONFIG_NETFILTER_XT_MATCH_ESP=m
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HELPER=m
CONFIG_NETFILTER_XT_MATCH_HL=m
# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
CONFIG_NETFILTER_XT_MATCH_IPVS=m
# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
CONFIG_NETFILTER_XT_MATCH_MAC=m
CONFIG_NETFILTER_XT_MATCH_MARK=m
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
CONFIG_NETFILTER_XT_MATCH_OSF=m
CONFIG_NETFILTER_XT_MATCH_OWNER=m
CONFIG_NETFILTER_XT_MATCH_POLICY=m
CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
CONFIG_NETFILTER_XT_MATCH_RATEEST=m
CONFIG_NETFILTER_XT_MATCH_REALM=m
CONFIG_NETFILTER_XT_MATCH_RECENT=m
CONFIG_NETFILTER_XT_MATCH_SCTP=m
CONFIG_NETFILTER_XT_MATCH_SOCKET=m
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
CONFIG_NETFILTER_XT_MATCH_STRING=m
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
# CONFIG_NETFILTER_XT_MATCH_U32 is not set
# end of Core Netfilter Configuration

CONFIG_IP_SET=m
CONFIG_IP_SET_MAX=256
CONFIG_IP_SET_BITMAP_IP=m
CONFIG_IP_SET_BITMAP_IPMAC=m
CONFIG_IP_SET_BITMAP_PORT=m
CONFIG_IP_SET_HASH_IP=m
CONFIG_IP_SET_HASH_IPMARK=m
CONFIG_IP_SET_HASH_IPPORT=m
CONFIG_IP_SET_HASH_IPPORTIP=m
CONFIG_IP_SET_HASH_IPPORTNET=m
CONFIG_IP_SET_HASH_IPMAC=m
CONFIG_IP_SET_HASH_MAC=m
CONFIG_IP_SET_HASH_NETPORTNET=m
CONFIG_IP_SET_HASH_NET=m
CONFIG_IP_SET_HASH_NETNET=m
CONFIG_IP_SET_HASH_NETPORT=m
CONFIG_IP_SET_HASH_NETIFACE=m
CONFIG_IP_SET_LIST_SET=m
CONFIG_IP_VS=m
CONFIG_IP_VS_IPV6=y
# CONFIG_IP_VS_DEBUG is not set
CONFIG_IP_VS_TAB_BITS=12

#
# IPVS transport protocol load balancing support
#
CONFIG_IP_VS_PROTO_TCP=y
CONFIG_IP_VS_PROTO_UDP=y
CONFIG_IP_VS_PROTO_AH_ESP=y
CONFIG_IP_VS_PROTO_ESP=y
CONFIG_IP_VS_PROTO_AH=y
CONFIG_IP_VS_PROTO_SCTP=y

#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
CONFIG_IP_VS_WRR=m
CONFIG_IP_VS_LC=m
CONFIG_IP_VS_WLC=m
CONFIG_IP_VS_FO=m
CONFIG_IP_VS_OVF=m
CONFIG_IP_VS_LBLC=m
CONFIG_IP_VS_LBLCR=m
CONFIG_IP_VS_DH=m
CONFIG_IP_VS_SH=m
# CONFIG_IP_VS_MH is not set
CONFIG_IP_VS_SED=m
CONFIG_IP_VS_NQ=m
# CONFIG_IP_VS_TWOS is not set

#
# IPVS SH scheduler
#
CONFIG_IP_VS_SH_TAB_BITS=8

#
# IPVS MH scheduler
#
CONFIG_IP_VS_MH_TAB_INDEX=12

#
# IPVS application helper
#
CONFIG_IP_VS_FTP=m
CONFIG_IP_VS_NFCT=y
CONFIG_IP_VS_PE_SIP=m

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_SOCKET_IPV4=m
CONFIG_NF_TPROXY_IPV4=m
CONFIG_NF_TABLES_IPV4=y
CONFIG_NFT_REJECT_IPV4=m
CONFIG_NFT_DUP_IPV4=m
CONFIG_NFT_FIB_IPV4=m
CONFIG_NF_TABLES_ARP=y
CONFIG_NF_DUP_IPV4=m
CONFIG_NF_LOG_ARP=m
CONFIG_NF_LOG_IPV4=m
CONFIG_NF_REJECT_IPV4=m
CONFIG_NF_NAT_SNMP_BASIC=m
CONFIG_NF_NAT_PPTP=m
CONFIG_NF_NAT_H323=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_AH=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_RPFILTER=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_SYNPROXY=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_ECN=m
CONFIG_IP_NF_TARGET_TTL=m
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_SECURITY=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m
# end of IP: Netfilter Configuration

#
# IPv6: Netfilter Configuration
#
CONFIG_NF_SOCKET_IPV6=m
CONFIG_NF_TPROXY_IPV6=m
CONFIG_NF_TABLES_IPV6=y
CONFIG_NFT_REJECT_IPV6=m
CONFIG_NFT_DUP_IPV6=m
CONFIG_NFT_FIB_IPV6=m
CONFIG_NF_DUP_IPV6=m
CONFIG_NF_REJECT_IPV6=m
CONFIG_NF_LOG_IPV6=m
CONFIG_IP6_NF_IPTABLES=m
CONFIG_IP6_NF_MATCH_AH=m
CONFIG_IP6_NF_MATCH_EUI64=m
CONFIG_IP6_NF_MATCH_FRAG=m
CONFIG_IP6_NF_MATCH_OPTS=m
CONFIG_IP6_NF_MATCH_HL=m
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
CONFIG_IP6_NF_MATCH_MH=m
CONFIG_IP6_NF_MATCH_RPFILTER=m
CONFIG_IP6_NF_MATCH_RT=m
# CONFIG_IP6_NF_MATCH_SRH is not set
# CONFIG_IP6_NF_TARGET_HL is not set
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
CONFIG_IP6_NF_TARGET_SYNPROXY=m
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP6_NF_RAW=m
CONFIG_IP6_NF_SECURITY=m
CONFIG_IP6_NF_NAT=m
CONFIG_IP6_NF_TARGET_MASQUERADE=m
CONFIG_IP6_NF_TARGET_NPT=m
# end of IPv6: Netfilter Configuration

CONFIG_NF_DEFRAG_IPV6=m
CONFIG_NF_TABLES_BRIDGE=m
# CONFIG_NFT_BRIDGE_META is not set
CONFIG_NFT_BRIDGE_REJECT=m
# CONFIG_NF_CONNTRACK_BRIDGE is not set
CONFIG_BRIDGE_NF_EBTABLES=m
CONFIG_BRIDGE_EBT_BROUTE=m
CONFIG_BRIDGE_EBT_T_FILTER=m
CONFIG_BRIDGE_EBT_T_NAT=m
CONFIG_BRIDGE_EBT_802_3=m
CONFIG_BRIDGE_EBT_AMONG=m
CONFIG_BRIDGE_EBT_ARP=m
CONFIG_BRIDGE_EBT_IP=m
CONFIG_BRIDGE_EBT_IP6=m
CONFIG_BRIDGE_EBT_LIMIT=m
CONFIG_BRIDGE_EBT_MARK=m
CONFIG_BRIDGE_EBT_PKTTYPE=m
CONFIG_BRIDGE_EBT_STP=m
CONFIG_BRIDGE_EBT_VLAN=m
CONFIG_BRIDGE_EBT_ARPREPLY=m
CONFIG_BRIDGE_EBT_DNAT=m
CONFIG_BRIDGE_EBT_MARK_T=m
CONFIG_BRIDGE_EBT_REDIRECT=m
CONFIG_BRIDGE_EBT_SNAT=m
CONFIG_BRIDGE_EBT_LOG=m
CONFIG_BRIDGE_EBT_NFLOG=m
CONFIG_BPFILTER=y
CONFIG_BPFILTER_UMH=m
# CONFIG_IP_DCCP is not set
CONFIG_IP_SCTP=m
# CONFIG_SCTP_DBG_OBJCNT is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
CONFIG_SCTP_COOKIE_HMAC_SHA1=y
CONFIG_INET_SCTP_DIAG=m
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
CONFIG_STP=y
CONFIG_GARP=y
CONFIG_MRP=y
CONFIG_BRIDGE=m
CONFIG_BRIDGE_IGMP_SNOOPING=y
CONFIG_BRIDGE_VLAN_FILTERING=y
# CONFIG_BRIDGE_MRP is not set
# CONFIG_BRIDGE_CFM is not set
# CONFIG_NET_DSA is not set
CONFIG_VLAN_8021Q=y
CONFIG_VLAN_8021Q_GVRP=y
CONFIG_VLAN_8021Q_MVRP=y
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_PRIO=m
CONFIG_NET_SCH_MULTIQ=m
CONFIG_NET_SCH_RED=m
CONFIG_NET_SCH_SFB=m
CONFIG_NET_SCH_SFQ=m
CONFIG_NET_SCH_TEQL=m
CONFIG_NET_SCH_TBF=m
CONFIG_NET_SCH_CBS=m
CONFIG_NET_SCH_ETF=m
CONFIG_NET_SCH_MQPRIO_LIB=m
CONFIG_NET_SCH_TAPRIO=m
CONFIG_NET_SCH_GRED=m
CONFIG_NET_SCH_NETEM=y
CONFIG_NET_SCH_DRR=m
CONFIG_NET_SCH_MQPRIO=m
CONFIG_NET_SCH_SKBPRIO=m
CONFIG_NET_SCH_CHOKE=m
CONFIG_NET_SCH_QFQ=m
CONFIG_NET_SCH_CODEL=m
CONFIG_NET_SCH_FQ_CODEL=y
CONFIG_NET_SCH_CAKE=m
CONFIG_NET_SCH_FQ=m
CONFIG_NET_SCH_HHF=m
CONFIG_NET_SCH_PIE=m
CONFIG_NET_SCH_FQ_PIE=m
CONFIG_NET_SCH_INGRESS=y
CONFIG_NET_SCH_PLUG=m
CONFIG_NET_SCH_ETS=m
CONFIG_NET_SCH_DEFAULT=y
# CONFIG_DEFAULT_FQ is not set
# CONFIG_DEFAULT_CODEL is not set
CONFIG_DEFAULT_FQ_CODEL=y
# CONFIG_DEFAULT_FQ_PIE is not set
# CONFIG_DEFAULT_SFQ is not set
# CONFIG_DEFAULT_PFIFO_FAST is not set
CONFIG_DEFAULT_NET_SCH="fq_codel"

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_FW=m
CONFIG_NET_CLS_U32=m
CONFIG_CLS_U32_PERF=y
CONFIG_CLS_U32_MARK=y
CONFIG_NET_CLS_FLOW=m
CONFIG_NET_CLS_CGROUP=y
CONFIG_NET_CLS_BPF=m
CONFIG_NET_CLS_FLOWER=m
CONFIG_NET_CLS_MATCHALL=m
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
CONFIG_NET_EMATCH_CMP=m
CONFIG_NET_EMATCH_NBYTE=m
CONFIG_NET_EMATCH_U32=m
CONFIG_NET_EMATCH_META=m
CONFIG_NET_EMATCH_TEXT=m
CONFIG_NET_EMATCH_CANID=m
CONFIG_NET_EMATCH_IPSET=m
CONFIG_NET_EMATCH_IPT=m
CONFIG_NET_CLS_ACT=y
CONFIG_NET_ACT_POLICE=m
CONFIG_NET_ACT_GACT=m
CONFIG_GACT_PROB=y
CONFIG_NET_ACT_MIRRED=m
CONFIG_NET_ACT_SAMPLE=m
CONFIG_NET_ACT_IPT=m
CONFIG_NET_ACT_NAT=m
CONFIG_NET_ACT_PEDIT=m
CONFIG_NET_ACT_SIMP=m
CONFIG_NET_ACT_SKBEDIT=m
CONFIG_NET_ACT_CSUM=m
CONFIG_NET_ACT_MPLS=m
CONFIG_NET_ACT_VLAN=m
CONFIG_NET_ACT_BPF=m
CONFIG_NET_ACT_CONNMARK=m
CONFIG_NET_ACT_CTINFO=m
CONFIG_NET_ACT_SKBMOD=m
CONFIG_NET_ACT_IFE=m
CONFIG_NET_ACT_TUNNEL_KEY=m
CONFIG_NET_ACT_CT=m
CONFIG_NET_ACT_GATE=m
CONFIG_NET_IFE_SKBMARK=m
CONFIG_NET_IFE_SKBPRIO=m
CONFIG_NET_IFE_SKBTCINDEX=m
CONFIG_NET_TC_SKB_EXT=y
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=m
# CONFIG_BATMAN_ADV is not set
CONFIG_OPENVSWITCH=m
CONFIG_OPENVSWITCH_GRE=m
CONFIG_OPENVSWITCH_VXLAN=m
CONFIG_OPENVSWITCH_GENEVE=m
CONFIG_VSOCKETS=m
CONFIG_VSOCKETS_DIAG=m
CONFIG_VSOCKETS_LOOPBACK=m
CONFIG_VIRTIO_VSOCKETS=m
CONFIG_VIRTIO_VSOCKETS_COMMON=m
CONFIG_HYPERV_VSOCKETS=m
CONFIG_NETLINK_DIAG=m
CONFIG_MPLS=y
CONFIG_NET_MPLS_GSO=m
CONFIG_MPLS_ROUTING=m
CONFIG_MPLS_IPTUNNEL=m
CONFIG_NET_NSH=y
# CONFIG_HSR is not set
CONFIG_NET_SWITCHDEV=y
CONFIG_NET_L3_MASTER_DEV=y
# CONFIG_QRTR is not set
# CONFIG_NET_NCSI is not set
CONFIG_PCPU_DEV_REFCNT=y
CONFIG_MAX_SKB_FRAGS=17
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_SOCK_RX_QUEUE_MAPPING=y
CONFIG_XPS=y
CONFIG_CGROUP_NET_PRIO=y
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_STREAM_PARSER=y
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
CONFIG_NET_PKTGEN=m
CONFIG_NET_DROP_MONITOR=y
# end of Network testing
# end of Networking options

# CONFIG_HAMRADIO is not set
CONFIG_CAN=m
CONFIG_CAN_RAW=m
CONFIG_CAN_BCM=m
CONFIG_CAN_GW=m
# CONFIG_CAN_J1939 is not set
# CONFIG_CAN_ISOTP is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_STREAM_PARSER=y
# CONFIG_MCTP is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
# CONFIG_CFG80211_WEXT is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
CONFIG_RFKILL=m
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_GPIO is not set
CONFIG_NET_9P=y
CONFIG_NET_9P_FD=y
CONFIG_NET_9P_VIRTIO=y
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
CONFIG_CEPH_LIB=m
# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
CONFIG_NFC=m
# CONFIG_NFC_DIGITAL is not set
CONFIG_NFC_NCI=m
# CONFIG_NFC_NCI_SPI is not set
# CONFIG_NFC_NCI_UART is not set
# CONFIG_NFC_HCI is not set

#
# Near Field Communication (NFC) devices
#
CONFIG_NFC_VIRTUAL_NCI=m
# CONFIG_NFC_FDP is not set
# CONFIG_NFC_PN533_USB is not set
# CONFIG_NFC_PN533_I2C is not set
# CONFIG_NFC_MRVL_USB is not set
# CONFIG_NFC_ST_NCI_I2C is not set
# CONFIG_NFC_ST_NCI_SPI is not set
# CONFIG_NFC_NXP_NCI is not set
# CONFIG_NFC_S3FWRN5_I2C is not set
# end of Near Field Communication (NFC) devices

CONFIG_PSAMPLE=m
CONFIG_NET_IFE=m
CONFIG_LWTUNNEL=y
CONFIG_LWTUNNEL_BPF=y
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_SOCK_VALIDATE_XMIT=y
CONFIG_NET_SELFTESTS=y
CONFIG_NET_SOCK_MSG=y
CONFIG_NET_DEVLINK=y
CONFIG_PAGE_POOL=y
# CONFIG_PAGE_POOL_STATS is not set
CONFIG_FAILOVER=m
CONFIG_ETHTOOL_NETLINK=y

#
# Device Drivers
#
CONFIG_HAVE_EISA=y
# CONFIG_EISA is not set
CONFIG_HAVE_PCI=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
CONFIG_PCIEAER_INJECT=m
CONFIG_PCIE_ECRC=y
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
CONFIG_PCIE_DPC=y
# CONFIG_PCIE_PTM is not set
# CONFIG_PCIE_EDR is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
CONFIG_PCI_STUB=y
CONFIG_PCI_PF_STUB=m
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
# CONFIG_PCI_P2PDMA is not set
CONFIG_PCI_LABEL=y
CONFIG_PCI_HYPERV=m
# CONFIG_PCIE_BUS_TUNE_OFF is not set
CONFIG_PCIE_BUS_DEFAULT=y
# CONFIG_PCIE_BUS_SAFE is not set
# CONFIG_PCIE_BUS_PERFORMANCE is not set
# CONFIG_PCIE_BUS_PEER2PEER is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=64
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_ACPI=y
CONFIG_HOTPLUG_PCI_ACPI_IBM=m
# CONFIG_HOTPLUG_PCI_CPCI is not set
CONFIG_HOTPLUG_PCI_SHPC=y

#
# PCI controller drivers
#
CONFIG_VMD=y
CONFIG_PCI_HYPERV_INTERFACE=m

#
# Cadence-based PCIe controllers
#
# end of Cadence-based PCIe controllers

#
# DesignWare-based PCIe controllers
#
# CONFIG_PCI_MESON is not set
# CONFIG_PCIE_DW_PLAT_HOST is not set
# end of DesignWare-based PCIe controllers

#
# Mobiveil-based PCIe controllers
#
# end of Mobiveil-based PCIe controllers
# end of PCI controller drivers

#
# PCI Endpoint
#
# CONFIG_PCI_ENDPOINT is not set
# end of PCI Endpoint

#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# end of PCI switch controller drivers

# CONFIG_CXL_BUS is not set
# CONFIG_PCCARD is not set
# CONFIG_RAPIDIO is not set

#
# Generic Driver Options
#
CONFIG_AUXILIARY_BUS=y
# CONFIG_UEVENT_HELPER is not set
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_DEVTMPFS_SAFE is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y

#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_FW_LOADER_DEBUG=y
CONFIG_FW_LOADER_PAGED_BUF=y
CONFIG_FW_LOADER_SYSFS=y
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
# CONFIG_FW_LOADER_COMPRESS is not set
CONFIG_FW_CACHE=y
CONFIG_FW_UPLOAD=y
# end of Firmware loader

CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
CONFIG_HMEM_REPORTING=y
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=m
CONFIG_REGMAP_SPI=m
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
# CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set
# end of Generic Driver Options

#
# Bus devices
#
# CONFIG_MHI_BUS is not set
# CONFIG_MHI_BUS_EP is not set
# end of Bus devices

CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y

#
# Firmware Drivers
#

#
# ARM System Control and Management Interface Protocol
#
# end of ARM System Control and Management Interface Protocol

CONFIG_EDD=m
# CONFIG_EDD_OFF is not set
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_DMIID=y
CONFIG_DMI_SYSFS=y
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
# CONFIG_ISCSI_IBFT is not set
CONFIG_FW_CFG_SYSFS=y
# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
CONFIG_SYSFB=y
# CONFIG_SYSFB_SIMPLEFB is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_ESRT=y
CONFIG_EFI_VARS_PSTORE=y
CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
CONFIG_EFI_SOFT_RESERVE=y
CONFIG_EFI_DXE_MEM_ATTRIBUTES=y
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_APPLE_PROPERTIES is not set
# CONFIG_RESET_ATTACK_MITIGATION is not set
# CONFIG_EFI_RCI2_TABLE is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
CONFIG_EFI_EARLYCON=y
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
# CONFIG_EFI_DISABLE_RUNTIME is not set
# CONFIG_EFI_COCO_SECRET is not set
CONFIG_UNACCEPTED_MEMORY=y
# end of EFI (Extensible Firmware Interface) Support

CONFIG_UEFI_CPER=y
CONFIG_UEFI_CPER_X86=y

#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers

# CONFIG_GNSS is not set
# CONFIG_MTD is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
# CONFIG_PARPORT_PC_FIFO is not set
# CONFIG_PARPORT_PC_SUPERIO is not set
CONFIG_PARPORT_1284=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_NULL_BLK=m
# CONFIG_BLK_DEV_FD is not set
CONFIG_CDROM=m
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
CONFIG_ZRAM=m
CONFIG_ZRAM_DEF_COMP_LZORLE=y
# CONFIG_ZRAM_DEF_COMP_LZO is not set
CONFIG_ZRAM_DEF_COMP="lzo-rle"
CONFIG_ZRAM_WRITEBACK=y
# CONFIG_ZRAM_MEMORY_TRACKING is not set
# CONFIG_ZRAM_MULTI_COMP is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
# CONFIG_BLK_DEV_DRBD is not set
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=16384
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=m
CONFIG_BLK_DEV_RBD=m
# CONFIG_BLK_DEV_UBLK is not set

#
# NVME Support
#
CONFIG_NVME_CORE=m
CONFIG_BLK_DEV_NVME=m
CONFIG_NVME_MULTIPATH=y
# CONFIG_NVME_VERBOSE_ERRORS is not set
# CONFIG_NVME_HWMON is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TCP is not set
# CONFIG_NVME_AUTH is not set
# CONFIG_NVME_TARGET is not set
# end of NVME Support

#
# Misc devices
#
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
CONFIG_TIFM_CORE=m
CONFIG_TIFM_7XX1=m
# CONFIG_ICS932S401 is not set
CONFIG_ENCLOSURE_SERVICES=m
# CONFIG_SGI_XP is not set
CONFIG_HP_ILO=m
# CONFIG_SGI_GRU is not set
CONFIG_APDS9802ALS=m
CONFIG_ISL29003=m
CONFIG_ISL29020=m
CONFIG_SENSORS_TSL2550=m
CONFIG_SENSORS_BH1770=m
CONFIG_SENSORS_APDS990X=m
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_LATTICE_ECP3_CONFIG is not set
# CONFIG_SRAM is not set
# CONFIG_DW_XDATA_PCIE is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_XILINX_SDFEC is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_AT25 is not set
CONFIG_EEPROM_LEGACY=m
CONFIG_EEPROM_MAX6875=m
CONFIG_EEPROM_93CX6=m
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# end of EEPROM support

# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline

# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=m
CONFIG_INTEL_MEI_ME=m
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_INTEL_MEI_GSC is not set
# CONFIG_INTEL_MEI_HDCP is not set
# CONFIG_INTEL_MEI_PXP is not set
# CONFIG_INTEL_MEI_GSC_PROXY is not set
# CONFIG_VMWARE_VMCI is not set
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_BCM_VK is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_MISC_RTSX_USB is not set
# CONFIG_UACCE is not set
CONFIG_PVPANIC=y
# CONFIG_PVPANIC_MMIO is not set
# CONFIG_PVPANIC_PCI is not set
# CONFIG_GP_PCI1XXXX is not set
# end of Misc devices

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
CONFIG_RAID_ATTRS=m
CONFIG_SCSI_COMMON=y
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_NETLINK=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
CONFIG_CHR_DEV_ST=m
CONFIG_BLK_DEV_SR=m
CONFIG_CHR_DEV_SG=m
CONFIG_BLK_DEV_BSG=y
CONFIG_CHR_DEV_SCH=m
CONFIG_SCSI_ENCLOSURE=m
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=m
CONFIG_SCSI_FC_ATTRS=m
CONFIG_SCSI_ISCSI_ATTRS=m
CONFIG_SCSI_SAS_ATTRS=m
CONFIG_SCSI_SAS_LIBSAS=m
CONFIG_SCSI_SAS_ATA=y
CONFIG_SCSI_SAS_HOST_SMP=y
CONFIG_SCSI_SRP_ATTRS=m
# end of SCSI Transports

CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
CONFIG_MEGARAID_SAS=m
CONFIG_SCSI_MPT3SAS=m
CONFIG_SCSI_MPT2SAS_MAX_SGE=128
CONFIG_SCSI_MPT3SAS_MAX_SGE=128
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_MPI3MR is not set
# CONFIG_SCSI_SMARTPQI is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_MYRB is not set
# CONFIG_SCSI_MYRS is not set
# CONFIG_VMWARE_PVSCSI is not set
CONFIG_HYPERV_STORAGE=m
# CONFIG_LIBFC is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_FDOMAIN_PCI is not set
CONFIG_SCSI_ISCI=m
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
CONFIG_SCSI_DEBUG=m
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_BFA_FC is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_CHELSIO_FCOE is not set
CONFIG_SCSI_DH=y
CONFIG_SCSI_DH_RDAC=y
CONFIG_SCSI_DH_HP_SW=y
CONFIG_SCSI_DH_EMC=y
CONFIG_SCSI_DH_ALUA=y
# end of SCSI device support

CONFIG_ATA=m
CONFIG_SATA_HOST=y
CONFIG_PATA_TIMINGS=y
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_FORCE=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=m
CONFIG_SATA_MOBILE_LPM_POLICY=0
CONFIG_SATA_AHCI_PLATFORM=m
# CONFIG_AHCI_DWC is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=m
# CONFIG_SATA_DWC is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_RZ1000 is not set
# CONFIG_PATA_PARPORT is not set

#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
CONFIG_ATA_GENERIC=m
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID456=m
# CONFIG_MD_MULTIPATH is not set
CONFIG_MD_FAULTY=m
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=m
CONFIG_DM_DEBUG=y
CONFIG_DM_BUFIO=m
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
CONFIG_DM_BIO_PRISON=m
CONFIG_DM_PERSISTENT_DATA=m
# CONFIG_DM_UNSTRIPED is not set
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_THIN_PROVISIONING=m
CONFIG_DM_CACHE=m
CONFIG_DM_CACHE_SMQ=m
CONFIG_DM_WRITECACHE=m
# CONFIG_DM_EBS is not set
CONFIG_DM_ERA=m
# CONFIG_DM_CLONE is not set
CONFIG_DM_MIRROR=m
CONFIG_DM_LOG_USERSPACE=m
CONFIG_DM_RAID=m
CONFIG_DM_ZERO=m
CONFIG_DM_MULTIPATH=m
CONFIG_DM_MULTIPATH_QL=m
CONFIG_DM_MULTIPATH_ST=m
# CONFIG_DM_MULTIPATH_HST is not set
# CONFIG_DM_MULTIPATH_IOA is not set
CONFIG_DM_DELAY=m
# CONFIG_DM_DUST is not set
CONFIG_DM_UEVENT=y
CONFIG_DM_FLAKEY=m
CONFIG_DM_VERITY=m
# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
# CONFIG_DM_VERITY_FEC is not set
CONFIG_DM_SWITCH=m
CONFIG_DM_LOG_WRITES=m
CONFIG_DM_INTEGRITY=m
CONFIG_DM_AUDIT=y
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
CONFIG_FIREWIRE=m
CONFIG_FIREWIRE_OHCI=m
CONFIG_FIREWIRE_SBP2=m
CONFIG_FIREWIRE_NET=m
# CONFIG_FIREWIRE_NOSY is not set
# end of IEEE 1394 (FireWire) support

CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
CONFIG_BONDING=m
CONFIG_DUMMY=m
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
CONFIG_IFB=m
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_IPVLAN is not set
CONFIG_VXLAN=y
CONFIG_GENEVE=y
CONFIG_BAREUDP=m
# CONFIG_GTP is not set
CONFIG_AMT=m
CONFIG_MACSEC=y
CONFIG_NETCONSOLE=m
CONFIG_NETCONSOLE_DYNAMIC=y
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_TUN=m
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=m
CONFIG_VIRTIO_NET=m
# CONFIG_NLMON is not set
CONFIG_NET_VRF=y
# CONFIG_VSOCKMON is not set
# CONFIG_ARCNET is not set
CONFIG_ETHERNET=y
CONFIG_MDIO=y
# CONFIG_NET_VENDOR_3COM is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
# CONFIG_NET_VENDOR_AMD is not set
CONFIG_NET_VENDOR_AQUANTIA=y
# CONFIG_AQTION is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ASIX=y
# CONFIG_SPI_AX88796C is not set
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
# CONFIG_CX_ECAT is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
# CONFIG_SYSTEMPORT is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
CONFIG_CAVIUM_PTP=y
# CONFIG_LIQUIDIO is not set
# CONFIG_LIQUIDIO_VF is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
CONFIG_NET_VENDOR_CORTINA=y
CONFIG_NET_VENDOR_DAVICOM=y
# CONFIG_DM9051 is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_NET_TULIP is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_ENGLEDER=y
# CONFIG_TSNEP is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_FUNGIBLE=y
# CONFIG_FUN_ETH is not set
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HUAWEI=y
# CONFIG_HINIC is not set
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
CONFIG_IGB=y
CONFIG_IGB_HWMON=y
# CONFIG_IGBVF is not set
CONFIG_IXGBE=y
CONFIG_IXGBE_HWMON=y
# CONFIG_IXGBE_DCB is not set
# CONFIG_IXGBE_IPSEC is not set
# CONFIG_IXGBEVF is not set
CONFIG_I40E=y
# CONFIG_I40E_DCB is not set
# CONFIG_I40EVF is not set
# CONFIG_ICE is not set
# CONFIG_FM10K is not set
CONFIG_IGC=y
# CONFIG_JME is not set
CONFIG_NET_VENDOR_ADI=y
# CONFIG_ADIN1110 is not set
CONFIG_NET_VENDOR_LITEX=y
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_OCTEON_EP is not set
# CONFIG_PRESTERA is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
# CONFIG_ENCX24J600 is not set
# CONFIG_LAN743X is not set
# CONFIG_VCAP is not set
CONFIG_NET_VENDOR_MICROSEMI=y
CONFIG_NET_VENDOR_MICROSOFT=y
# CONFIG_MICROSOFT_MANA is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NI=y
# CONFIG_NI_XGE_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETERION=y
# CONFIG_S2IO is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_VENDOR_PACKET_ENGINES=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_PENSANDO=y
# CONFIG_IONIC is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
CONFIG_R8169=y
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
# CONFIG_ROCKER is not set
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
CONFIG_NET_VENDOR_SOLARFLARE=y
# CONFIG_SFC is not set
# CONFIG_SFC_FALCON is not set
# CONFIG_SFC_SIENA is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_SOCIONEXT=y
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VERTEXCOM=y
# CONFIG_MSE102X is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WANGXUN=y
# CONFIG_NGBE is not set
# CONFIG_TXGBE is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_EMACLITE is not set
# CONFIG_XILINX_AXI_EMAC is not set
# CONFIG_XILINX_LL_TEMAC is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLINK=y
CONFIG_PHYLIB=y
CONFIG_SWPHY=y
# CONFIG_LED_TRIGGER_PHY is not set
CONFIG_FIXED_PHY=y
# CONFIG_SFP is not set

#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_ADIN_PHY is not set
# CONFIG_ADIN1100_PHY is not set
# CONFIG_AQUANTIA_PHY is not set
CONFIG_AX88796B_PHY=y
# CONFIG_BROADCOM_PHY is not set
# CONFIG_BCM54140_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
# CONFIG_BCM84881_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_CORTINA_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_INTEL_XWAY_PHY is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_MARVELL_10G_PHY is not set
# CONFIG_MARVELL_88X2222_PHY is not set
# CONFIG_MAXLINEAR_GPHY is not set
# CONFIG_MEDIATEK_GE_PHY is not set
# CONFIG_MICREL_PHY is not set
# CONFIG_MICROCHIP_T1S_PHY is not set
# CONFIG_MICROCHIP_PHY is not set
# CONFIG_MICROCHIP_T1_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
# CONFIG_MOTORCOMM_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_NXP_CBTX_PHY is not set
# CONFIG_NXP_C45_TJA11XX_PHY is not set
# CONFIG_NXP_TJA11XX_PHY is not set
# CONFIG_NCN26000_PHY is not set
# CONFIG_QSEMI_PHY is not set
CONFIG_REALTEK_PHY=y
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_TERANETICS_PHY is not set
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83TC811_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_DP83869_PHY is not set
# CONFIG_DP83TD510_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PSE_CONTROLLER is not set
# CONFIG_CAN_DEV is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
CONFIG_FWNODE_MDIO=y
CONFIG_ACPI_MDIO=y
CONFIG_MDIO_DEVRES=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_MDIO_BCM_UNIMAC is not set
# CONFIG_MDIO_MVUSB is not set
# CONFIG_MDIO_THUNDER is not set

#
# MDIO Multiplexers
#

#
# PCS device drivers
#
# end of PCS device drivers

# CONFIG_PLIP is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
CONFIG_USB_RTL8152=y
# CONFIG_USB_LAN78XX is not set
CONFIG_USB_USBNET=y
CONFIG_USB_NET_AX8817X=y
CONFIG_USB_NET_AX88179_178A=y
# CONFIG_USB_NET_CDCETHER is not set
# CONFIG_USB_NET_CDC_EEM is not set
# CONFIG_USB_NET_CDC_NCM is not set
# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
# CONFIG_USB_NET_CDC_MBIM is not set
# CONFIG_USB_NET_DM9601 is not set
# CONFIG_USB_NET_SR9700 is not set
# CONFIG_USB_NET_SR9800 is not set
# CONFIG_USB_NET_SMSC75XX is not set
# CONFIG_USB_NET_SMSC95XX is not set
# CONFIG_USB_NET_GL620A is not set
# CONFIG_USB_NET_NET1080 is not set
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_MCS7830 is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
# CONFIG_USB_NET_ZAURUS is not set
# CONFIG_USB_NET_CX82310_ETH is not set
# CONFIG_USB_NET_KALMIA is not set
# CONFIG_USB_NET_QMI_WWAN is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_NET_INT51X1 is not set
# CONFIG_USB_IPHETH is not set
# CONFIG_USB_SIERRA_NET is not set
# CONFIG_USB_NET_CH9200 is not set
# CONFIG_USB_NET_AQC111 is not set
# CONFIG_WLAN is not set
# CONFIG_WAN is not set

#
# Wireless WAN
#
# CONFIG_WWAN is not set
# end of Wireless WAN

# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
CONFIG_HYPERV_NET=y
CONFIG_NETDEVSIM=m
CONFIG_NET_FAILOVER=m
# CONFIG_ISDN is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
CONFIG_INPUT_FF_MEMLESS=m
CONFIG_INPUT_SPARSEKMAP=m
# CONFIG_INPUT_MATRIXKMAP is not set
CONFIG_INPUT_VIVALDIFMAP=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
# CONFIG_KEYBOARD_APPLESPI is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1050 is not set
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_CYPRESS_SF is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y
CONFIG_MOUSE_PS2_SENTELIC=y
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
CONFIG_MOUSE_PS2_VMMOUSE=y
CONFIG_MOUSE_PS2_SMBUS=y
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
CONFIG_MOUSE_CYAPA=m
CONFIG_MOUSE_ELAN_I2C=m
CONFIG_MOUSE_ELAN_I2C_I2C=y
CONFIG_MOUSE_ELAN_I2C_SMBUS=y
CONFIG_MOUSE_VSXXXAA=m
# CONFIG_MOUSE_GPIO is not set
CONFIG_MOUSE_SYNAPTICS_I2C=m
# CONFIG_MOUSE_SYNAPTICS_USB is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
CONFIG_RMI4_CORE=m
CONFIG_RMI4_I2C=m
CONFIG_RMI4_SPI=m
CONFIG_RMI4_SMB=m
CONFIG_RMI4_F03=y
CONFIG_RMI4_F03_SERIO=m
CONFIG_RMI4_2D_SENSOR=y
CONFIG_RMI4_F11=y
CONFIG_RMI4_F12=y
CONFIG_RMI4_F30=y
CONFIG_RMI4_F34=y
# CONFIG_RMI4_F3A is not set
CONFIG_RMI4_F55=y

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
CONFIG_SERIO_ALTERA_PS2=m
# CONFIG_SERIO_PS2MULT is not set
CONFIG_SERIO_ARC_PS2=m
CONFIG_HYPERV_KEYBOARD=m
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support

#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_LEGACY_TIOCSTI=y
CONFIG_LDISC_AUTOLOAD=y

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_16550A_VARIANTS is not set
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCILIB=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
# CONFIG_SERIAL_8250_PCI1XXXX is not set
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y
CONFIG_SERIAL_8250_DWLIB=y
CONFIG_SERIAL_8250_DW=y
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y
CONFIG_SERIAL_8250_PERICOM=y

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MAX3100 is not set
# CONFIG_SERIAL_MAX310X is not set
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_LANTIQ is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
CONFIG_SERIAL_ARC=m
CONFIG_SERIAL_ARC_NR_PORTS=1
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers

CONFIG_SERIAL_MCTRL_GPIO=y
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
CONFIG_SYNCLINK_GT=m
CONFIG_N_HDLC=m
CONFIG_N_GSM=m
CONFIG_NOZOMI=m
# CONFIG_NULL_TTY is not set
CONFIG_HVC_DRIVER=y
# CONFIG_SERIAL_DEV_BUS is not set
# CONFIG_TTY_PRINTK is not set
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_VIRTIO_CONSOLE=m
CONFIG_IPMI_HANDLER=m
CONFIG_IPMI_DMI_DECODE=y
CONFIG_IPMI_PLAT_DATA=y
CONFIG_IPMI_PANIC_EVENT=y
CONFIG_IPMI_PANIC_STRING=y
CONFIG_IPMI_DEVICE_INTERFACE=m
CONFIG_IPMI_SI=m
CONFIG_IPMI_SSIF=m
CONFIG_IPMI_WATCHDOG=m
CONFIG_IPMI_POWEROFF=m
CONFIG_HW_RANDOM=y
CONFIG_HW_RANDOM_TIMERIOMEM=m
CONFIG_HW_RANDOM_INTEL=m
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_BA431 is not set
CONFIG_HW_RANDOM_VIA=m
CONFIG_HW_RANDOM_VIRTIO=y
# CONFIG_HW_RANDOM_XIPHERA is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
CONFIG_DEVMEM=y
CONFIG_NVRAM=y
CONFIG_DEVPORT=y
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
# CONFIG_HPET_MMAP_DEFAULT is not set
CONFIG_HANGCHECK_TIMER=m
CONFIG_UV_MMTIMER=m
CONFIG_TCG_TPM=y
CONFIG_HW_RANDOM_TPM=y
CONFIG_TCG_TIS_CORE=y
CONFIG_TCG_TIS=y
# CONFIG_TCG_TIS_SPI is not set
# CONFIG_TCG_TIS_I2C is not set
# CONFIG_TCG_TIS_I2C_CR50 is not set
CONFIG_TCG_TIS_I2C_ATMEL=m
CONFIG_TCG_TIS_I2C_INFINEON=m
CONFIG_TCG_TIS_I2C_NUVOTON=m
CONFIG_TCG_NSC=m
CONFIG_TCG_ATMEL=m
CONFIG_TCG_INFINEON=m
CONFIG_TCG_CRB=y
# CONFIG_TCG_VTPM_PROXY is not set
# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
CONFIG_TELCLOCK=m
# CONFIG_XILLYBUS is not set
# CONFIG_XILLYUSB is not set
# end of Character devices

#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_MUX=m

#
# Multiplexer I2C Chip support
#
# CONFIG_I2C_MUX_GPIO is not set
# CONFIG_I2C_MUX_LTC4306 is not set
# CONFIG_I2C_MUX_PCA9541 is not set
# CONFIG_I2C_MUX_PCA954x is not set
# CONFIG_I2C_MUX_REG is not set
CONFIG_I2C_MUX_MLXCPLD=m
# end of Multiplexer I2C Chip support

CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=m
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_AMD_MP2 is not set
CONFIG_I2C_I801=m
CONFIG_I2C_ISCH=m
CONFIG_I2C_ISMT=m
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
CONFIG_I2C_NFORCE2_S4985=m
# CONFIG_I2C_NVIDIA_GPU is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
CONFIG_I2C_SIS96X=m
CONFIG_I2C_VIA=m
CONFIG_I2C_VIAPRO=m

#
# ACPI drivers
#
CONFIG_I2C_SCMI=m

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
CONFIG_I2C_DESIGNWARE_CORE=m
# CONFIG_I2C_DESIGNWARE_SLAVE is not set
CONFIG_I2C_DESIGNWARE_PLATFORM=m
CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
CONFIG_I2C_PCA_PLATFORM=m
CONFIG_I2C_SIMTEC=m
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_CP2615 is not set
CONFIG_I2C_PARPORT=m
# CONFIG_I2C_PCI1XXXX is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_MLXCPLD=m
# CONFIG_I2C_VIRTIO is not set
# end of I2C Hardware Bus support

CONFIG_I2C_STUB=m
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support

# CONFIG_I3C is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
# CONFIG_SPI_MEM is not set

#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_AXI_SPI_ENGINE is not set
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_BUTTERFLY is not set
# CONFIG_SPI_CADENCE is not set
# CONFIG_SPI_DESIGNWARE is not set
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_LM70_LLP is not set
# CONFIG_SPI_MICROCHIP_CORE is not set
# CONFIG_SPI_MICROCHIP_CORE_QSPI is not set
# CONFIG_SPI_LANTIQ_SSC is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PCI1XXXX is not set
# CONFIG_SPI_PXA2XX is not set
# CONFIG_SPI_SC18IS602 is not set
# CONFIG_SPI_SIFIVE is not set
# CONFIG_SPI_MXIC is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
# CONFIG_SPI_ZYNQMP_GQSPI is not set
# CONFIG_SPI_AMD is not set

#
# SPI Multiplexer support
#
# CONFIG_SPI_MUX is not set

#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
# CONFIG_SPI_LOOPBACK_TEST is not set
# CONFIG_SPI_TLE62X0 is not set
# CONFIG_SPI_SLAVE is not set
CONFIG_SPI_DYNAMIC=y
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set

#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
CONFIG_PPS_CLIENT_LDISC=m
CONFIG_PPS_CLIENT_PARPORT=m
CONFIG_PPS_CLIENT_GPIO=m

#
# PPS generators support
#

#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y
CONFIG_PTP_1588_CLOCK_OPTIONAL=y
# CONFIG_DP83640_PHY is not set
# CONFIG_PTP_1588_CLOCK_INES is not set
CONFIG_PTP_1588_CLOCK_KVM=m
# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
# CONFIG_PTP_1588_CLOCK_IDTCM is not set
# CONFIG_PTP_1588_CLOCK_VMW is not set
# end of PTP clock support

CONFIG_PINCTRL=y
# CONFIG_DEBUG_PINCTRL is not set
# CONFIG_PINCTRL_AMD is not set
# CONFIG_PINCTRL_CY8C95X0 is not set
# CONFIG_PINCTRL_MCP23S08 is not set
# CONFIG_PINCTRL_SX150X is not set

#
# Intel pinctrl drivers
#
# CONFIG_PINCTRL_BAYTRAIL is not set
# CONFIG_PINCTRL_CHERRYVIEW is not set
# CONFIG_PINCTRL_LYNXPOINT is not set
# CONFIG_PINCTRL_ALDERLAKE is not set
# CONFIG_PINCTRL_BROXTON is not set
# CONFIG_PINCTRL_CANNONLAKE is not set
# CONFIG_PINCTRL_CEDARFORK is not set
# CONFIG_PINCTRL_DENVERTON is not set
# CONFIG_PINCTRL_ELKHARTLAKE is not set
# CONFIG_PINCTRL_EMMITSBURG is not set
# CONFIG_PINCTRL_GEMINILAKE is not set
# CONFIG_PINCTRL_ICELAKE is not set
# CONFIG_PINCTRL_JASPERLAKE is not set
# CONFIG_PINCTRL_LAKEFIELD is not set
# CONFIG_PINCTRL_LEWISBURG is not set
# CONFIG_PINCTRL_METEORLAKE is not set
# CONFIG_PINCTRL_SUNRISEPOINT is not set
# CONFIG_PINCTRL_TIGERLAKE is not set
# end of Intel pinctrl drivers

#
# Renesas pinctrl drivers
#
# end of Renesas pinctrl drivers

CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_GPIO_ACPI=y
# CONFIG_DEBUG_GPIO is not set
CONFIG_GPIO_SYSFS=y
CONFIG_GPIO_CDEV=y
CONFIG_GPIO_CDEV_V1=y

#
# Memory mapped GPIO drivers
#
# CONFIG_GPIO_AMDPT is not set
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_EXAR is not set
# CONFIG_GPIO_GENERIC_PLATFORM is not set
CONFIG_GPIO_ICH=m
# CONFIG_GPIO_MB86S7X is not set
# CONFIG_GPIO_AMD_FCH is not set
# end of Memory mapped GPIO drivers

#
# Port-mapped I/O GPIO drivers
#
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_F7188X is not set
# CONFIG_GPIO_IT87 is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_SCH311X is not set
# CONFIG_GPIO_WINBOND is not set
# CONFIG_GPIO_WS16C48 is not set
# end of Port-mapped I/O GPIO drivers

#
# I2C GPIO expanders
#
# CONFIG_GPIO_FXL6408 is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCA9570 is not set
# CONFIG_GPIO_PCF857X is not set
# CONFIG_GPIO_TPIC2810 is not set
# end of I2C GPIO expanders

#
# MFD GPIO expanders
#
# CONFIG_GPIO_ELKHARTLAKE is not set
# end of MFD GPIO expanders

#
# PCI GPIO expanders
#
# CONFIG_GPIO_AMD8111 is not set
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_PCI_IDIO_16 is not set
# CONFIG_GPIO_PCIE_IDIO_24 is not set
# CONFIG_GPIO_RDC321X is not set
# end of PCI GPIO expanders

#
# SPI GPIO expanders
#
# CONFIG_GPIO_MAX3191X is not set
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_PISOSR is not set
# CONFIG_GPIO_XRA1403 is not set
# end of SPI GPIO expanders

#
# USB GPIO expanders
#
# end of USB GPIO expanders

#
# Virtual GPIO drivers
#
# CONFIG_GPIO_AGGREGATOR is not set
# CONFIG_GPIO_LATCH is not set
CONFIG_GPIO_MOCKUP=m
# CONFIG_GPIO_VIRTIO is not set
CONFIG_GPIO_SIM=m
# end of Virtual GPIO drivers

# CONFIG_W1 is not set
CONFIG_POWER_RESET=y
# CONFIG_POWER_RESET_RESTART is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_POWER_SUPPLY_HWMON=y
# CONFIG_IP5XXX_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_CW2015 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SAMSUNG_SDI is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_MANAGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
# CONFIG_CHARGER_LT3651 is not set
# CONFIG_CHARGER_LTC4162L is not set
# CONFIG_CHARGER_MAX77976 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ2515X is not set
# CONFIG_CHARGER_BQ25890 is not set
# CONFIG_CHARGER_BQ25980 is not set
# CONFIG_CHARGER_BQ256XX is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_BATTERY_GOLDFISH is not set
# CONFIG_BATTERY_RT5033 is not set
# CONFIG_CHARGER_RT9455 is not set
# CONFIG_CHARGER_BD99954 is not set
# CONFIG_BATTERY_UG3105 is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=m
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
CONFIG_SENSORS_ABITUGURU=m
CONFIG_SENSORS_ABITUGURU3=m
# CONFIG_SENSORS_AD7314 is not set
CONFIG_SENSORS_AD7414=m
CONFIG_SENSORS_AD7418=m
CONFIG_SENSORS_ADM1025=m
CONFIG_SENSORS_ADM1026=m
CONFIG_SENSORS_ADM1029=m
CONFIG_SENSORS_ADM1031=m
# CONFIG_SENSORS_ADM1177 is not set
CONFIG_SENSORS_ADM9240=m
CONFIG_SENSORS_ADT7X10=m
# CONFIG_SENSORS_ADT7310 is not set
CONFIG_SENSORS_ADT7410=m
CONFIG_SENSORS_ADT7411=m
CONFIG_SENSORS_ADT7462=m
CONFIG_SENSORS_ADT7470=m
CONFIG_SENSORS_ADT7475=m
# CONFIG_SENSORS_AHT10 is not set
# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set
# CONFIG_SENSORS_AS370 is not set
CONFIG_SENSORS_ASC7621=m
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
CONFIG_SENSORS_K8TEMP=m
CONFIG_SENSORS_APPLESMC=m
CONFIG_SENSORS_ASB100=m
CONFIG_SENSORS_ATXP1=m
# CONFIG_SENSORS_CORSAIR_CPRO is not set
# CONFIG_SENSORS_CORSAIR_PSU is not set
# CONFIG_SENSORS_DRIVETEMP is not set
CONFIG_SENSORS_DS620=m
CONFIG_SENSORS_DS1621=m
# CONFIG_SENSORS_DELL_SMM is not set
CONFIG_SENSORS_I5K_AMB=m
CONFIG_SENSORS_F71805F=m
CONFIG_SENSORS_F71882FG=m
CONFIG_SENSORS_F75375S=m
CONFIG_SENSORS_FSCHMD=m
# CONFIG_SENSORS_FTSTEUTATES is not set
CONFIG_SENSORS_GL518SM=m
CONFIG_SENSORS_GL520SM=m
CONFIG_SENSORS_G760A=m
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_HIH6130 is not set
CONFIG_SENSORS_IBMAEM=m
CONFIG_SENSORS_IBMPEX=m
CONFIG_SENSORS_I5500=m
CONFIG_SENSORS_CORETEMP=m
CONFIG_SENSORS_IT87=m
CONFIG_SENSORS_JC42=m
# CONFIG_SENSORS_POWR1220 is not set
CONFIG_SENSORS_LINEAGE=m
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2947_I2C is not set
# CONFIG_SENSORS_LTC2947_SPI is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC2992 is not set
CONFIG_SENSORS_LTC4151=m
CONFIG_SENSORS_LTC4215=m
# CONFIG_SENSORS_LTC4222 is not set
CONFIG_SENSORS_LTC4245=m
# CONFIG_SENSORS_LTC4260 is not set
CONFIG_SENSORS_LTC4261=m
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX127 is not set
CONFIG_SENSORS_MAX16065=m
CONFIG_SENSORS_MAX1619=m
CONFIG_SENSORS_MAX1668=m
CONFIG_SENSORS_MAX197=m
# CONFIG_SENSORS_MAX31722 is not set
# CONFIG_SENSORS_MAX31730 is not set
# CONFIG_SENSORS_MAX31760 is not set
# CONFIG_MAX31827 is not set
# CONFIG_SENSORS_MAX6620 is not set
# CONFIG_SENSORS_MAX6621 is not set
CONFIG_SENSORS_MAX6639=m
CONFIG_SENSORS_MAX6650=m
CONFIG_SENSORS_MAX6697=m
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MC34VR500 is not set
CONFIG_SENSORS_MCP3021=m
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_TPS23861 is not set
# CONFIG_SENSORS_MR75203 is not set
# CONFIG_SENSORS_ADCXX is not set
CONFIG_SENSORS_LM63=m
# CONFIG_SENSORS_LM70 is not set
CONFIG_SENSORS_LM73=m
CONFIG_SENSORS_LM75=m
CONFIG_SENSORS_LM77=m
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM80=m
CONFIG_SENSORS_LM83=m
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_LM87=m
CONFIG_SENSORS_LM90=m
CONFIG_SENSORS_LM92=m
CONFIG_SENSORS_LM93=m
CONFIG_SENSORS_LM95234=m
CONFIG_SENSORS_LM95241=m
CONFIG_SENSORS_LM95245=m
CONFIG_SENSORS_PC87360=m
CONFIG_SENSORS_PC87427=m
# CONFIG_SENSORS_NCT6683 is not set
CONFIG_SENSORS_NCT6775_CORE=m
CONFIG_SENSORS_NCT6775=m
# CONFIG_SENSORS_NCT6775_I2C is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_NPCM7XX is not set
# CONFIG_SENSORS_NZXT_KRAKEN2 is not set
# CONFIG_SENSORS_NZXT_SMART2 is not set
# CONFIG_SENSORS_OCC_P8_I2C is not set
# CONFIG_SENSORS_OXP is not set
CONFIG_SENSORS_PCF8591=m
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SBTSI is not set
# CONFIG_SENSORS_SBRMI is not set
CONFIG_SENSORS_SHT15=m
CONFIG_SENSORS_SHT21=m
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHT4x is not set
# CONFIG_SENSORS_SHTC1 is not set
CONFIG_SENSORS_SIS5595=m
CONFIG_SENSORS_DME1737=m
CONFIG_SENSORS_EMC1403=m
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC2305 is not set
CONFIG_SENSORS_EMC6W201=m
CONFIG_SENSORS_SMSC47M1=m
CONFIG_SENSORS_SMSC47M192=m
CONFIG_SENSORS_SMSC47B397=m
CONFIG_SENSORS_SCH56XX_COMMON=m
CONFIG_SENSORS_SCH5627=m
CONFIG_SENSORS_SCH5636=m
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
CONFIG_SENSORS_ADS7828=m
# CONFIG_SENSORS_ADS7871 is not set
CONFIG_SENSORS_AMC6821=m
CONFIG_SENSORS_INA209=m
CONFIG_SENSORS_INA2XX=m
# CONFIG_SENSORS_INA238 is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_TC74 is not set
CONFIG_SENSORS_THMC50=m
CONFIG_SENSORS_TMP102=m
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
CONFIG_SENSORS_TMP401=m
CONFIG_SENSORS_TMP421=m
# CONFIG_SENSORS_TMP464 is not set
# CONFIG_SENSORS_TMP513 is not set
CONFIG_SENSORS_VIA_CPUTEMP=m
CONFIG_SENSORS_VIA686A=m
CONFIG_SENSORS_VT1211=m
CONFIG_SENSORS_VT8231=m
# CONFIG_SENSORS_W83773G is not set
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83791D=m
CONFIG_SENSORS_W83792D=m
CONFIG_SENSORS_W83793=m
CONFIG_SENSORS_W83795=m
# CONFIG_SENSORS_W83795_FANCTRL is not set
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83L786NG=m
CONFIG_SENSORS_W83627HF=m
CONFIG_SENSORS_W83627EHF=m
# CONFIG_SENSORS_XGENE is not set

#
# ACPI drivers
#
CONFIG_SENSORS_ACPI_POWER=m
CONFIG_SENSORS_ATK0110=m
# CONFIG_SENSORS_ASUS_WMI is not set
# CONFIG_SENSORS_ASUS_EC is not set
# CONFIG_SENSORS_HP_WMI is not set
CONFIG_THERMAL=y
# CONFIG_THERMAL_NETLINK is not set
# CONFIG_THERMAL_STATISTICS is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_ACPI=y
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_DEFAULT_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_FAIR_SHARE=y
CONFIG_THERMAL_GOV_STEP_WISE=y
CONFIG_THERMAL_GOV_BANG_BANG=y
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_EMULATION is not set

#
# Intel thermal drivers
#
CONFIG_INTEL_POWERCLAMP=m
CONFIG_X86_THERMAL_VECTOR=y
CONFIG_INTEL_TCC=y
CONFIG_X86_PKG_TEMP_THERMAL=m
# CONFIG_INTEL_SOC_DTS_THERMAL is not set

#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# end of ACPI INT340X thermal drivers

CONFIG_INTEL_PCH_THERMAL=m
# CONFIG_INTEL_TCC_COOLING is not set
# CONFIG_INTEL_HFI_THERMAL is not set
# end of Intel thermal drivers

CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
CONFIG_WATCHDOG_SYSFS=y
# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set

#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set

#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=m
CONFIG_WDAT_WDT=m
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ADVANTECH_EC_WDT is not set
CONFIG_ALIM1535_WDT=m
CONFIG_ALIM7101_WDT=m
# CONFIG_EBC_C384_WDT is not set
# CONFIG_EXAR_WDT is not set
CONFIG_F71808E_WDT=m
# CONFIG_SP5100_TCO is not set
CONFIG_SBC_FITPC2_WATCHDOG=m
# CONFIG_EUROTECH_WDT is not set
CONFIG_IB700_WDT=m
CONFIG_IBMASR=m
# CONFIG_WAFER_WDT is not set
CONFIG_I6300ESB_WDT=y
CONFIG_IE6XX_WDT=m
CONFIG_ITCO_WDT=y
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=m
CONFIG_IT87_WDT=m
CONFIG_HP_WATCHDOG=m
CONFIG_HPWDT_NMI_DECODING=y
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
CONFIG_NV_TCO=m
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
CONFIG_SMSC_SCH311X_WDT=m
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_TQMX86_WDT is not set
CONFIG_VIA_WDT=m
CONFIG_W83627HF_WDT=m
CONFIG_W83877F_WDT=m
CONFIG_W83977F_WDT=m
CONFIG_MACHZ_WDT=m
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
CONFIG_INTEL_MEI_WDT=m
# CONFIG_NI903X_WDT is not set
# CONFIG_NIC7018_WDT is not set
# CONFIG_MEN_A21_WDT is not set

#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=m
CONFIG_WDTPCI=m

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_AS3711 is not set
# CONFIG_MFD_SMPRO is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_AAT2870_CORE is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_MADERA is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_SPI is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_MFD_MP2629 is not set
# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
CONFIG_LPC_ICH=m
CONFIG_LPC_SCH=m
CONFIG_MFD_INTEL_LPSS=y
CONFIG_MFD_INTEL_LPSS_ACPI=y
CONFIG_MFD_INTEL_LPSS_PCI=y
# CONFIG_MFD_INTEL_PMC_BXT is not set
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77541 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6360 is not set
# CONFIG_MFD_MT6370 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_MFD_OCELOT is not set
# CONFIG_EZX_PCAP is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_SY7636A is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RT4831 is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RT5120 is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_SI476X_CORE is not set
CONFIG_MFD_SM501=m
CONFIG_MFD_SM501_GPIO=y
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS65912_SPI is not set
# CONFIG_MFD_TPS6594_I2C is not set
# CONFIG_MFD_TPS6594_SPI is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TQMX86 is not set
CONFIG_MFD_VX855=m
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM831X_SPI is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_ATC260X_I2C is not set
# CONFIG_MFD_INTEL_M10_BMC_SPI is not set
# end of Multifunction device drivers

# CONFIG_REGULATOR is not set
CONFIG_RC_CORE=y
CONFIG_BPF_LIRC_MODE2=y
CONFIG_LIRC=y
CONFIG_RC_MAP=m
CONFIG_RC_DECODERS=y
CONFIG_IR_IMON_DECODER=m
CONFIG_IR_JVC_DECODER=m
CONFIG_IR_MCE_KBD_DECODER=m
CONFIG_IR_NEC_DECODER=m
CONFIG_IR_RC5_DECODER=m
CONFIG_IR_RC6_DECODER=m
# CONFIG_IR_RCMM_DECODER is not set
CONFIG_IR_SANYO_DECODER=m
CONFIG_IR_SHARP_DECODER=m
CONFIG_IR_SONY_DECODER=m
# CONFIG_IR_XMP_DECODER is not set
CONFIG_RC_DEVICES=y
CONFIG_IR_ENE=m
CONFIG_IR_FINTEK=m
# CONFIG_IR_IGORPLUGUSB is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_IMON_RAW is not set
CONFIG_IR_ITE_CIR=m
# CONFIG_IR_MCEUSB is not set
CONFIG_IR_NUVOTON=m
# CONFIG_IR_REDRAT3 is not set
CONFIG_IR_SERIAL=m
CONFIG_IR_SERIAL_TRANSMITTER=y
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_TOY is not set
# CONFIG_IR_TTUSBIR is not set
CONFIG_IR_WINBOND_CIR=m
# CONFIG_RC_ATI_REMOTE is not set
CONFIG_RC_LOOPBACK=m
# CONFIG_RC_XBOX_DVD is not set

#
# CEC support
#
# CONFIG_MEDIA_CEC_SUPPORT is not set
# end of CEC support

CONFIG_MEDIA_SUPPORT=m
CONFIG_MEDIA_SUPPORT_FILTER=y
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y

#
# Media device types
#
# CONFIG_MEDIA_CAMERA_SUPPORT is not set
# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set
# CONFIG_MEDIA_RADIO_SUPPORT is not set
# CONFIG_MEDIA_SDR_SUPPORT is not set
# CONFIG_MEDIA_PLATFORM_SUPPORT is not set
# CONFIG_MEDIA_TEST_SUPPORT is not set
# end of Media device types

#
# Media drivers
#

#
# Drivers filtered as selected at 'Filter media drivers'
#

#
# Media drivers
#
# CONFIG_MEDIA_USB_SUPPORT is not set
# CONFIG_MEDIA_PCI_SUPPORT is not set
# end of Media drivers

#
# Media ancillary drivers
#
# end of Media ancillary drivers

#
# Graphics support
#
CONFIG_APERTURE_HELPERS=y
CONFIG_VIDEO_CMDLINE=y
CONFIG_VIDEO_NOMODESET=y
CONFIG_AGP=m
CONFIG_AGP_INTEL=m
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_INTEL_GTT=m
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=m
CONFIG_DRM_MIPI_DSI=y
CONFIG_DRM_KMS_HELPER=m
# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
# CONFIG_DRM_DEBUG_MODESET_LOCK is not set
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
CONFIG_DRM_DISPLAY_HELPER=m
CONFIG_DRM_DISPLAY_DP_HELPER=y
CONFIG_DRM_DISPLAY_HDCP_HELPER=y
CONFIG_DRM_DISPLAY_HDMI_HELPER=y
CONFIG_DRM_DP_AUX_CHARDEV=y
# CONFIG_DRM_DP_CEC is not set
CONFIG_DRM_TTM=m
CONFIG_DRM_BUDDY=m
CONFIG_DRM_VRAM_HELPER=m
CONFIG_DRM_TTM_HELPER=m
CONFIG_DRM_GEM_SHMEM_HELPER=m

#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
# end of I2C encoder or helper chips

#
# ARM devices
#
# end of ARM devices

# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set
# CONFIG_DRM_NOUVEAU is not set
CONFIG_DRM_I915=m
CONFIG_DRM_I915_FORCE_PROBE=""
CONFIG_DRM_I915_CAPTURE_ERROR=y
CONFIG_DRM_I915_COMPRESS_ERROR=y
CONFIG_DRM_I915_USERPTR=y
# CONFIG_DRM_I915_GVT_KVMGT is not set

#
# drm/i915 Debugging
#
# CONFIG_DRM_I915_WERROR is not set
# CONFIG_DRM_I915_DEBUG is not set
# CONFIG_DRM_I915_DEBUG_MMIO is not set
# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set
# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set
# CONFIG_DRM_I915_DEBUG_GUC is not set
# CONFIG_DRM_I915_SELFTEST is not set
# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set
# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set
# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set
# end of drm/i915 Debugging

#
# drm/i915 Profile Guided Optimisation
#
CONFIG_DRM_I915_REQUEST_TIMEOUT=20000
CONFIG_DRM_I915_FENCE_TIMEOUT=10000
CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250
CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500
CONFIG_DRM_I915_PREEMPT_TIMEOUT=640
CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE=7500
CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000
CONFIG_DRM_I915_STOP_TIMEOUT=100
CONFIG_DRM_I915_TIMESLICE_DURATION=1
# end of drm/i915 Profile Guided Optimisation

CONFIG_DRM_VGEM=m
# CONFIG_DRM_VKMS is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
CONFIG_DRM_AST=m
# CONFIG_DRM_MGAG200 is not set
CONFIG_DRM_QXL=m
CONFIG_DRM_VIRTIO_GPU=m
CONFIG_DRM_VIRTIO_GPU_KMS=y
CONFIG_DRM_PANEL=y

#
# Display Panels
#
# CONFIG_DRM_PANEL_AUO_A030JTN01 is not set
# CONFIG_DRM_PANEL_ORISETECH_OTA5601A is not set
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
# CONFIG_DRM_PANEL_WIDECHIPS_WS2401 is not set
# end of Display Panels

CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y

#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# end of Display Interface Bridges

# CONFIG_DRM_ETNAVIV is not set
CONFIG_DRM_BOCHS=m
CONFIG_DRM_CIRRUS_QEMU=m
# CONFIG_DRM_GM12U320 is not set
# CONFIG_DRM_PANEL_MIPI_DBI is not set
# CONFIG_DRM_SIMPLEDRM is not set
# CONFIG_TINYDRM_HX8357D is not set
# CONFIG_TINYDRM_ILI9163 is not set
# CONFIG_TINYDRM_ILI9225 is not set
# CONFIG_TINYDRM_ILI9341 is not set
# CONFIG_TINYDRM_ILI9486 is not set
# CONFIG_TINYDRM_MI0283QT is not set
# CONFIG_TINYDRM_REPAPER is not set
# CONFIG_TINYDRM_ST7586 is not set
# CONFIG_TINYDRM_ST7735R is not set
# CONFIG_DRM_VBOXVIDEO is not set
# CONFIG_DRM_GUD is not set
# CONFIG_DRM_SSD130X is not set
# CONFIG_DRM_HYPERV is not set
# CONFIG_DRM_LEGACY is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y

#
# Frame buffer Devices
#
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_IO_HELPERS=y
CONFIG_FB_SYS_HELPERS=y
CONFIG_FB_SYS_HELPERS_DEFERRED=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SM501 is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
CONFIG_FB_HYPERV=m
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SSD1307 is not set
# CONFIG_FB_SM712 is not set
# end of Frame buffer Devices

#
# Backlight & LCD device support
#
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_L4F00242T03 is not set
# CONFIG_LCD_LMS283GF05 is not set
# CONFIG_LCD_LTV350QV is not set
# CONFIG_LCD_ILI922X is not set
# CONFIG_LCD_ILI9320 is not set
# CONFIG_LCD_TDO24M is not set
# CONFIG_LCD_VGG2432A4 is not set
CONFIG_LCD_PLATFORM=m
# CONFIG_LCD_AMS369FG06 is not set
# CONFIG_LCD_LMS501KF03 is not set
# CONFIG_LCD_HX8357 is not set
# CONFIG_LCD_OTM3225A is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_KTD253 is not set
# CONFIG_BACKLIGHT_KTZ8866 is not set
# CONFIG_BACKLIGHT_PWM is not set
CONFIG_BACKLIGHT_APPLE=m
# CONFIG_BACKLIGHT_QCOM_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3630A is not set
# CONFIG_BACKLIGHT_LM3639 is not set
CONFIG_BACKLIGHT_LP855X=m
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# end of Backlight & LCD device support

CONFIG_HDMI=y

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
# end of Console display driver support

CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
# end of Graphics support

# CONFIG_DRM_ACCEL is not set
# CONFIG_SOUND is not set
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
CONFIG_HID_BATTERY_STRENGTH=y
CONFIG_HIDRAW=y
CONFIG_UHID=m
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=m
# CONFIG_HID_ACCUTOUCH is not set
CONFIG_HID_ACRUX=m
# CONFIG_HID_ACRUX_FF is not set
CONFIG_HID_APPLE=m
# CONFIG_HID_APPLEIR is not set
CONFIG_HID_ASUS=m
CONFIG_HID_AUREAL=m
CONFIG_HID_BELKIN=m
# CONFIG_HID_BETOP_FF is not set
# CONFIG_HID_BIGBEN_FF is not set
CONFIG_HID_CHERRY=m
# CONFIG_HID_CHICONY is not set
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
CONFIG_HID_CMEDIA=m
# CONFIG_HID_CP2112 is not set
# CONFIG_HID_CREATIVE_SB0540 is not set
CONFIG_HID_CYPRESS=m
CONFIG_HID_DRAGONRISE=m
# CONFIG_DRAGONRISE_FF is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELAN is not set
CONFIG_HID_ELECOM=m
# CONFIG_HID_ELO is not set
# CONFIG_HID_EVISION is not set
CONFIG_HID_EZKEY=m
# CONFIG_HID_FT260 is not set
CONFIG_HID_GEMBIRD=m
CONFIG_HID_GFRM=m
# CONFIG_HID_GLORIOUS is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_VIVALDI is not set
# CONFIG_HID_GT683R is not set
CONFIG_HID_KEYTOUCH=m
CONFIG_HID_KYE=m
# CONFIG_HID_UCLOGIC is not set
CONFIG_HID_WALTOP=m
# CONFIG_HID_VIEWSONIC is not set
# CONFIG_HID_VRC2 is not set
# CONFIG_HID_XIAOMI is not set
CONFIG_HID_GYRATION=m
CONFIG_HID_ICADE=m
CONFIG_HID_ITE=m
CONFIG_HID_JABRA=m
CONFIG_HID_TWINHAN=m
CONFIG_HID_KENSINGTON=m
CONFIG_HID_LCPOWER=m
CONFIG_HID_LED=m
CONFIG_HID_LENOVO=m
# CONFIG_HID_LETSKETCH is not set
CONFIG_HID_LOGITECH=m
CONFIG_HID_LOGITECH_DJ=m
CONFIG_HID_LOGITECH_HIDPP=m
# CONFIG_LOGITECH_FF is not set
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
# CONFIG_LOGIWHEELS_FF is not set
CONFIG_HID_MAGICMOUSE=y
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
# CONFIG_HID_MEGAWORLD_FF is not set
# CONFIG_HID_REDRAGON is not set
CONFIG_HID_MICROSOFT=m
CONFIG_HID_MONTEREY=m
CONFIG_HID_MULTITOUCH=m
# CONFIG_HID_NINTENDO is not set
CONFIG_HID_NTI=m
# CONFIG_HID_NTRIG is not set
CONFIG_HID_ORTEK=m
CONFIG_HID_PANTHERLORD=m
# CONFIG_PANTHERLORD_FF is not set
# CONFIG_HID_PENMOUNT is not set
CONFIG_HID_PETALYNX=m
CONFIG_HID_PICOLCD=m
CONFIG_HID_PICOLCD_FB=y
CONFIG_HID_PICOLCD_BACKLIGHT=y
CONFIG_HID_PICOLCD_LCD=y
CONFIG_HID_PICOLCD_LEDS=y
CONFIG_HID_PICOLCD_CIR=y
CONFIG_HID_PLANTRONICS=m
# CONFIG_HID_PXRC is not set
# CONFIG_HID_RAZER is not set
CONFIG_HID_PRIMAX=m
# CONFIG_HID_RETRODE is not set
# CONFIG_HID_ROCCAT is not set
CONFIG_HID_SAITEK=m
CONFIG_HID_SAMSUNG=m
# CONFIG_HID_SEMITEK is not set
# CONFIG_HID_SIGMAMICRO is not set
# CONFIG_HID_SONY is not set
CONFIG_HID_SPEEDLINK=m
# CONFIG_HID_STEAM is not set
CONFIG_HID_STEELSERIES=m
CONFIG_HID_SUNPLUS=m
CONFIG_HID_RMI=m
CONFIG_HID_GREENASIA=m
# CONFIG_GREENASIA_FF is not set
CONFIG_HID_HYPERV_MOUSE=m
CONFIG_HID_SMARTJOYPLUS=m
# CONFIG_SMARTJOYPLUS_FF is not set
CONFIG_HID_TIVO=m
CONFIG_HID_TOPSEED=m
# CONFIG_HID_TOPRE is not set
CONFIG_HID_THINGM=m
CONFIG_HID_THRUSTMASTER=m
# CONFIG_THRUSTMASTER_FF is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_U2FZERO is not set
# CONFIG_HID_WACOM is not set
CONFIG_HID_WIIMOTE=m
CONFIG_HID_XINMO=m
CONFIG_HID_ZEROPLUS=m
CONFIG_ZEROPLUS_FF=y
CONFIG_HID_ZYDACRON=m
CONFIG_HID_SENSOR_HUB=y
CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
CONFIG_HID_ALPS=m
# CONFIG_HID_MCP2221 is not set
# end of Special HID drivers

#
# HID-BPF support
#
# CONFIG_HID_BPF is not set
# end of HID-BPF support

#
# USB HID support
#
CONFIG_USB_HID=y
# CONFIG_HID_PID is not set
# CONFIG_USB_HIDDEV is not set
# end of USB HID support

CONFIG_I2C_HID=m
# CONFIG_I2C_HID_ACPI is not set
# CONFIG_I2C_HID_OF is not set

#
# Intel ISH HID support
#
# CONFIG_INTEL_ISH_HID is not set
# end of Intel ISH HID support

#
# AMD SFH HID Support
#
# CONFIG_AMD_SFH_HID is not set
# end of AMD SFH HID Support

CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_USB_CONN_GPIO is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_FEW_INIT_RETRIES is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_PRODUCTLIST is not set
# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set
CONFIG_USB_LEDS_TRIGGER_USBPORT=y
CONFIG_USB_AUTOSUSPEND_DELAY=2
CONFIG_USB_MON=y

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_DBGCAP is not set
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PCI_RENESAS is not set
# CONFIG_USB_XHCI_PLATFORM is not set
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_EHCI_FSL is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_MAX3421_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set

#
# USB dual-mode controller drivers
#
# CONFIG_USB_CDNS_SUPPORT is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set

#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_USS720 is not set
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_APPLE_MFI_FASTCHARGE is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set

#
# USB Physical Layer drivers
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
# end of USB Physical Layer drivers

# CONFIG_USB_GADGET is not set
CONFIG_TYPEC=y
# CONFIG_TYPEC_TCPM is not set
CONFIG_TYPEC_UCSI=y
# CONFIG_UCSI_CCG is not set
CONFIG_UCSI_ACPI=y
# CONFIG_UCSI_STM32G0 is not set
# CONFIG_TYPEC_TPS6598X is not set
# CONFIG_TYPEC_RT1719 is not set
# CONFIG_TYPEC_STUSB160X is not set
# CONFIG_TYPEC_WUSB3801 is not set

#
# USB Type-C Multiplexer/DeMultiplexer Switch support
#
# CONFIG_TYPEC_MUX_FSA4480 is not set
# CONFIG_TYPEC_MUX_GPIO_SBU is not set
# CONFIG_TYPEC_MUX_PI3USB30532 is not set
# CONFIG_TYPEC_MUX_NB7VPQ904M is not set
# end of USB Type-C Multiplexer/DeMultiplexer Switch support

#
# USB Type-C Alternate Mode drivers
#
# CONFIG_TYPEC_DP_ALTMODE is not set
# end of USB Type-C Alternate Mode drivers

# CONFIG_USB_ROLE_SWITCH is not set
CONFIG_MMC=m
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_MINORS=8
CONFIG_SDIO_UART=m
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_SDHCI=m
CONFIG_MMC_SDHCI_IO_ACCESSORS=y
CONFIG_MMC_SDHCI_PCI=m
CONFIG_MMC_RICOH_MMC=y
CONFIG_MMC_SDHCI_ACPI=m
CONFIG_MMC_SDHCI_PLTFM=m
# CONFIG_MMC_SDHCI_F_SDH30 is not set
# CONFIG_MMC_WBSD is not set
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SPI is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
# CONFIG_MMC_USDHI6ROL0 is not set
CONFIG_MMC_CQHCI=m
# CONFIG_MMC_HSQ is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MMC_MTK is not set
# CONFIG_MMC_SDHCI_XENON is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_CLASS_MULTICOLOR is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set

#
# LED drivers
#
# CONFIG_LEDS_APU is not set
# CONFIG_LEDS_AW200XX is not set
CONFIG_LEDS_LM3530=m
# CONFIG_LEDS_LM3532 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
CONFIG_LEDS_LP3944=m
# CONFIG_LEDS_LP3952 is not set
# CONFIG_LEDS_LP50XX is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_PWM is not set
# CONFIG_LEDS_BD2606MVV is not set
# CONFIG_LEDS_BD2802 is not set
CONFIG_LEDS_INTEL_SS4200=m
CONFIG_LEDS_LT3593=m
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set
# CONFIG_LEDS_IS31FL319X is not set

#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
CONFIG_LEDS_BLINKM=m
CONFIG_LEDS_MLXCPLD=m
# CONFIG_LEDS_MLXREG is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_NIC78BX is not set

#
# Flash and Torch LED drivers
#

#
# RGB LED drivers
#

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
CONFIG_LEDS_TRIGGER_TIMER=m
CONFIG_LEDS_TRIGGER_ONESHOT=m
# CONFIG_LEDS_TRIGGER_DISK is not set
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m

#
# iptables trigger is under Netfilter config (LED target)
#
CONFIG_LEDS_TRIGGER_TRANSIENT=m
CONFIG_LEDS_TRIGGER_CAMERA=m
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_LEDS_TRIGGER_NETDEV is not set
# CONFIG_LEDS_TRIGGER_PATTERN is not set
# CONFIG_LEDS_TRIGGER_AUDIO is not set
# CONFIG_LEDS_TRIGGER_TTY is not set

#
# Simple LED drivers
#
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_GHES=y
CONFIG_EDAC_E752X=m
CONFIG_EDAC_I82975X=m
CONFIG_EDAC_I3000=m
CONFIG_EDAC_I3200=m
CONFIG_EDAC_IE31200=m
CONFIG_EDAC_X38=m
CONFIG_EDAC_I5400=m
CONFIG_EDAC_I7CORE=m
CONFIG_EDAC_I5100=m
CONFIG_EDAC_I7300=m
CONFIG_EDAC_SBRIDGE=m
CONFIG_EDAC_SKX=m
# CONFIG_EDAC_I10NM is not set
CONFIG_EDAC_PND2=m
# CONFIG_EDAC_IGEN6 is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_SYSTOHC is not set
# CONFIG_RTC_DEBUG is not set
CONFIG_RTC_NVMEM=y

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABEOZ9 is not set
# CONFIG_RTC_DRV_ABX80X is not set
CONFIG_RTC_DRV_DS1307=m
# CONFIG_RTC_DRV_DS1307_CENTURY is not set
CONFIG_RTC_DRV_DS1374=m
# CONFIG_RTC_DRV_DS1374_WDT is not set
CONFIG_RTC_DRV_DS1672=m
CONFIG_RTC_DRV_MAX6900=m
CONFIG_RTC_DRV_RS5C372=m
CONFIG_RTC_DRV_ISL1208=m
CONFIG_RTC_DRV_ISL12022=m
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8523=m
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
CONFIG_RTC_DRV_PCF8563=m
CONFIG_RTC_DRV_PCF8583=m
CONFIG_RTC_DRV_M41T80=m
CONFIG_RTC_DRV_M41T80_WDT=y
CONFIG_RTC_DRV_BQ32K=m
# CONFIG_RTC_DRV_S35390A is not set
CONFIG_RTC_DRV_FM3130=m
# CONFIG_RTC_DRV_RX8010 is not set
CONFIG_RTC_DRV_RX8581=m
CONFIG_RTC_DRV_RX8025=m
CONFIG_RTC_DRV_EM3027=m
# CONFIG_RTC_DRV_RV3028 is not set
# CONFIG_RTC_DRV_RV3032 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_SD3078 is not set

#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1302 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6916 is not set
# CONFIG_RTC_DRV_R9701 is not set
CONFIG_RTC_DRV_RX4581=m
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_MCP795 is not set
CONFIG_RTC_I2C_AND_SPI=y

#
# SPI and I2C RTC drivers
#
CONFIG_RTC_DRV_DS3232=m
CONFIG_RTC_DRV_DS3232_HWMON=y
# CONFIG_RTC_DRV_PCF2127 is not set
CONFIG_RTC_DRV_RV3029C2=m
# CONFIG_RTC_DRV_RV3029_HWMON is not set
# CONFIG_RTC_DRV_RX6110 is not set

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
CONFIG_RTC_DRV_DS1286=m
CONFIG_RTC_DRV_DS1511=m
CONFIG_RTC_DRV_DS1553=m
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
CONFIG_RTC_DRV_DS1742=m
CONFIG_RTC_DRV_DS2404=m
CONFIG_RTC_DRV_STK17TA8=m
# CONFIG_RTC_DRV_M48T86 is not set
CONFIG_RTC_DRV_M48T35=m
CONFIG_RTC_DRV_M48T59=m
CONFIG_RTC_DRV_MSM6242=m
CONFIG_RTC_DRV_BQ4802=m
CONFIG_RTC_DRV_RP5C01=m

#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_FTRTC010 is not set

#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_GOLDFISH is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set

#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=y
CONFIG_DMA_ACPI=y
# CONFIG_ALTERA_MSGDMA is not set
CONFIG_INTEL_IDMA64=m
# CONFIG_INTEL_IDXD is not set
# CONFIG_INTEL_IDXD_COMPAT is not set
CONFIG_INTEL_IOATDMA=m
# CONFIG_PLX_DMA is not set
# CONFIG_XILINX_XDMA is not set
# CONFIG_AMD_PTDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
CONFIG_DW_DMAC_CORE=y
CONFIG_DW_DMAC=m
CONFIG_DW_DMAC_PCI=y
# CONFIG_DW_EDMA is not set
CONFIG_HSU_DMA=y
# CONFIG_SF_PDMA is not set
# CONFIG_INTEL_LDMA is not set

#
# DMA Clients
#
CONFIG_ASYNC_TX_DMA=y
CONFIG_DMATEST=m
CONFIG_DMA_ENGINE_RAID=y

#
# DMABUF options
#
CONFIG_SYNC_FILE=y
CONFIG_SW_SYNC=y
CONFIG_UDMABUF=y
# CONFIG_DMABUF_MOVE_NOTIFY is not set
# CONFIG_DMABUF_DEBUG is not set
# CONFIG_DMABUF_SELFTESTS is not set
CONFIG_DMABUF_HEAPS=y
# CONFIG_DMABUF_SYSFS_STATS is not set
CONFIG_DMABUF_HEAPS_SYSTEM=y
# CONFIG_DMABUF_HEAPS_CMA is not set
# end of DMABUF options

CONFIG_DCA=m
# CONFIG_AUXDISPLAY is not set
# CONFIG_PANEL is not set
# CONFIG_UIO is not set
CONFIG_VFIO=m
CONFIG_VFIO_CONTAINER=y
CONFIG_VFIO_IOMMU_TYPE1=m
CONFIG_VFIO_NOIOMMU=y
CONFIG_VFIO_VIRQFD=y

#
# VFIO support for PCI devices
#
CONFIG_VFIO_PCI_CORE=m
CONFIG_VFIO_PCI_MMAP=y
CONFIG_VFIO_PCI_INTX=y
CONFIG_VFIO_PCI=m
# CONFIG_VFIO_PCI_VGA is not set
# CONFIG_VFIO_PCI_IGD is not set
# end of VFIO support for PCI devices

CONFIG_IRQ_BYPASS_MANAGER=m
CONFIG_VIRT_DRIVERS=y
CONFIG_VMGENID=y
# CONFIG_VBOXGUEST is not set
# CONFIG_NITRO_ENCLAVES is not set
# CONFIG_EFI_SECRET is not set
CONFIG_TDX_GUEST_DRIVER=m
CONFIG_VIRTIO_ANCHOR=y
CONFIG_VIRTIO=y
CONFIG_VIRTIO_PCI_LIB=y
CONFIG_VIRTIO_PCI_LIB_LEGACY=y
CONFIG_VIRTIO_MENU=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_PMEM is not set
CONFIG_VIRTIO_BALLOON=m
# CONFIG_VIRTIO_MEM is not set
CONFIG_VIRTIO_INPUT=m
# CONFIG_VIRTIO_MMIO is not set
CONFIG_VIRTIO_DMA_SHARED_BUFFER=m
# CONFIG_VDPA is not set
CONFIG_VHOST_IOTLB=m
CONFIG_VHOST_TASK=y
CONFIG_VHOST=m
CONFIG_VHOST_MENU=y
CONFIG_VHOST_NET=m
CONFIG_VHOST_VSOCK=m
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set

#
# Microsoft Hyper-V guest support
#
CONFIG_HYPERV=y
# CONFIG_HYPERV_VTL_MODE is not set
CONFIG_HYPERV_TIMER=y
CONFIG_HYPERV_UTILS=m
CONFIG_HYPERV_BALLOON=m
# end of Microsoft Hyper-V guest support

# CONFIG_GREYBUS is not set
# CONFIG_COMEDI is not set
CONFIG_STAGING=y
# CONFIG_RTS5208 is not set
# CONFIG_VT6655 is not set
# CONFIG_FB_SM750 is not set
# CONFIG_STAGING_MEDIA is not set
# CONFIG_LTE_GDM724X is not set
# CONFIG_FB_TFT is not set
# CONFIG_KS7010 is not set
# CONFIG_PI433 is not set
# CONFIG_FIELDBUS_DEV is not set
# CONFIG_QLGE is not set
# CONFIG_VME_BUS is not set
# CONFIG_CHROME_PLATFORMS is not set
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_SURFACE_PLATFORMS=y
# CONFIG_SURFACE3_WMI is not set
# CONFIG_SURFACE_3_POWER_OPREGION is not set
# CONFIG_SURFACE_GPE is not set
# CONFIG_SURFACE_HOTPLUG is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_ACPI_WMI=m
CONFIG_WMI_BMOF=m
# CONFIG_HUAWEI_WMI is not set
# CONFIG_UV_SYSFS is not set
CONFIG_MXM_WMI=m
# CONFIG_NVIDIA_WMI_EC_BACKLIGHT is not set
# CONFIG_XIAOMI_WMI is not set
# CONFIG_GIGABYTE_WMI is not set
# CONFIG_YOGABOOK is not set
CONFIG_ACERHDF=m
# CONFIG_ACER_WIRELESS is not set
CONFIG_ACER_WMI=m
# CONFIG_ADV_SWBUTTON is not set
CONFIG_APPLE_GMUX=m
CONFIG_ASUS_LAPTOP=m
# CONFIG_ASUS_WIRELESS is not set
# CONFIG_ASUS_WMI is not set
# CONFIG_ASUS_TF103C_DOCK is not set
# CONFIG_MERAKI_MX100 is not set
CONFIG_EEEPC_LAPTOP=m
# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set
CONFIG_AMILO_RFKILL=m
CONFIG_FUJITSU_LAPTOP=m
CONFIG_FUJITSU_TABLET=m
# CONFIG_GPD_POCKET_FAN is not set
# CONFIG_X86_PLATFORM_DRIVERS_HP is not set
# CONFIG_WIRELESS_HOTKEY is not set
# CONFIG_IBM_RTL is not set
CONFIG_IDEAPAD_LAPTOP=m
# CONFIG_LENOVO_YMC is not set
CONFIG_SENSORS_HDAPS=m
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_THINKPAD_LMI is not set
# CONFIG_INTEL_ATOMISP2_PM is not set
# CONFIG_INTEL_IFS is not set
# CONFIG_INTEL_SAR_INT1092 is not set
CONFIG_INTEL_PMC_CORE=m

#
# Intel Speed Select Technology interface support
#
# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set
# end of Intel Speed Select Technology interface support

CONFIG_INTEL_WMI=y
# CONFIG_INTEL_WMI_SBL_FW_UPDATE is not set
CONFIG_INTEL_WMI_THUNDERBOLT=m

#
# Intel Uncore Frequency Control
#
# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set
# end of Intel Uncore Frequency Control

CONFIG_INTEL_HID_EVENT=m
CONFIG_INTEL_VBTN=m
# CONFIG_INTEL_INT0002_VGPIO is not set
CONFIG_INTEL_OAKTRAIL=m
# CONFIG_INTEL_PUNIT_IPC is not set
CONFIG_INTEL_RST=m
# CONFIG_INTEL_SMARTCONNECT is not set
CONFIG_INTEL_TURBO_MAX_3=y
# CONFIG_INTEL_VSEC is not set
# CONFIG_MSI_EC is not set
CONFIG_MSI_LAPTOP=m
CONFIG_MSI_WMI=m
# CONFIG_PCENGINES_APU2 is not set
# CONFIG_BARCO_P50_GPIO is not set
CONFIG_SAMSUNG_LAPTOP=m
CONFIG_SAMSUNG_Q10=m
CONFIG_TOSHIBA_BT_RFKILL=m
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_TOSHIBA_WMI is not set
CONFIG_ACPI_CMPC=m
CONFIG_COMPAL_LAPTOP=m
# CONFIG_LG_LAPTOP is not set
CONFIG_PANASONIC_LAPTOP=m
CONFIG_SONY_LAPTOP=m
CONFIG_SONYPI_COMPAT=y
# CONFIG_SYSTEM76_ACPI is not set
CONFIG_TOPSTAR_LAPTOP=m
# CONFIG_SERIAL_MULTI_INSTANTIATE is not set
CONFIG_MLX_PLATFORM=m
CONFIG_INTEL_IPS=m
# CONFIG_INTEL_SCU_PCI is not set
# CONFIG_INTEL_SCU_PLATFORM is not set
# CONFIG_SIEMENS_SIMATIC_IPC is not set
# CONFIG_WINMATE_FM07_KEYS is not set
CONFIG_P2SB=y
CONFIG_HAVE_CLK=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y
# CONFIG_LMK04832 is not set
# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_SI5341 is not set
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_SI544 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_PWM is not set
# CONFIG_XILINX_VCU is not set
# CONFIG_HWSPINLOCK is not set

#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# end of Clock Source drivers

CONFIG_MAILBOX=y
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
CONFIG_IOMMU_IOVA=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y

#
# Generic IOMMU Pagetable Support
#
# end of Generic IOMMU Pagetable Support

# CONFIG_IOMMU_DEBUGFS is not set
# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set
CONFIG_IOMMU_DEFAULT_DMA_LAZY=y
# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
CONFIG_IOMMU_DMA=y
# CONFIG_AMD_IOMMU is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y
CONFIG_INTEL_IOMMU_PERF_EVENTS=y
CONFIG_IOMMUFD=m
CONFIG_IOMMUFD_TEST=y
CONFIG_IRQ_REMAP=y
CONFIG_HYPERV_IOMMU=y
# CONFIG_VIRTIO_IOMMU is not set

#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers

#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers

# CONFIG_SOUNDWIRE is not set

#
# SOC (System On Chip) specific Drivers
#

#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers

#
# Broadcom SoC drivers
#
# end of Broadcom SoC drivers

#
# NXP/Freescale QorIQ SoC drivers
#
# end of NXP/Freescale QorIQ SoC drivers

#
# fujitsu SoC drivers
#
# end of fujitsu SoC drivers

#
# i.MX SoC drivers
#
# end of i.MX SoC drivers

#
# Enable LiteX SoC Builder specific drivers
#
# end of Enable LiteX SoC Builder specific drivers

# CONFIG_WPCM450_SOC is not set

#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers

# CONFIG_SOC_TI is not set

#
# Xilinx SoC drivers
#
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers

# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
CONFIG_NTB=m
# CONFIG_NTB_MSI is not set
# CONFIG_NTB_AMD is not set
# CONFIG_NTB_IDT is not set
# CONFIG_NTB_INTEL is not set
# CONFIG_NTB_EPF is not set
# CONFIG_NTB_SWITCHTEC is not set
# CONFIG_NTB_PINGPONG is not set
# CONFIG_NTB_TOOL is not set
# CONFIG_NTB_PERF is not set
# CONFIG_NTB_TRANSPORT is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_PWM_DEBUG is not set
# CONFIG_PWM_CLK is not set
# CONFIG_PWM_DWC is not set
CONFIG_PWM_LPSS=m
CONFIG_PWM_LPSS_PCI=m
CONFIG_PWM_LPSS_PLATFORM=m
# CONFIG_PWM_PCA9685 is not set

#
# IRQ chip support
#
# end of IRQ chip support

# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set

#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
# CONFIG_USB_LGM_PHY is not set
# CONFIG_PHY_CAN_TRANSCEIVER is not set

#
# PHY drivers for Broadcom platforms
#
# CONFIG_BCM_KONA_USB2_PHY is not set
# end of PHY drivers for Broadcom platforms

# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_PHY_INTEL_LGM_EMMC is not set
# end of PHY Subsystem

CONFIG_POWERCAP=y
CONFIG_INTEL_RAPL_CORE=m
CONFIG_INTEL_RAPL=m
CONFIG_IDLE_INJECT=y
# CONFIG_MCB is not set

#
# Performance monitor support
#
# end of Performance monitor support

CONFIG_RAS=y
# CONFIG_RAS_CEC is not set
# CONFIG_USB4 is not set

#
# Android
#
# CONFIG_ANDROID_BINDER_IPC is not set
# end of Android

CONFIG_LIBNVDIMM=m
CONFIG_BLK_DEV_PMEM=m
CONFIG_ND_CLAIM=y
CONFIG_ND_BTT=m
CONFIG_BTT=y
CONFIG_ND_PFN=m
CONFIG_NVDIMM_PFN=y
CONFIG_NVDIMM_DAX=y
CONFIG_NVDIMM_KEYS=y
# CONFIG_NVDIMM_SECURITY_TEST is not set
CONFIG_DAX=y
CONFIG_DEV_DAX=m
CONFIG_DEV_DAX_PMEM=m
CONFIG_DEV_DAX_HMEM=m
CONFIG_DEV_DAX_HMEM_DEVICES=y
CONFIG_DEV_DAX_KMEM=m
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y

#
# Layout Types
#
# CONFIG_NVMEM_LAYOUT_SL28_VPD is not set
# CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set
# end of Layout Types

# CONFIG_NVMEM_RMEM is not set

#
# HW tracing support
#
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# end of HW tracing support

# CONFIG_FPGA is not set
# CONFIG_SIOX is not set
# CONFIG_SLIMBUS is not set
# CONFIG_INTERCONNECT is not set
# CONFIG_COUNTER is not set
# CONFIG_MOST is not set
# CONFIG_PECI is not set
# CONFIG_HTE is not set
# end of Device Drivers

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_VALIDATE_FS_PARSER=y
CONFIG_FS_IOMAP=y
CONFIG_LEGACY_DIRECT_IO=y
CONFIG_EXT2_FS=m
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
CONFIG_XFS_SUPPORT_V4=y
CONFIG_XFS_SUPPORT_ASCII_CI=y
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
CONFIG_XFS_DRAIN_INTENTS=y
CONFIG_XFS_ONLINE_SCRUB=y
# CONFIG_XFS_ONLINE_REPAIR is not set
CONFIG_XFS_DEBUG=y
CONFIG_XFS_ASSERT_FATAL=y
# CONFIG_GFS2_FS is not set
CONFIG_OCFS2_FS=m
CONFIG_OCFS2_FS_O2CB=m
CONFIG_OCFS2_FS_STATS=y
CONFIG_OCFS2_DEBUG_MASKLOG=y
# CONFIG_OCFS2_DEBUG_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_BTRFS_FS_REF_VERIFY is not set
# CONFIG_NILFS2_FS is not set
CONFIG_F2FS_FS=m
CONFIG_F2FS_STAT_FS=y
CONFIG_F2FS_FS_XATTR=y
CONFIG_F2FS_FS_POSIX_ACL=y
# CONFIG_F2FS_FS_SECURITY is not set
# CONFIG_F2FS_CHECK_FS is not set
# CONFIG_F2FS_FAULT_INJECTION is not set
# CONFIG_F2FS_FS_COMPRESSION is not set
CONFIG_F2FS_IOSTAT=y
# CONFIG_F2FS_UNFAIR_RWSEM is not set
CONFIG_FS_DAX=y
CONFIG_FS_DAX_PMD=y
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_EXPORTFS_BLOCK_OPS=y
CONFIG_FILE_LOCKING=y
CONFIG_FS_ENCRYPTION=y
CONFIG_FS_ENCRYPTION_ALGS=y
# CONFIG_FS_VERITY is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_AUTOFS4_FS=y
CONFIG_AUTOFS_FS=y
CONFIG_FUSE_FS=m
CONFIG_CUSE=m
# CONFIG_VIRTIO_FS is not set
CONFIG_OVERLAY_FS=m
# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
# CONFIG_OVERLAY_FS_INDEX is not set
# CONFIG_OVERLAY_FS_XINO_AUTO is not set
# CONFIG_OVERLAY_FS_METACOPY is not set

#
# Caches
#
CONFIG_NETFS_SUPPORT=y
# CONFIG_NETFS_STATS is not set
# CONFIG_FSCACHE is not set
# end of Caches

#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
CONFIG_UDF_FS=m
# end of CD-ROM/DVD Filesystems

#
# DOS/FAT/EXFAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_EXFAT_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS3_FS is not set
# end of DOS/FAT/EXFAT/NT Filesystems

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_VMCORE_DEVICE_DUMP=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_PROC_PID_ARCH_STATUS=y
CONFIG_PROC_CPU_RESCTRL=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
# CONFIG_TMPFS_INODE64 is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y
# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set
CONFIG_MEMFD_CREATE=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=y
# end of Pseudo filesystems

CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
CONFIG_CRAMFS=m
CONFIG_CRAMFS_BLOCKDEV=y
CONFIG_SQUASHFS=m
# CONFIG_SQUASHFS_FILE_CACHE is not set
CONFIG_SQUASHFS_FILE_DIRECT=y
CONFIG_SQUASHFS_DECOMP_SINGLE=y
# CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT is not set
CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE=y
# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI is not set
# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU is not set
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
# CONFIG_SQUASHFS_LZ4 is not set
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_ZSTD is not set
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240
CONFIG_PSTORE_DEFLATE_COMPRESS=y
# CONFIG_PSTORE_LZO_COMPRESS is not set
# CONFIG_PSTORE_LZ4_COMPRESS is not set
# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
# CONFIG_PSTORE_842_COMPRESS is not set
# CONFIG_PSTORE_ZSTD_COMPRESS is not set
CONFIG_PSTORE_COMPRESS=y
CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
CONFIG_PSTORE_CONSOLE=y
CONFIG_PSTORE_PMSG=y
# CONFIG_PSTORE_FTRACE is not set
CONFIG_PSTORE_RAM=m
# CONFIG_PSTORE_BLK is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
# CONFIG_NFS_V2 is not set
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=m
# CONFIG_NFS_SWAP is not set
CONFIG_NFS_V4_1=y
CONFIG_NFS_V4_2=y
CONFIG_PNFS_FILE_LAYOUT=m
CONFIG_PNFS_BLOCK=m
CONFIG_PNFS_FLEXFILE_LAYOUT=m
CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
# CONFIG_NFS_V4_1_MIGRATION is not set
CONFIG_NFS_V4_SECURITY_LABEL=y
CONFIG_ROOT_NFS=y
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
CONFIG_NFS_DEBUG=y
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
# CONFIG_NFS_V4_2_READ_PLUS is not set
CONFIG_NFSD=m
# CONFIG_NFSD_V2 is not set
CONFIG_NFSD_V3_ACL=y
CONFIG_NFSD_V4=y
CONFIG_NFSD_PNFS=y
# CONFIG_NFSD_BLOCKLAYOUT is not set
CONFIG_NFSD_SCSILAYOUT=y
# CONFIG_NFSD_FLEXFILELAYOUT is not set
# CONFIG_NFSD_V4_2_INTER_SSC is not set
CONFIG_NFSD_V4_SECURITY_LABEL=y
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_NFS_V4_2_SSC_HELPER=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=m
CONFIG_SUNRPC_BACKCHANNEL=y
CONFIG_RPCSEC_GSS_KRB5=m
CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM=y
# CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_DES is not set
CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1=y
# CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA is not set
# CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2 is not set
CONFIG_SUNRPC_DEBUG=y
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=m
CONFIG_CIFS_STATS2=y
CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
CONFIG_CIFS_UPCALL=y
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
CONFIG_CIFS_DEBUG=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
CONFIG_CIFS_DFS_UPCALL=y
# CONFIG_CIFS_SWN_UPCALL is not set
# CONFIG_SMB_SERVER is not set
CONFIG_SMBFS=m
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=y
CONFIG_9P_FS_POSIX_ACL=y
CONFIG_9P_FS_SECURITY=y
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
CONFIG_NLS_CODEPAGE_863=m
CONFIG_NLS_CODEPAGE_864=m
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=m
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=m
CONFIG_NLS_CODEPAGE_1250=m
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=m
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=m
CONFIG_NLS_ISO8859_9=m
CONFIG_NLS_ISO8859_13=m
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=m
CONFIG_NLS_KOI8_R=m
CONFIG_NLS_KOI8_U=m
CONFIG_NLS_MAC_ROMAN=m
CONFIG_NLS_MAC_CELTIC=m
CONFIG_NLS_MAC_CENTEURO=m
CONFIG_NLS_MAC_CROATIAN=m
CONFIG_NLS_MAC_CYRILLIC=m
CONFIG_NLS_MAC_GAELIC=m
CONFIG_NLS_MAC_GREEK=m
CONFIG_NLS_MAC_ICELAND=m
CONFIG_NLS_MAC_INUIT=m
CONFIG_NLS_MAC_ROMANIAN=m
CONFIG_NLS_MAC_TURKISH=m
CONFIG_NLS_UTF8=m
# CONFIG_DLM is not set
# CONFIG_UNICODE is not set
CONFIG_IO_WQ=y
# end of File systems

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_REQUEST_CACHE is not set
CONFIG_PERSISTENT_KEYRINGS=y
CONFIG_TRUSTED_KEYS=y
CONFIG_TRUSTED_KEYS_TPM=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_USER_DECRYPTED_DATA is not set
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
CONFIG_SECURITY_PATH=y
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=65535
CONFIG_HARDENED_USERCOPY=y
CONFIG_FORTIFY_SOURCE=y
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
CONFIG_SECURITY_YAMA=y
# CONFIG_SECURITY_SAFESETID is not set
# CONFIG_SECURITY_LOCKDOWN_LSM is not set
CONFIG_SECURITY_LANDLOCK=y
CONFIG_INTEGRITY=y
CONFIG_INTEGRITY_SIGNATURE=y
CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
CONFIG_INTEGRITY_TRUSTED_KEYRING=y
# CONFIG_INTEGRITY_PLATFORM_KEYRING is not set
CONFIG_INTEGRITY_AUDIT=y
CONFIG_IMA=y
# CONFIG_IMA_KEXEC is not set
CONFIG_IMA_MEASURE_PCR_IDX=10
CONFIG_IMA_LSM_RULES=y
CONFIG_IMA_NG_TEMPLATE=y
# CONFIG_IMA_SIG_TEMPLATE is not set
CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng"
CONFIG_IMA_DEFAULT_HASH_SHA1=y
# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set
# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set
CONFIG_IMA_DEFAULT_HASH="sha1"
CONFIG_IMA_WRITE_POLICY=y
CONFIG_IMA_READ_POLICY=y
CONFIG_IMA_APPRAISE=y
CONFIG_IMA_ARCH_POLICY=y
# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set
CONFIG_IMA_APPRAISE_BOOTPARAM=y
# CONFIG_IMA_APPRAISE_MODSIG is not set
CONFIG_IMA_TRUSTED_KEYRING=y
# CONFIG_IMA_BLACKLIST_KEYRING is not set
# CONFIG_IMA_LOAD_X509 is not set
CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y
CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y
CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y
# CONFIG_IMA_DISABLE_HTABLE is not set
# CONFIG_EVM is not set
# CONFIG_DEFAULT_SECURITY_SELINUX is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,bpf"

#
# Kernel hardening options
#

#
# Memory initialization
#
CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y
# CONFIG_INIT_STACK_NONE is not set
# CONFIG_INIT_STACK_ALL_PATTERN is not set
CONFIG_INIT_STACK_ALL_ZERO=y
CONFIG_GCC_PLUGIN_STACKLEAK=y
# CONFIG_GCC_PLUGIN_STACKLEAK_VERBOSE is not set
CONFIG_STACKLEAK_TRACK_MIN_SIZE=100
# CONFIG_STACKLEAK_METRICS is not set
# CONFIG_STACKLEAK_RUNTIME_DISABLE is not set
CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
CONFIG_INIT_ON_FREE_DEFAULT_ON=y
CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y
# CONFIG_ZERO_CALL_USED_REGS is not set
# end of Memory initialization

CONFIG_RANDSTRUCT_NONE=y
# CONFIG_RANDSTRUCT_FULL is not set
# CONFIG_RANDSTRUCT_PERFORMANCE is not set
# end of Kernel hardening options
# end of Security options

CONFIG_XOR_BLOCKS=m
CONFIG_ASYNC_CORE=m
CONFIG_ASYNC_MEMCPY=m
CONFIG_ASYNC_XOR=m
CONFIG_ASYNC_PQ=m
CONFIG_ASYNC_RAID6_RECOV=m
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_KPP=m
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=m
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
CONFIG_CRYPTO_PCRYPT=m
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_AUTHENC=m
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_SIMD=y
CONFIG_CRYPTO_ENGINE=m
# end of Crypto core or helper

#
# Public-key cryptography
#
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=m
# CONFIG_CRYPTO_DH_RFC7919_GROUPS is not set
CONFIG_CRYPTO_ECC=m
CONFIG_CRYPTO_ECDH=m
# CONFIG_CRYPTO_ECDSA is not set
# CONFIG_CRYPTO_ECRDSA is not set
# CONFIG_CRYPTO_SM2 is not set
# CONFIG_CRYPTO_CURVE25519 is not set
# end of Public-key cryptography

#
# Block ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_TI is not set
CONFIG_CRYPTO_ANUBIS=m
# CONFIG_CRYPTO_ARIA is not set
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_BLOWFISH_COMMON=m
CONFIG_CRYPTO_CAMELLIA=m
CONFIG_CRYPTO_CAST_COMMON=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_DES=m
CONFIG_CRYPTO_FCRYPT=m
CONFIG_CRYPTO_KHAZAD=m
CONFIG_CRYPTO_SEED=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_SM4=y
CONFIG_CRYPTO_SM4_GENERIC=y
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m
# end of Block ciphers

#
# Length-preserving ciphers and modes
#
# CONFIG_CRYPTO_ADIANTUM is not set
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_CHACHA20=m
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CFB=y
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_HCTR2 is not set
# CONFIG_CRYPTO_KEYWRAP is not set
CONFIG_CRYPTO_LRW=m
# CONFIG_CRYPTO_OFB is not set
CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_XTS=m
# end of Length-preserving ciphers and modes

#
# AEAD (authenticated encryption with associated data) ciphers
#
# CONFIG_CRYPTO_AEGIS128 is not set
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_GENIV=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=m
CONFIG_CRYPTO_ESSIV=m
# end of AEAD (authenticated encryption with associated data) ciphers

#
# Hashes, digests, and MACs
#
CONFIG_CRYPTO_BLAKE2B=m
CONFIG_CRYPTO_CMAC=m
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=m
# CONFIG_CRYPTO_POLY1305 is not set
CONFIG_CRYPTO_RMD160=m
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_SHA3=y
# CONFIG_CRYPTO_SM3_GENERIC is not set
# CONFIG_CRYPTO_STREEBOG is not set
CONFIG_CRYPTO_VMAC=m
CONFIG_CRYPTO_WP512=m
CONFIG_CRYPTO_XCBC=m
CONFIG_CRYPTO_XXHASH=m
# end of Hashes, digests, and MACs

#
# CRCs (cyclic redundancy checks)
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32=m
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_CRC64_ROCKSOFT=m
# end of CRCs (cyclic redundancy checks)

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_842 is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
# CONFIG_CRYPTO_ZSTD is not set
# end of Compression

#
# Random number generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
CONFIG_CRYPTO_DRBG_HASH=y
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
# CONFIG_CRYPTO_JITTERENTROPY_TESTINTERFACE is not set
# end of Random number generation

#
# Userspace interface
#
CONFIG_CRYPTO_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=m
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_USER_API_RNG=y
# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set
CONFIG_CRYPTO_USER_API_AEAD=y
CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y
# CONFIG_CRYPTO_STATS is not set
# end of Userspace interface

CONFIG_CRYPTO_HASH_INFO=y

#
# Accelerated Cryptographic Algorithms for CPU (x86)
#
# CONFIG_CRYPTO_CURVE25519_X86 is not set
CONFIG_CRYPTO_AES_NI_INTEL=y
CONFIG_CRYPTO_BLOWFISH_X86_64=m
CONFIG_CRYPTO_CAMELLIA_X86_64=m
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m
CONFIG_CRYPTO_CAST5_AVX_X86_64=m
CONFIG_CRYPTO_CAST6_AVX_X86_64=m
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set
CONFIG_CRYPTO_TWOFISH_X86_64=m
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
# CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64 is not set
CONFIG_CRYPTO_CHACHA20_X86_64=m
# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set
# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set
# CONFIG_CRYPTO_BLAKE2S_X86 is not set
# CONFIG_CRYPTO_POLYVAL_CLMUL_NI is not set
# CONFIG_CRYPTO_POLY1305_X86_64 is not set
CONFIG_CRYPTO_SHA1_SSSE3=y
CONFIG_CRYPTO_SHA256_SSSE3=y
CONFIG_CRYPTO_SHA512_SSSE3=m
# CONFIG_CRYPTO_SM3_AVX_X86_64 is not set
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
CONFIG_CRYPTO_CRC32C_INTEL=m
CONFIG_CRYPTO_CRC32_PCLMUL=m
CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
# end of Accelerated Cryptographic Algorithms for CPU (x86)

CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=m
CONFIG_CRYPTO_DEV_PADLOCK_AES=m
CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
# CONFIG_CRYPTO_DEV_QAT_C62X is not set
# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
CONFIG_CRYPTO_DEV_VIRTIO=m
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
CONFIG_PKCS7_MESSAGE_PARSER=y
# CONFIG_PKCS7_TEST_KEY is not set
CONFIG_SIGNED_PE_FILE_VERIFICATION=y
# CONFIG_FIPS_SIGNATURE_SELFTEST is not set

#
# Certificates for signature checking
#
CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
CONFIG_MODULE_SIG_KEY_TYPE_RSA=y
# CONFIG_MODULE_SIG_KEY_TYPE_ECDSA is not set
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
CONFIG_SYSTEM_BLACKLIST_KEYRING=y
CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
# CONFIG_SYSTEM_REVOCATION_LIST is not set
# CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE is not set
# end of Certificates for signature checking

CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_RAID6_PQ_BENCHMARK=y
# CONFIG_PACKING is not set
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_CORDIC=m
CONFIG_PRIME_NUMBERS=m
CONFIG_RATIONAL=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_ARCH_USE_SYM_ANNOTATIONS=y

#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_UTILS=y
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_ARC4=m
CONFIG_CRYPTO_LIB_GF128MUL=y
CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y
CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m
CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m
# CONFIG_CRYPTO_LIB_CHACHA is not set
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_DES=m
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
# CONFIG_CRYPTO_LIB_POLY1305 is not set
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA1=y
CONFIG_CRYPTO_LIB_SHA256=y
# end of Crypto library routines

CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC64_ROCKSOFT=m
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
CONFIG_CRC64=m
# CONFIG_CRC4 is not set
CONFIG_CRC7=m
CONFIG_LIBCRC32C=m
CONFIG_CRC8=m
CONFIG_XXHASH=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMMON=y
CONFIG_ZSTD_COMPRESS=m
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
# CONFIG_XZ_DEC_MICROLZMA is not set
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_DECOMPRESS_ZSTD=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=m
CONFIG_REED_SOLOMON_ENC8=y
CONFIG_REED_SOLOMON_DEC8=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=m
CONFIG_TEXTSEARCH_BM=m
CONFIG_TEXTSEARCH_FSM=m
CONFIG_INTERVAL_TREE=y
CONFIG_INTERVAL_TREE_SPAN_ITER=y
CONFIG_XARRAY_MULTI=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DMA_OPS=y
CONFIG_NEED_SG_DMA_FLAGS=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y
CONFIG_SWIOTLB=y
CONFIG_DMA_CMA=y
# CONFIG_DMA_PERNUMA_CMA is not set

#
# Default contiguous memory area size:
#
CONFIG_CMA_SIZE_MBYTES=0
CONFIG_CMA_SIZE_SEL_MBYTES=y
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
# CONFIG_CMA_SIZE_SEL_MIN is not set
# CONFIG_CMA_SIZE_SEL_MAX is not set
CONFIG_CMA_ALIGNMENT=8
# CONFIG_DMA_API_DEBUG is not set
CONFIG_DMA_MAP_BENCHMARK=y
CONFIG_SGL_ALLOC=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPUMASK_OFFSTACK=y
# CONFIG_FORCE_NR_CPUS is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
CONFIG_IRQ_POLL=y
CONFIG_MPILIB=y
CONFIG_SIGNATURE=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_TIME_NS=y
CONFIG_FONT_SUPPORT=y
CONFIG_FONTS=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_7x14 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
CONFIG_FONT_MINI_4x6=y
# CONFIG_FONT_6x10 is not set
# CONFIG_FONT_10x18 is not set
# CONFIG_FONT_SUN8x16 is not set
# CONFIG_FONT_SUN12x22 is not set
# CONFIG_FONT_TER16x32 is not set
# CONFIG_FONT_6x8 is not set
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_MEMREGION=y
CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_ARCH_HAS_COPY_MC=y
CONFIG_ARCH_STACKWALK=y
CONFIG_STACKDEPOT=y
CONFIG_STACKDEPOT_ALWAYS_INIT=y
CONFIG_SBITMAP=y
# end of Library routines

CONFIG_ASN1_ENCODER=y

#
# Kernel hacking
#

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_PRINTK_CALLER=y
# CONFIG_STACKTRACE_BUILD_ID is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
CONFIG_DYNAMIC_DEBUG=y
CONFIG_DYNAMIC_DEBUG_CORE=y
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options

CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_MISC=y

#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
CONFIG_AS_HAS_NON_CONST_LEB128=y
# CONFIG_DEBUG_INFO_NONE is not set
CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y
# CONFIG_DEBUG_INFO_DWARF4 is not set
# CONFIG_DEBUG_INFO_DWARF5 is not set
# CONFIG_DEBUG_INFO_REDUCED is not set
CONFIG_DEBUG_INFO_COMPRESSED_NONE=y
# CONFIG_DEBUG_INFO_COMPRESSED_ZLIB is not set
# CONFIG_DEBUG_INFO_SPLIT is not set
CONFIG_DEBUG_INFO_BTF=y
CONFIG_PAHOLE_HAS_SPLIT_BTF=y
CONFIG_PAHOLE_HAS_LANG_EXCLUDE=y
CONFIG_DEBUG_INFO_BTF_MODULES=y
# CONFIG_MODULE_ALLOW_BTF_MISMATCH is not set
# CONFIG_GDB_SCRIPTS is not set
CONFIG_FRAME_WARN=2048
CONFIG_STRIP_ASM_SYMS=y
# CONFIG_READABLE_ASM is not set
# CONFIG_HEADERS_INSTALL is not set
CONFIG_DEBUG_SECTION_MISMATCH=y
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set
CONFIG_OBJTOOL=y
# CONFIG_VMLINUX_MAP is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# end of Compile-time checks and compiler options

#
# Generic Kernel Debugging Instruments
#
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
CONFIG_DEBUG_FS=y
CONFIG_DEBUG_FS_ALLOW_ALL=y
# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
# CONFIG_DEBUG_FS_ALLOW_NONE is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_UBSAN is not set
CONFIG_HAVE_ARCH_KCSAN=y
CONFIG_HAVE_KCSAN_COMPILER=y
# CONFIG_KCSAN is not set
# end of Generic Kernel Debugging Instruments

#
# Networking Debugging
#
# CONFIG_NET_DEV_REFCNT_TRACKER is not set
# CONFIG_NET_NS_REFCNT_TRACKER is not set
# CONFIG_DEBUG_NET is not set
# end of Networking Debugging

#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_SLUB_DEBUG=y
CONFIG_SLUB_DEBUG_ON=y
# CONFIG_PAGE_OWNER is not set
# CONFIG_PAGE_TABLE_CHECK is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_ARCH_HAS_DEBUG_WX=y
# CONFIG_DEBUG_WX is not set
CONFIG_GENERIC_PTDUMP=y
# CONFIG_PTDUMP_DEBUGFS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_PER_VMA_LOCK_STATS is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SHRINKER_DEBUG is not set
# CONFIG_DEBUG_STACK_USAGE is not set
CONFIG_SCHED_STACK_END_CHECK=y
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VM_PGTABLE is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
CONFIG_CC_HAS_KASAN_GENERIC=y
CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
# CONFIG_KASAN is not set
CONFIG_HAVE_ARCH_KFENCE=y
# CONFIG_KFENCE is not set
CONFIG_HAVE_ARCH_KMSAN=y
# end of Memory Debugging

CONFIG_DEBUG_SHIRQ=y

#
# Debug Oops, Lockups and Hangs
#
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=0
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_HARDLOCKUP_DETECTOR_PREFER_BUDDY is not set
CONFIG_HARDLOCKUP_DETECTOR_PERF=y
# CONFIG_HARDLOCKUP_DETECTOR_BUDDY is not set
# CONFIG_HARDLOCKUP_DETECTOR_ARCH is not set
CONFIG_HARDLOCKUP_DETECTOR_COUNTS_HRTIMER=y
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=480
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_WQ_WATCHDOG=y
# CONFIG_WQ_CPU_INTENSIVE_REPORT is not set
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs

#
# Scheduler Debugging
#
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging

# CONFIG_DEBUG_TIMEKEEPING is not set
# CONFIG_DEBUG_PREEMPT is not set

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
# CONFIG_DEBUG_RWSEMS is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_WW_MUTEX_SELFTEST=m
# CONFIG_SCF_TORTURE_TEST is not set
# CONFIG_CSD_LOCK_WAIT_DEBUG is not set
# end of Lock Debugging (spinlocks, mutexes, etc...)

# CONFIG_NMI_CHECK_CPU is not set
# CONFIG_DEBUG_IRQFLAGS is not set
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set

#
# Debug kernel data structures
#
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PLIST=y
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
CONFIG_BUG_ON_DATA_CORRUPTION=y
# CONFIG_DEBUG_MAPLE_TREE is not set
# end of Debug kernel data structures

CONFIG_DEBUG_CREDENTIALS=y

#
# RCU Debugging
#
# CONFIG_RCU_SCALE_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_RCU_REF_SCALE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0
# CONFIG_RCU_CPU_STALL_CPUTIME is not set
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging

# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
CONFIG_LATENCYTOP=y
# CONFIG_DEBUG_CGROUP_REF is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_RETHOOK=y
CONFIG_RETHOOK=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_OBJTOOL_MCOUNT=y
CONFIG_HAVE_OBJTOOL_NOP_MCOUNT=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y
CONFIG_BUILDTIME_MCOUNT_SORT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_BOOTTIME_TRACING=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_FUNCTION_GRAPH_RETVAL is not set
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y
CONFIG_FPROBE=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_STACK_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_HWLAT_TRACER=y
# CONFIG_OSNOISE_TRACER is not set
# CONFIG_TIMERLAT_TRACER is not set
# CONFIG_MMIOTRACE is not set
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
CONFIG_FPROBE_EVENTS=y
CONFIG_PROBE_EVENTS_BTF_ARGS=y
CONFIG_KPROBE_EVENTS=y
# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=y
CONFIG_BPF_KPROBE_OVERRIDE=y
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_FTRACE_MCOUNT_USE_CC=y
CONFIG_TRACING_MAP=y
CONFIG_SYNTH_EVENTS=y
# CONFIG_USER_EVENTS is not set
CONFIG_HIST_TRIGGERS=y
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
CONFIG_RING_BUFFER_BENCHMARK=m
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_FTRACE_RECORD_RECURSION is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_FTRACE_SORT_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set
CONFIG_PREEMPTIRQ_DELAY_TEST=m
# CONFIG_SYNTH_EVENT_GEN_TEST is not set
# CONFIG_KPROBE_EVENT_GEN_TEST is not set
# CONFIG_HIST_TRIGGERS_DEBUG is not set
# CONFIG_RV is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
CONFIG_SAMPLES=y
# CONFIG_SAMPLE_AUXDISPLAY is not set
# CONFIG_SAMPLE_TRACE_EVENTS is not set
# CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS is not set
CONFIG_SAMPLE_TRACE_PRINTK=m
CONFIG_SAMPLE_FTRACE_DIRECT=m
# CONFIG_SAMPLE_FTRACE_DIRECT_MULTI is not set
# CONFIG_SAMPLE_FTRACE_OPS is not set
# CONFIG_SAMPLE_TRACE_ARRAY is not set
# CONFIG_SAMPLE_KOBJECT is not set
# CONFIG_SAMPLE_KPROBES is not set
# CONFIG_SAMPLE_HW_BREAKPOINT is not set
# CONFIG_SAMPLE_FPROBE is not set
# CONFIG_SAMPLE_KFIFO is not set
# CONFIG_SAMPLE_LIVEPATCH is not set
# CONFIG_SAMPLE_CONFIGFS is not set
# CONFIG_SAMPLE_VFIO_MDEV_MTTY is not set
# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
# CONFIG_SAMPLE_WATCHDOG is not set
CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y
CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_IO_STRICT_DEVMEM is not set

#
# x86 Debugging
#
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
CONFIG_EARLY_PRINTK_USB_XDBC=y
# CONFIG_EFI_PGT_DUMP is not set
# CONFIG_DEBUG_TLBFLUSH is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
# CONFIG_DEBUG_ENTRY is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set
# CONFIG_X86_DEBUG_FPU is not set
# CONFIG_PUNIT_ATOM_DEBUG is not set
CONFIG_UNWINDER_ORC=y
# CONFIG_UNWINDER_FRAME_POINTER is not set
# end of x86 Debugging

#
# Kernel Testing and Coverage
#
# CONFIG_KUNIT is not set
CONFIG_NOTIFIER_ERROR_INJECTION=m
CONFIG_PM_NOTIFIER_ERROR_INJECT=m
# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set
CONFIG_FUNCTION_ERROR_INJECTION=y
CONFIG_FAULT_INJECTION=y
# CONFIG_FAILSLAB is not set
# CONFIG_FAIL_PAGE_ALLOC is not set
# CONFIG_FAULT_INJECTION_USERCOPY is not set
# CONFIG_FAIL_MAKE_REQUEST is not set
# CONFIG_FAIL_IO_TIMEOUT is not set
# CONFIG_FAIL_FUTEX is not set
CONFIG_FAULT_INJECTION_DEBUG_FS=y
CONFIG_FAIL_FUNCTION=y
# CONFIG_FAIL_MMC_REQUEST is not set
# CONFIG_FAIL_SUNRPC is not set
# CONFIG_FAULT_INJECTION_CONFIGFS is not set
# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_TEST_DHRY is not set
CONFIG_LKDTM=y
# CONFIG_TEST_MIN_HEAP is not set
# CONFIG_TEST_DIV64 is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_TEST_REF_TRACKER is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_REED_SOLOMON_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_ASYNC_RAID6_TEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_STRING_SELFTEST is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
CONFIG_TEST_PRINTF=m
CONFIG_TEST_SCANF=m
CONFIG_TEST_BITMAP=m
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_XARRAY is not set
# CONFIG_TEST_MAPLE_TREE is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_IDA is not set
CONFIG_TEST_LKM=m
CONFIG_TEST_BITOPS=m
CONFIG_TEST_VMALLOC=m
CONFIG_TEST_USER_COPY=m
CONFIG_TEST_BPF=m
CONFIG_TEST_BLACKHOLE_DEV=m
# CONFIG_FIND_BIT_BENCHMARK is not set
CONFIG_TEST_FIRMWARE=y
CONFIG_TEST_SYSCTL=y
# CONFIG_TEST_UDELAY is not set
CONFIG_TEST_STATIC_KEYS=m
# CONFIG_TEST_DYNAMIC_DEBUG is not set
CONFIG_TEST_KMOD=m
# CONFIG_TEST_MEMCAT_P is not set
CONFIG_TEST_LIVEPATCH=m
# CONFIG_TEST_MEMINIT is not set
CONFIG_TEST_HMM=m
# CONFIG_TEST_FREE_PAGES is not set
CONFIG_TEST_FPU=m
# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set
CONFIG_ARCH_USE_MEMTEST=y
# CONFIG_MEMTEST is not set
# CONFIG_HYPERV_TESTING is not set
# end of Kernel Testing and Coverage

#
# Rust hacking
#
# end of Rust hacking
# end of Kernel hacking

[-- Attachment #3: job-script --]
[-- Type: text/plain, Size: 6767 bytes --]

#!/bin/sh

export_top_env()
{
	export suite='kernel-selftests'
	export testcase='kernel-selftests'
	export category='functional'
	export timeout='1h'
	export job_origin='kernel-selftests-net-slow.yaml'
	export queue_cmdline_keys='branch
commit
kbuild_queue_analysis'
	export queue='validate'
	export testbox='lkp-csl-d01'
	export tbox_group='lkp-csl-d01'
	export submit_id='64bda861c80357568b87c0b8'
	export job_file='/lkp/jobs/queued/validate/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230724-22155-1s3o2ir-1.yaml'
	export id='37fb7e09de0e952c140dc05dcc44cbb54f135644'
	export queuer_version='/zday/lkp'
	export model='Cascade Lake'
	export nr_node=1
	export nr_cpu=36
	export memory='32G'
	export nr_ssd_partitions=1
	export ssd_partitions='/dev/disk/by-id/nvme-INTEL_SSDPEKNW010T8_PHNH119301NW1P0B-part3'
	export rootfs_partition='/dev/disk/by-id/nvme-INTEL_SSDPEKNW010T8_PHNH119301NW1P0B-part4'
	export brand='Intel(R) Core(TM) i9-10980XE CPU @ 3.00GHz'
	export commit='4c189e1954949695724236c7c1f182a39e67b262'
	export ucode='0x5003303'
	export need_kernel_version=
	export need_kconfig='{"PACKET"=>"y"}
{"USER_NS"=>"y"}
{"BPF_SYSCALL"=>"y"}
{"TEST_BPF"=>"m"}
{"NUMA"=>"y"}
{"NET_VRF"=>"y"}
{"NET_L3_MASTER_DEV"=>"y"}
{"IPV6"=>"y"}
{"IPV6_MULTIPLE_TABLES"=>"y"}
VETH
{"NET_IPVTI"=>"m"}
{"IPV6_VTI"=>"m"}
DUMMY
BRIDGE
{"VLAN_8021Q"=>"y"}
VXLAN
IFB
{"NETFILTER"=>"y"}
{"NETFILTER_ADVANCED"=>"y"}
{"NF_CONNTRACK"=>"m"}
{"NF_NAT"=>"m"}
{"IP6_NF_IPTABLES"=>"m"}
{"IP_NF_IPTABLES"=>"m"}
{"IP6_NF_NAT"=>"m"}
{"IP_NF_NAT"=>"m"}
{"NF_TABLES"=>"m"}
{"NF_TABLES_IPV6"=>"y"}
{"NF_TABLES_IPV4"=>"y"}
{"NFT_CHAIN_NAT_IPV6"=>"m"}
{"NFT_TPROXY"=>"m"}
{"NFT_COUNTER"=>"m"}
{"NFT_CHAIN_NAT_IPV4"=>"m"}
{"NET_SCH_FQ"=>"m"}
{"NET_SCH_ETF"=>"m"}
{"NET_SCH_NETEM"=>"y"}
{"TEST_BLACKHOLE_DEV"=>"m"}
{"KALLSYMS"=>"y"}
{"BAREUDP"=>"m"}
{"MPLS_ROUTING"=>"m"}
{"MPLS_IPTUNNEL"=>"m"}
{"NET_SCH_INGRESS"=>"y"}
{"NET_CLS_FLOWER"=>"m"}
{"NET_ACT_TUNNEL_KEY"=>"m"}
{"NET_ACT_MIRRED"=>"m"}
{"CRYPTO_SM4"=>"y"}
{"CRYPTO_SM4_GENERIC"=>"y"}
NET_DROP_MONITOR
{"TRACEPOINTS"=>"y"}
{"AMT"=>"m"}
{"IPV6_IOAM6_LWTUNNEL"=>"y"}'
	export rootfs='debian-12-x86_64-20220629.cgz'
	export initrds='linux_headers
linux_selftests'
	export kconfig='x86_64-rhel-8.3-bpf'
	export enqueue_time='2023-07-24 06:23:29 +0800'
	export _id='64bda861c80357568b87c0b8'
	export _rt='/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262'
	export compiler='gcc-12'
	export head_commit='cd875ef432fda9d248c23f18d539b75794046b6f'
	export base_commit='fdf0eaf11452d72945af31804e2a1048ee1b574c'
	export branch='linux-review/Hangbin-Liu/ipv4-fib-send-RTM_DELROUTE-notify-when-flush-fib/20230718-195536'
	export user='lkp'
	export LKP_SERVER='internal-lkp-server'
	export scheduler_version='/lkp/lkp/src'
	export arch='x86_64'
	export max_uptime=3600
	export initrd='/osimage/debian/debian-12-x86_64-20220629.cgz'
	export bootloader_append='root=/dev/ram0
RESULT_ROOT=/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/3
BOOT_IMAGE=/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/vmlinuz-6.5.0-rc1-00339-g4c189e195494
branch=linux-review/Hangbin-Liu/ipv4-fib-send-RTM_DELROUTE-notify-when-flush-fib/20230718-195536
job=/lkp/jobs/scheduled/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230724-22155-1s3o2ir-1.yaml
user=lkp
ARCH=x86_64
kconfig=x86_64-rhel-8.3-bpf
commit=4c189e1954949695724236c7c1f182a39e67b262
nmi_watchdog=0
max_uptime=3600
LKP_SERVER=internal-lkp-server
nokaslr
selinux=0
debug
apic=debug
sysrq_always_enabled
rcupdate.rcu_cpu_stall_timeout=100
net.ifnames=0
printk.devkmsg=on
panic=-1
softlockup_panic=1
nmi_watchdog=panic
oops=panic
load_ramdisk=2
prompt_ramdisk=0
drbd.minor_count=8
systemd.log_level=err
ignore_loglevel
console=tty0
earlyprintk=ttyS0,115200
console=ttyS0,115200
vga=normal
rw'
	export modules_initrd='/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/modules.cgz'
	export linux_headers_initrd='/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/linux-headers.cgz'
	export linux_selftests_initrd='/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/linux-selftests.cgz'
	export bm_initrd='/osimage/deps/debian-12-x86_64-20220629.cgz/run-ipconfig_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/lkp_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/rsync-rootfs_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/kernel-selftests_20230329.cgz,/osimage/pkg/debian-12-x86_64-20220629.cgz/kernel-selftests-x86_64-60acb023-1_20230329.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/hw_20230326.cgz'
	export ucode_initrd='/osimage/ucode/intel-ucode-20230406.cgz'
	export lkp_initrd='/osimage/user/lkp/lkp-x86_64.cgz'
	export site='inn'
	export LKP_CGI_PORT=80
	export LKP_CIFS_PORT=139
	export job_initrd='/lkp/jobs/scheduled/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230724-22155-1s3o2ir-1.cgz'
	export last_kernel='6.5.0-rc2-07633-gcd875ef432fd'
	export acpi_rsdp='0x000f05b0'
	export repeat_to=6
	export kbuild_queue_analysis=1
	export kernel='/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/vmlinuz-6.5.0-rc1-00339-g4c189e195494'
	export result_root='/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/3'

	[ -n "$LKP_SRC" ] ||
	export LKP_SRC=/lkp/${user:-lkp}/src
}

run_job()
{
	echo $$ > $TMP/run-job.pid

	. $LKP_SRC/lib/http.sh
	. $LKP_SRC/lib/job.sh
	. $LKP_SRC/lib/env.sh

	export_top_env

	run_setup $LKP_SRC/setup/sanity-check

	run_monitor $LKP_SRC/monitors/wrapper kmsg
	run_monitor $LKP_SRC/monitors/wrapper heartbeat
	run_monitor $LKP_SRC/monitors/wrapper meminfo
	run_monitor $LKP_SRC/monitors/wrapper kmemleak
	run_monitor $LKP_SRC/monitors/wrapper oom-killer
	run_monitor $LKP_SRC/monitors/plain/watchdog

	run_test group='net' test='fib_nexthops.sh' $LKP_SRC/tests/wrapper kernel-selftests
}

extract_stats()
{
	export stats_part_begin=
	export stats_part_end=

	env group='net' test='fib_nexthops.sh' $LKP_SRC/stats/wrapper kernel-selftests
	$LKP_SRC/stats/wrapper kmsg
	$LKP_SRC/stats/wrapper meminfo
	$LKP_SRC/stats/wrapper kmemleak

	$LKP_SRC/stats/wrapper time kernel-selftests.time
	$LKP_SRC/stats/wrapper dmesg
	$LKP_SRC/stats/wrapper kmsg
	$LKP_SRC/stats/wrapper last_state
	$LKP_SRC/stats/wrapper stderr
	$LKP_SRC/stats/wrapper time
}

"$@"

[-- Attachment #4: kmsg.xz --]
[-- Type: application/x-xz, Size: 55580 bytes --]

[-- Attachment #5: kernel-selftests --]
[-- Type: text/plain, Size: 266174 bytes --]

KERNEL SELFTESTS: linux_headers_dir is /usr/src/linux-headers-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262
2023-07-23 23:11:17 mount --bind /lib/modules/6.5.0-rc1-00339-g4c189e195494/kernel/lib /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/lib
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids'
  MKDIR     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/
  MKDIR     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids//libsubcmd
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/fixdep.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/bpf_helper_defs.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/libbpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/btf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/libbpf_common.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/libbpf_legacy.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf_helpers.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf_tracing.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf_endian.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf_core_read.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/skel_internal.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/libbpf_version.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/usdt.bpf.h
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/fixdep-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/fixdep
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf//include/bpf/bpf_helper_defs.h
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  INSTALL libbpf_headers
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/strset.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/btf.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd//include/subcmd/exec-cmd.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf_errno.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd//include/subcmd/help.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/str_error.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd//include/subcmd/pager.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd//include/subcmd/parse-options.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/gen_loader.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd//include/subcmd/run-command.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/zip.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/hashmap.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/exec-cmd.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/pager.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/help.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/parse-options.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/run-command.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/sigchain.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/subcmd-config.o
  INSTALL libsubcmd_headers
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/libsubcmd-in.o
  AR      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libsubcmd/libsubcmd.a
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/libbpf/libbpf.a
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/main.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/rbtree.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/zalloc.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/string.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/ctype.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/str_error_r.o
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids/resolve_btfids-in.o
  LINK     resolve_btfids
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/bpf/resolve_btfids'
2023-07-23 23:11:20 ln -sf /usr/sbin/iptables-nft /usr/bin/iptables
2023-07-23 23:11:20 ln -sf /usr/sbin/ip6tables-nft /usr/bin/ip6tables
2023-07-23 23:11:20 sed -i s/default_timeout=45/default_timeout=300/ kselftest/runner.sh
2023-07-23 23:11:20 make -j36 -C bpf
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf'
  MKDIR    libbpf
  TEST-HDR [test_progs] tests.h
  MKDIR    bpftool
  MKDIR    include
  TEST-HDR [test_maps] tests.h
  MKDIR    resolve_btfids
  LIB      liburandom_read.so
  SIGN-FILE sign-file
  MKDIR    no_alu32
  MKDIR    
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-helpers.rst
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-syscall.rst
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/bpf_helper_defs.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/libbpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/btf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/libbpf_common.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/libbpf_legacy.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf_helpers.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf_tracing.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf_endian.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf_core_read.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/skel_internal.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/libbpf_version.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/usdt.bpf.h
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-syscall.2
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/fixdep.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/bpf_helper_defs.h
  INSTALL libbpf_headers
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-helpers.7
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/fixdep-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/fixdep
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-syscall.2
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/libbpf.pc
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/strset.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/libbpf_errno.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/gen_loader.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/str_error.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/zip.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/hashmap.o
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/libbpf_errno.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/str_error.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/hashmap.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/strset.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/gen_loader.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/zip.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf-helpers.7
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/staticobjs/libbpf-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/libbpf.a
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/sharedobjs/libbpf-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/libbpf/libbpf.so.1.3.0
  BINARY   urandom_read
  EXT-OBJ  [test_progs] testing_helpers.o
  EXT-OBJ  [test_progs] cap_helpers.o
  EXT-OBJ  [test_progs] unpriv_helpers.o
  EXT-OBJ  [test_maps] test_maps.o
  BINARY   test_lru_map
  BINARY   test_lpm_map
  EXT-OBJ  [test_progs] test_progs.o
  EXT-OBJ  [test_progs] cgroup_helpers.o
  EXT-OBJ  [test_progs] trace_helpers.o
  EXT-OBJ  [test_progs] network_helpers.o
  EXT-OBJ  [test_progs] btf_helpers.o
  EXT-OBJ  [test_progs] test_loader.o
  EXT-OBJ  [test_progs] xsk.o
  EXT-OBJ  [test_progs] disasm.o
  EXT-OBJ  [test_progs] json_writer.o
  BINARY   xdp_synproxy
  EXT-OBJ  [test_progs-no_alu32] test_progs.o
  EXT-OBJ  [test_progs-no_alu32] cgroup_helpers.o
  EXT-OBJ  [test_progs-no_alu32] trace_helpers.o
  EXT-OBJ  [test_progs-no_alu32] btf_helpers.o
  EXT-OBJ  [test_progs-no_alu32] network_helpers.o
  EXT-OBJ  [test_progs-no_alu32] testing_helpers.o
  EXT-OBJ  [test_progs-no_alu32] cap_helpers.o
  EXT-OBJ  [test_progs-no_alu32] test_loader.o
  EXT-OBJ  [test_progs-no_alu32] xsk.o
  EXT-OBJ  [test_progs-no_alu32] json_writer.o
  EXT-OBJ  [test_progs-no_alu32] disasm.o
  EXT-OBJ  [test_progs-no_alu32] unpriv_helpers.o
  BINARY   test_tcp_check_syncookie_user
  CC       bench.o
  BINARY   test_flow_dissector
  CC       bench_count.o
  BINARY   xdp_redirect_multi
  CC       veristat.o
  MKDIR     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids//libsubcmd
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/fixdep.o
  BINARY   test_verifier
  BINARY   test_tag
  BINARY   test_dev_cgroup
  BINARY   test_sock
  BINARY   test_sockmap
  BINARY   get_cgroup_id_user
  BINARY   test_cgroup_storage
  BINARY   test_tcpnotify_user
  BINARY   test_sysctl
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/fixdep-in.o
  BINARY   test_sock_addr
  BINARY   test_skb_cgroup_id_user
  BINARY   flow_dissector_load
  BINARY   test_lirc_mode2_user
  BINARY   xdping
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/fixdep
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd//include/subcmd/exec-cmd.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd//include/subcmd/help.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd//include/subcmd/pager.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd//include/subcmd/parse-options.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd//include/subcmd/run-command.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/exec-cmd.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/help.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/pager.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/parse-options.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/run-command.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/sigchain.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/subcmd-config.o
  INSTALL libsubcmd_headers
  BINARY   veristat
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/libsubcmd-in.o
  AR      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/libsubcmd/libsubcmd.a
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/main.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/rbtree.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/zalloc.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/string.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/ctype.o
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/str_error_r.o
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/resolve_btfids/resolve_btfids-in.o
  LINK     resolve_btfids
  MOD      bpf_testmod.ko
warning: the compiler differs from the one used to build the kernel
  The kernel was built by: gcc-12 (Debian 12.2.0-14) 12.2.0
  You are using:           gcc (Debian 12.2.0-14) 12.2.0
  CC [M]  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.o
  MODPOST /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf_testmod/Module.symvers
  CC [M]  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.mod.o

  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/hashmap.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/nlattr.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/relo_core.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/include/bpf/libbpf_internal.h
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/hashmap.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/libbpf_internal.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/relo_core.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/struct_ops.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/tracelog.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/xlated_dumper.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/disasm.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/btf_dumper.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/cfg.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/cgroup.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/common.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/feature.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/gen.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/iter.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/jit_disasm.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/json_writer.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/link.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/main.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/map.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/map_perf_ring.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/net.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/netlink_dumper.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/perf.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/bpf_helper_defs.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/libbpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/btf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/libbpf_common.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/libbpf_legacy.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf_helpers.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf_tracing.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf_endian.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf_core_read.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/skel_internal.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/libbpf_version.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/usdt.bpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/include/bpf/bpf_helper_defs.h
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  INSTALL libbpf_headers
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/strset.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/libbpf_errno.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/gen_loader.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/str_error.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/zip.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/hashmap.o
  LD [M]  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.ko
  BTF [M] /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.ko
  EXT-COPY [test_progs-no_alu32] urandom_read bpf_testmod.ko liburandom_read.so xdp_synproxy sign-file ima_setup.sh verify_sig_setup.sh btf_dump_test_case_bitfields.c btf_dump_test_case_multidim.c btf_dump_test_case_namespacing.c btf_dump_test_case_ordering.c btf_dump_test_case_packing.c btf_dump_test_case_padding.c btf_dump_test_case_syntax.c
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/staticobjs/libbpf-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/libbpf/libbpf.a
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/main.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/common.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/json_writer.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/gen.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/xlated_dumper.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/btf_dumper.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/disasm.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bootstrap/bpftool
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/vmlinux.h
  CLANG   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/pid_iter.bpf.o
  CLANG   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/profiler.bpf.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/pid_iter.skel.h
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/profiler.skel.h
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/prog.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/pids.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/bpftool/bpftool
  INSTALL bpftool
  GEN      vmlinux.h
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/runqslower//vmlinux.h
  CLNG-BPF [test_maps] async_stack_depth.bpf.o
  CLNG-BPF [test_maps] atomic_bounds.bpf.o
  CLNG-BPF [test_maps] atomics.bpf.o
  CLNG-BPF [test_maps] bench_local_storage_create.bpf.o
  CLNG-BPF [test_maps] bind4_prog.bpf.o
  CLNG-BPF [test_maps] bind6_prog.bpf.o
  CLNG-BPF [test_maps] bind_perm.bpf.o
  CLNG-BPF [test_maps] bloom_filter_bench.bpf.o
  CLNG-BPF [test_maps] bloom_filter_map.bpf.o
  CLNG-BPF [test_maps] bpf_cubic.bpf.o
  CLNG-BPF [test_maps] bpf_dctcp.bpf.o
  CLNG-BPF [test_maps] bpf_dctcp_release.bpf.o
  CLNG-BPF [test_maps] bpf_flow.bpf.o
  CLNG-BPF [test_maps] bpf_hashmap_full_update_bench.bpf.o
  CLNG-BPF [test_maps] bpf_hashmap_lookup.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_array_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_hash_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_link.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_percpu_array_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_percpu_hash_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_sk_storage_helpers.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_sk_storage_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_ipv6_route.bpf.o
  CLNG-BPF [test_maps] bpf_iter_ksym.bpf.o
  CLNG-BPF [test_maps] bpf_iter_netlink.bpf.o
  CLNG-BPF [test_maps] bpf_iter_setsockopt.bpf.o
  CLNG-BPF [test_maps] bpf_iter_setsockopt_unix.bpf.o
  CLNG-BPF [test_maps] bpf_iter_sockmap.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task.bpf.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/runqslower//runqslower.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_btf.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_file.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_stack.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_vma.bpf.o
  CLNG-BPF [test_maps] bpf_iter_tcp4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_tcp6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern2.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern1.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern3.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern5.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_udp4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_udp6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_unix.bpf.o
  CLNG-BPF [test_maps] bpf_iter_vma_offset.bpf.o
  CLNG-BPF [test_maps] bpf_loop.bpf.o
  CLNG-BPF [test_maps] bpf_loop_bench.bpf.o
  CLNG-BPF [test_maps] bpf_mod_race.bpf.o
  CLNG-BPF [test_maps] bpf_syscall_macro.bpf.o
  CLNG-BPF [test_maps] bpf_tcp_nogpl.bpf.o
  CLNG-BPF [test_maps] bprm_opts.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___diff_arr_dim.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___diff_arr_val_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___equiv_zero_sz_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_bad_zero_sz_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_non_array.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_too_shallow.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_too_small.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_wrong_val_type.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___fixed_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___bit_sz_change.bpf.o
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/runqslower//runqslower.skel.h
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___bitfield_vs_int.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___err_too_big_bitfield.bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/runqslower//runqslower.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___just_big_enough.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___err_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___val3_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___err_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___val3_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence___minimal.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence___wrong_field_defs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_flavors.bpf.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf/tools/build/runqslower//runqslower
  CLNG-BPF [test_maps] btf__core_reloc_flavors__err_wrong_name.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints___bool.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints___reverse_sign.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_misc.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods___mod_swap.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods___typedefs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___anon_embed.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___dup_compat_types.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_array_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_array_field.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_dup_incompat_types.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_missing_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_missing_field.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_nonstruct_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_partial_match_dups.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_too_deep.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___extra_nesting.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___struct_union_mixup.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_enum_def.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_func_proto.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_ptr_type.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_enum.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_int.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_ptr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ptr_as_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ptr_as_arr___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___diff_offs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___err_ambiguous.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___all_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___fn_wrong_args.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___incompat.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_id.bpf.o
  CLNG-BPF [test_maps] btf_data.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_id___missing_targets.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_bitfields.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_namespacing.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_multidim.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_ordering.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_packing.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_padding.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_syntax.bpf.o
  CLNG-BPF [test_maps] btf_type_tag.bpf.o
  CLNG-BPF [test_maps] btf_type_tag_percpu.bpf.o
  CLNG-BPF [test_maps] btf_type_tag_user.bpf.o
  CLNG-BPF [test_maps] cb_refs.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_egress_only.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_isolated.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_shared.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_hooks.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_getsockopt.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_setsockopt.bpf.o
  CLNG-BPF [test_maps] cgroup_hierarchical_stats.bpf.o
  CLNG-BPF [test_maps] cgroup_iter.bpf.o
  CLNG-BPF [test_maps] cgroup_skb_sk_lookup_kern.bpf.o
  CLNG-BPF [test_maps] cgroup_tcp_skb.bpf.o
  CLNG-BPF [test_maps] cgrp_kfunc_failure.bpf.o
  CLNG-BPF [test_maps] cgrp_kfunc_success.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_attach_cgroup.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_negative.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_recursion.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_sleepable.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_tp_btf.bpf.o
  CLNG-BPF [test_maps] connect4_dropper.bpf.o
  CLNG-BPF [test_maps] connect4_prog.bpf.o
  CLNG-BPF [test_maps] connect6_prog.bpf.o
  CLNG-BPF [test_maps] connect_force_port4.bpf.o
  CLNG-BPF [test_maps] connect_ping.bpf.o
  CLNG-BPF [test_maps] connect_force_port6.bpf.o
  CLNG-BPF [test_maps] core_kern_overflow.bpf.o
  CLNG-BPF [test_maps] core_kern.bpf.o
  CLNG-BPF [test_maps] cpumask_success.bpf.o
  CLNG-BPF [test_maps] cpumask_failure.bpf.o
  CLNG-BPF [test_maps] decap_sanity.bpf.o
  CLNG-BPF [test_maps] dev_cgroup.bpf.o
  CLNG-BPF [test_maps] dummy_st_ops_fail.bpf.o
  CLNG-BPF [test_maps] dummy_st_ops_success.bpf.o
  CLNG-BPF [test_maps] dynptr_fail.bpf.o
  CLNG-BPF [test_maps] dynptr_success.bpf.o
  CLNG-BPF [test_maps] empty_skb.bpf.o
  CLNG-BPF [test_maps] exhandler_kern.bpf.o
  CLNG-BPF [test_maps] fentry_many_args.bpf.o
  CLNG-BPF [test_maps] fentry_test.bpf.o
  CLNG-BPF [test_maps] fexit_bpf2bpf.bpf.o
  CLNG-BPF [test_maps] fexit_bpf2bpf_simple.bpf.o
  CLNG-BPF [test_maps] fexit_many_args.bpf.o
  CLNG-BPF [test_maps] fexit_sleep.bpf.o
  CLNG-BPF [test_maps] fexit_test.bpf.o
  CLNG-BPF [test_maps] fib_lookup.bpf.o
  CLNG-BPF [test_maps] find_vma.bpf.o
  CLNG-BPF [test_maps] find_vma_fail1.bpf.o
  CLNG-BPF [test_maps] find_vma_fail2.bpf.o
  CLNG-BPF [test_maps] fmod_ret_freplace.bpf.o
  CLNG-BPF [test_maps] for_each_array_map_elem.bpf.o
  CLNG-BPF [test_maps] for_each_hash_map_elem.bpf.o
  CLNG-BPF [test_maps] for_each_map_elem_write_key.bpf.o
  CLNG-BPF [test_maps] freplace_attach_probe.bpf.o
  CLNG-BPF [test_maps] freplace_cls_redirect.bpf.o
  CLNG-BPF [test_maps] freplace_connect4.bpf.o
  CLNG-BPF [test_maps] freplace_connect_v4_prog.bpf.o
  CLNG-BPF [test_maps] freplace_get_constant.bpf.o
  CLNG-BPF [test_maps] freplace_global_func.bpf.o
  CLNG-BPF [test_maps] freplace_progmap.bpf.o
  CLNG-BPF [test_maps] get_branch_snapshot.bpf.o
  CLNG-BPF [test_maps] get_cgroup_id_kern.bpf.o
  CLNG-BPF [test_maps] get_func_args_test.bpf.o
  CLNG-BPF [test_maps] get_func_ip_test.bpf.o
  CLNG-BPF [test_maps] htab_mem_bench.bpf.o
  CLNG-BPF [test_maps] htab_reuse.bpf.o
  CLNG-BPF [test_maps] htab_update.bpf.o
  CLNG-BPF [test_maps] ima.bpf.o
  CLNG-BPF [test_maps] inner_array_lookup.bpf.o
  CLNG-BPF [test_maps] iters.bpf.o
  CLNG-BPF [test_maps] iters_looping.bpf.o
  CLNG-BPF [test_maps] iters_num.bpf.o
  CLNG-BPF [test_maps] iters_state_safety.bpf.o
  CLNG-BPF [test_maps] iters_testmod_seq.bpf.o
  CLNG-BPF [test_maps] jeq_infer_not_null_fail.bpf.o
  CLNG-BPF [test_maps] jit_probe_mem.bpf.o
  CLNG-BPF [test_maps] kfree_skb.bpf.o
  CLNG-BPF [test_maps] kfunc_call_destructive.bpf.o
  CLNG-BPF [test_maps] kfunc_call_fail.bpf.o
  CLNG-BPF [test_maps] kfunc_call_race.bpf.o
  CLNG-BPF [test_maps] kfunc_call_test.bpf.o
  CLNG-BPF [test_maps] kfunc_call_test_subprog.bpf.o
  CLNG-BPF [test_maps] kprobe_multi.bpf.o
  CLNG-BPF [test_maps] kprobe_multi_empty.bpf.o
  CLNG-BPF [test_maps] ksym_race.bpf.o
  CLNG-BPF [test_maps] linked_funcs1.bpf.o
  CLNG-BPF [test_maps] linked_funcs2.bpf.o
  CLNG-BPF [test_maps] linked_list.bpf.o
  CLNG-BPF [test_maps] linked_list_fail.bpf.o
  CLNG-BPF [test_maps] linked_maps1.bpf.o
  CLNG-BPF [test_maps] linked_maps2.bpf.o
  CLNG-BPF [test_maps] linked_vars1.bpf.o
  CLNG-BPF [test_maps] linked_vars2.bpf.o
  CLNG-BPF [test_maps] load_bytes_relative.bpf.o
  CLNG-BPF [test_maps] local_kptr_stash.bpf.o
  CLNG-BPF [test_maps] local_storage.bpf.o
  CLNG-BPF [test_maps] local_storage_bench.bpf.o
  CLNG-BPF [test_maps] local_storage_rcu_tasks_trace_bench.bpf.o
  CLNG-BPF [test_maps] loop1.bpf.o
  CLNG-BPF [test_maps] loop2.bpf.o
  CLNG-BPF [test_maps] loop3.bpf.o
  CLNG-BPF [test_maps] loop5.bpf.o
  CLNG-BPF [test_maps] loop4.bpf.o
  CLNG-BPF [test_maps] loop6.bpf.o
  CLNG-BPF [test_maps] lru_bug.bpf.o
  CLNG-BPF [test_maps] lsm.bpf.o
  CLNG-BPF [test_maps] lsm_cgroup.bpf.o
  CLNG-BPF [test_maps] lsm_cgroup_nonvoid.bpf.o
  CLNG-BPF [test_maps] map_kptr_fail.bpf.o
  CLNG-BPF [test_maps] map_kptr.bpf.o
  CLNG-BPF [test_maps] map_ptr_kern.bpf.o
  CLNG-BPF [test_maps] map_percpu_stats.bpf.o
  CLNG-BPF [test_maps] metadata_unused.bpf.o
  CLNG-BPF [test_maps] metadata_used.bpf.o
  CLNG-BPF [test_maps] modify_return.bpf.o
  CLNG-BPF [test_maps] mptcp_sock.bpf.o
  CLNG-BPF [test_maps] nested_trust_failure.bpf.o
  CLNG-BPF [test_maps] nested_trust_success.bpf.o
  CLNG-BPF [test_maps] netcnt_prog.bpf.o
  CLNG-BPF [test_maps] netif_receive_skb.bpf.o
  CLNG-BPF [test_maps] netns_cookie_prog.bpf.o
  CLNG-BPF [test_maps] perf_event_stackmap.bpf.o
  CLNG-BPF [test_maps] perfbuf_bench.bpf.o
  CLNG-BPF [test_maps] profiler1.bpf.o
  CLNG-BPF [test_maps] profiler2.bpf.o
  CLNG-BPF [test_maps] profiler3.bpf.o
  CLNG-BPF [test_maps] pyperf100.bpf.o
  CLNG-BPF [test_maps] pyperf180.bpf.o
  CLNG-BPF [test_maps] pyperf50.bpf.o
  CLNG-BPF [test_maps] pyperf600.bpf.o
  CLNG-BPF [test_maps] pyperf600_bpf_loop.bpf.o
  CLNG-BPF [test_maps] pyperf600_iter.bpf.o
  CLNG-BPF [test_maps] pyperf600_nounroll.bpf.o
  CLNG-BPF [test_maps] pyperf_global.bpf.o
  CLNG-BPF [test_maps] pyperf_subprogs.bpf.o
  CLNG-BPF [test_maps] rbtree.bpf.o
  CLNG-BPF [test_maps] rbtree_btf_fail__add_wrong_type.bpf.o
  CLNG-BPF [test_maps] rbtree_btf_fail__wrong_node_type.bpf.o
  CLNG-BPF [test_maps] rbtree_fail.bpf.o
  CLNG-BPF [test_maps] rcu_read_lock.bpf.o
  CLNG-BPF [test_maps] rcu_tasks_trace_gp.bpf.o
  CLNG-BPF [test_maps] read_bpf_task_storage_busy.bpf.o
  CLNG-BPF [test_maps] recursion.bpf.o
  CLNG-BPF [test_maps] recvmsg4_prog.bpf.o
  CLNG-BPF [test_maps] recvmsg6_prog.bpf.o
  CLNG-BPF [test_maps] refcounted_kptr.bpf.o
  CLNG-BPF [test_maps] refcounted_kptr_fail.bpf.o
  CLNG-BPF [test_maps] ringbuf_bench.bpf.o
  CLNG-BPF [test_maps] sample_map_ret0.bpf.o
  CLNG-BPF [test_maps] sample_ret0.bpf.o
  CLNG-BPF [test_maps] sendmsg4_prog.bpf.o
  CLNG-BPF [test_maps] sendmsg6_prog.bpf.o
  CLNG-BPF [test_maps] setget_sockopt.bpf.o
  CLNG-BPF [test_maps] skb_load_bytes.bpf.o
  CLNG-BPF [test_maps] skb_pkt_end.bpf.o
  CLNG-BPF [test_maps] sock_destroy_prog.bpf.o
  CLNG-BPF [test_maps] sock_destroy_prog_fail.bpf.o
  CLNG-BPF [test_maps] socket_cookie_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_parse_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_tcp_msg_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_verdict_prog.bpf.o
  CLNG-BPF [test_maps] sockopt_inherit.bpf.o
  CLNG-BPF [test_maps] sockopt_multi.bpf.o
  CLNG-BPF [test_maps] sockopt_qos_to_cc.bpf.o
  CLNG-BPF [test_maps] stacktrace_map_skip.bpf.o
  CLNG-BPF [test_maps] sockopt_sk.bpf.o
  CLNG-BPF [test_maps] strncmp_bench.bpf.o
  CLNG-BPF [test_maps] strncmp_test.bpf.o
  CLNG-BPF [test_maps] strobemeta.bpf.o
  CLNG-BPF [test_maps] strobemeta_bpf_loop.bpf.o
  CLNG-BPF [test_maps] strobemeta_nounroll1.bpf.o
  CLNG-BPF [test_maps] strobemeta_nounroll2.bpf.o
  CLNG-BPF [test_maps] strobemeta_subprogs.bpf.o
  CLNG-BPF [test_maps] syscall.bpf.o
  CLNG-BPF [test_maps] tailcall2.bpf.o
  CLNG-BPF [test_maps] tailcall1.bpf.o
  CLNG-BPF [test_maps] tailcall3.bpf.o
  CLNG-BPF [test_maps] tailcall4.bpf.o
  CLNG-BPF [test_maps] tailcall5.bpf.o
  CLNG-BPF [test_maps] tailcall6.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf1.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf2.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf3.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf4.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf6.bpf.o
  CLNG-BPF [test_maps] task_kfunc_failure.bpf.o
  CLNG-BPF [test_maps] task_kfunc_success.bpf.o
  CLNG-BPF [test_maps] task_local_storage.bpf.o
  CLNG-BPF [test_maps] task_local_storage_exit_creds.bpf.o
  CLNG-BPF [test_maps] task_ls_recursion.bpf.o
  CLNG-BPF [test_maps] task_storage_nodeadlock.bpf.o
  CLNG-BPF [test_maps] tcp_ca_incompl_cong_ops.bpf.o
  CLNG-BPF [test_maps] tcp_ca_unsupp_cong_op.bpf.o
  CLNG-BPF [test_maps] tcp_ca_update.bpf.o
  CLNG-BPF [test_maps] tcp_ca_write_sk_pacing.bpf.o
  CLNG-BPF [test_maps] tcp_rtt.bpf.o
  CLNG-BPF [test_maps] test_access_variable_array.bpf.o
  CLNG-BPF [test_maps] test_attach_kprobe_sleepable.bpf.o
  CLNG-BPF [test_maps] test_attach_probe.bpf.o
  CLNG-BPF [test_maps] test_attach_probe_manual.bpf.o
  CLNG-BPF [test_maps] test_autoattach.bpf.o
  CLNG-BPF [test_maps] test_autoload.bpf.o
  CLNG-BPF [test_maps] test_bpf_cookie.bpf.o
  CLNG-BPF [test_maps] test_bpf_nf.bpf.o
  CLNG-BPF [test_maps] test_bpf_nf_fail.bpf.o
  CLNG-BPF [test_maps] test_btf_decl_tag.bpf.o
  CLNG-BPF [test_maps] test_btf_map_in_map.bpf.o
  CLNG-BPF [test_maps] test_btf_newkv.bpf.o
  CLNG-BPF [test_maps] test_btf_nokv.bpf.o
  CLNG-BPF [test_maps] test_btf_skc_cls_ingress.bpf.o
  CLNG-BPF [test_maps] test_cgroup_link.bpf.o
  CLNG-BPF [test_maps] test_check_mtu.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect_dynptr.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect_subprogs.bpf.o
  CLNG-BPF [test_maps] test_core_autosize.bpf.o
  CLNG-BPF [test_maps] test_core_extern.bpf.o
  CLNG-BPF [test_maps] test_core_read_macros.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_arrays.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_bitfields_direct.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_bitfields_probed.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_enum64val.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_enumval.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_existence.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_flavors.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_ints.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_misc.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_kernel.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_mods.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_module.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_nesting.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_primitives.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_ptr_as_arr.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_size.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_type_based.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_type_id.bpf.o
  CLNG-BPF [test_maps] test_custom_sec_handlers.bpf.o
  CLNG-BPF [test_maps] test_core_retro.bpf.o
  CLNG-BPF [test_maps] test_d_path.bpf.o
  CLNG-BPF [test_maps] test_d_path_check_rdonly_mem.bpf.o
  CLNG-BPF [test_maps] test_d_path_check_types.bpf.o
  CLNG-BPF [test_maps] test_deny_namespace.bpf.o
  CLNG-BPF [test_maps] test_enable_stats.bpf.o
  CLNG-BPF [test_maps] test_endian.bpf.o
  CLNG-BPF [test_maps] test_get_stack_rawtp.bpf.o
  CLNG-BPF [test_maps] test_get_stack_rawtp_err.bpf.o
  CLNG-BPF [test_maps] test_global_data.bpf.o
  CLNG-BPF [test_maps] test_global_func1.bpf.o
  CLNG-BPF [test_maps] test_global_func10.bpf.o
  CLNG-BPF [test_maps] test_global_func11.bpf.o
  CLNG-BPF [test_maps] test_global_func12.bpf.o
  CLNG-BPF [test_maps] test_global_func13.bpf.o
  CLNG-BPF [test_maps] test_global_func14.bpf.o
  CLNG-BPF [test_maps] test_global_func15.bpf.o
  CLNG-BPF [test_maps] test_global_func16.bpf.o
  CLNG-BPF [test_maps] test_global_func17.bpf.o
  CLNG-BPF [test_maps] test_global_func2.bpf.o
  CLNG-BPF [test_maps] test_global_func4.bpf.o
  CLNG-BPF [test_maps] test_global_func3.bpf.o
  CLNG-BPF [test_maps] test_global_func5.bpf.o
  CLNG-BPF [test_maps] test_global_func6.bpf.o
  CLNG-BPF [test_maps] test_global_func7.bpf.o
  CLNG-BPF [test_maps] test_global_func8.bpf.o
  CLNG-BPF [test_maps] test_global_func9.bpf.o
  CLNG-BPF [test_maps] test_global_func_args.bpf.o
  CLNG-BPF [test_maps] test_global_map_resize.bpf.o
  CLNG-BPF [test_maps] test_global_func_ctx_args.bpf.o
  CLNG-BPF [test_maps] test_hash_large_key.bpf.o
  CLNG-BPF [test_maps] test_helper_restricted.bpf.o
  CLNG-BPF [test_maps] test_kfunc_dynptr_param.bpf.o
  CLNG-BPF [test_maps] test_ksyms.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf_null_check.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf_write_check.bpf.o
  CLNG-BPF [test_maps] test_ksyms_module.bpf.o
  CLNG-BPF [test_maps] test_ksyms_weak.bpf.o
  CLNG-BPF [test_maps] test_l4lb.bpf.o
  CLNG-BPF [test_maps] test_l4lb_noinline.bpf.o
  CLNG-BPF [test_maps] test_l4lb_noinline_dynptr.bpf.o
  CLNG-BPF [test_maps] test_legacy_printk.bpf.o
  CLNG-BPF [test_maps] test_libbpf_get_fd_by_id_opts.bpf.o
  CLNG-BPF [test_maps] test_link_pinning.bpf.o
  CLNG-BPF [test_maps] test_lirc_mode2_kern.bpf.o
  CLNG-BPF [test_maps] test_log_fixup.bpf.o
  CLNG-BPF [test_maps] test_log_buf.bpf.o
  CLNG-BPF [test_maps] test_lookup_and_delete.bpf.o
  CLNG-BPF [test_maps] test_lookup_key.bpf.o
  CLNG-BPF [test_maps] test_lwt_ip_encap.bpf.o
  CLNG-BPF [test_maps] test_lwt_seg6local.bpf.o
  CLNG-BPF [test_maps] test_map_in_map.bpf.o
  CLNG-BPF [test_maps] test_map_in_map_invalid.bpf.o
  CLNG-BPF [test_maps] test_map_init.bpf.o
  CLNG-BPF [test_maps] test_map_lock.bpf.o
  CLNG-BPF [test_maps] test_map_lookup_percpu_elem.bpf.o
  CLNG-BPF [test_maps] test_map_ops.bpf.o
  CLNG-BPF [test_maps] test_migrate_reuseport.bpf.o
  CLNG-BPF [test_maps] test_misc_tcp_hdr_options.bpf.o
  CLNG-BPF [test_maps] test_mmap.bpf.o
  CLNG-BPF [test_maps] test_module_attach.bpf.o
  CLNG-BPF [test_maps] test_netfilter_link_attach.bpf.o
  CLNG-BPF [test_maps] test_ns_current_pid_tgid.bpf.o
  CLNG-BPF [test_maps] test_obj_id.bpf.o
  CLNG-BPF [test_maps] test_overhead.bpf.o
  CLNG-BPF [test_maps] test_parse_tcp_hdr_opt.bpf.o
  CLNG-BPF [test_maps] test_parse_tcp_hdr_opt_dynptr.bpf.o
  CLNG-BPF [test_maps] test_pe_preserve_elems.bpf.o
  CLNG-BPF [test_maps] test_perf_branches.bpf.o
  CLNG-BPF [test_maps] test_perf_buffer.bpf.o
  CLNG-BPF [test_maps] test_perf_link.bpf.o
  CLNG-BPF [test_maps] test_pinning.bpf.o
  CLNG-BPF [test_maps] test_pinning_invalid.bpf.o
  CLNG-BPF [test_maps] test_pkt_access.bpf.o
  CLNG-BPF [test_maps] test_pkt_md_access.bpf.o
  CLNG-BPF [test_maps] test_probe_read_user_str.bpf.o
  CLNG-BPF [test_maps] test_probe_user.bpf.o
  CLNG-BPF [test_maps] test_prog_array_init.bpf.o
  CLNG-BPF [test_maps] test_ptr_untrusted.bpf.o
  CLNG-BPF [test_maps] test_queue_map.bpf.o
  CLNG-BPF [test_maps] test_raw_tp_test_run.bpf.o
  CLNG-BPF [test_maps] test_rdonly_maps.bpf.o
  CLNG-BPF [test_maps] test_ringbuf.bpf.o
  CLNG-BPF [test_maps] test_ringbuf_map_key.bpf.o
  CLNG-BPF [test_maps] test_ringbuf_multi.bpf.o
  CLNG-BPF [test_maps] test_seg6_loop.bpf.o
  CLNG-BPF [test_maps] test_select_reuseport_kern.bpf.o
  CLNG-BPF [test_maps] test_send_signal_kern.bpf.o
  CLNG-BPF [test_maps] test_sk_assign.bpf.o
  CLNG-BPF [test_maps] test_sk_assign_libbpf.bpf.o
  CLNG-BPF [test_maps] test_sk_lookup.bpf.o
  CLNG-BPF [test_maps] test_sk_lookup_kern.bpf.o
  CLNG-BPF [test_maps] test_sk_storage_trace_itself.bpf.o
  CLNG-BPF [test_maps] test_sk_storage_tracing.bpf.o
  CLNG-BPF [test_maps] test_skb_cgroup_id_kern.bpf.o
  CLNG-BPF [test_maps] test_skb_ctx.bpf.o
  CLNG-BPF [test_maps] test_skb_helpers.bpf.o
  CLNG-BPF [test_maps] test_skc_to_unix_sock.bpf.o
  CLNG-BPF [test_maps] test_skeleton.bpf.o
  CLNG-BPF [test_maps] test_skmsg_load_helpers.bpf.o
  CLNG-BPF [test_maps] test_snprintf.bpf.o
  CLNG-BPF [test_maps] test_snprintf_single.bpf.o
  CLNG-BPF [test_maps] test_sock_fields.bpf.o
  CLNG-BPF [test_maps] test_sockhash_kern.bpf.o
  CLNG-BPF [test_maps] test_sockmap_drop_prog.bpf.o
  CLNG-BPF [test_maps] test_sockmap_invalid_update.bpf.o
  CLNG-BPF [test_maps] test_sockmap_kern.bpf.o
  CLNG-BPF [test_maps] test_sockmap_listen.bpf.o
  CLNG-BPF [test_maps] test_sockmap_pass_prog.bpf.o
  CLNG-BPF [test_maps] test_sockmap_progs_query.bpf.o
  CLNG-BPF [test_maps] test_sockmap_skb_verdict_attach.bpf.o
  CLNG-BPF [test_maps] test_sockmap_update.bpf.o
  CLNG-BPF [test_maps] test_spin_lock.bpf.o
  CLNG-BPF [test_maps] test_spin_lock_fail.bpf.o
  CLNG-BPF [test_maps] test_stack_map.bpf.o
  CLNG-BPF [test_maps] test_stack_var_off.bpf.o
  CLNG-BPF [test_maps] test_stacktrace_build_id.bpf.o
  CLNG-BPF [test_maps] test_stacktrace_map.bpf.o
  CLNG-BPF [test_maps] test_static_linked1.bpf.o
  CLNG-BPF [test_maps] test_static_linked2.bpf.o
  CLNG-BPF [test_maps] test_subprogs.bpf.o
  CLNG-BPF [test_maps] test_subprogs_extable.bpf.o
  CLNG-BPF [test_maps] test_subprogs_unused.bpf.o
  CLNG-BPF [test_maps] test_subskeleton.bpf.o
  CLNG-BPF [test_maps] test_subskeleton_lib.bpf.o
  CLNG-BPF [test_maps] test_subskeleton_lib2.bpf.o
  CLNG-BPF [test_maps] test_sysctl_loop1.bpf.o
  CLNG-BPF [test_maps] test_sysctl_loop2.bpf.o
  CLNG-BPF [test_maps] test_sysctl_prog.bpf.o
  CLNG-BPF [test_maps] test_task_pt_regs.bpf.o
  CLNG-BPF [test_maps] test_task_under_cgroup.bpf.o
  CLNG-BPF [test_maps] test_tc_bpf.bpf.o
  CLNG-BPF [test_maps] test_tc_dtime.bpf.o
  CLNG-BPF [test_maps] test_tc_edt.bpf.o
  CLNG-BPF [test_maps] test_tc_neigh.bpf.o
  CLNG-BPF [test_maps] test_tc_neigh_fib.bpf.o
  CLNG-BPF [test_maps] test_tc_tunnel.bpf.o
  CLNG-BPF [test_maps] test_tc_peer.bpf.o
  CLNG-BPF [test_maps] test_tcp_check_syncookie_kern.bpf.o
  CLNG-BPF [test_maps] test_tcp_estats.bpf.o
  CLNG-BPF [test_maps] test_tcp_hdr_options.bpf.o
  CLNG-BPF [test_maps] test_tcpbpf_kern.bpf.o
  CLNG-BPF [test_maps] test_tcpnotify_kern.bpf.o
  CLNG-BPF [test_maps] test_time_tai.bpf.o
  CLNG-BPF [test_maps] test_trace_ext.bpf.o
  CLNG-BPF [test_maps] test_trace_ext_tracing.bpf.o
  CLNG-BPF [test_maps] test_tracepoint.bpf.o
  CLNG-BPF [test_maps] test_trampoline_count.bpf.o
  CLNG-BPF [test_maps] test_tunnel_kern.bpf.o
  CLNG-BPF [test_maps] test_unpriv_bpf_disabled.bpf.o
  CLNG-BPF [test_maps] test_uprobe_autoattach.bpf.o
  CLNG-BPF [test_maps] test_urandom_usdt.bpf.o
  CLNG-BPF [test_maps] test_usdt.bpf.o
  CLNG-BPF [test_maps] test_usdt_multispec.bpf.o
  CLNG-BPF [test_maps] test_varlen.bpf.o
  CLNG-BPF [test_maps] test_verif_scale1.bpf.o
  CLNG-BPF [test_maps] test_verif_scale2.bpf.o
  CLNG-BPF [test_maps] test_verif_scale3.bpf.o
  CLNG-BPF [test_maps] test_verify_pkcs7_sig.bpf.o
  CLNG-BPF [test_maps] test_vmlinux.bpf.o
  CLNG-BPF [test_maps] test_xdp.bpf.o
  CLNG-BPF [test_maps] test_xdp_adjust_tail_grow.bpf.o
  CLNG-BPF [test_maps] test_xdp_adjust_tail_shrink.bpf.o
  CLNG-BPF [test_maps] test_xdp_bpf2bpf.bpf.o
  CLNG-BPF [test_maps] test_xdp_context_test_run.bpf.o
  CLNG-BPF [test_maps] test_xdp_devmap_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_do_redirect.bpf.o
  CLNG-BPF [test_maps] test_xdp_dynptr.bpf.o
  CLNG-BPF [test_maps] test_xdp_link.bpf.o
  CLNG-BPF [test_maps] test_xdp_loop.bpf.o
  CLNG-BPF [test_maps] test_xdp_meta.bpf.o
  CLNG-BPF [test_maps] test_xdp_noinline.bpf.o
  CLNG-BPF [test_maps] test_xdp_redirect.bpf.o
  CLNG-BPF [test_maps] test_xdp_update_frags.bpf.o
  CLNG-BPF [test_maps] test_xdp_vlan.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_cpumap_frags_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_cpumap_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_devmap_frags_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_devmap_helpers.bpf.o
  CLNG-BPF [test_maps] timer.bpf.o
  CLNG-BPF [test_maps] timer_crash.bpf.o
  CLNG-BPF [test_maps] timer_mim.bpf.o
  CLNG-BPF [test_maps] timer_mim_reject.bpf.o
  CLNG-BPF [test_maps] trace_dummy_st_ops.bpf.o
  CLNG-BPF [test_maps] trace_printk.bpf.o
  CLNG-BPF [test_maps] trace_vprintk.bpf.o
  CLNG-BPF [test_maps] tracing_struct.bpf.o
  CLNG-BPF [test_maps] trigger_bench.bpf.o
  CLNG-BPF [test_maps] twfw.bpf.o
  CLNG-BPF [test_maps] type_cast.bpf.o
  CLNG-BPF [test_maps] udp_limit.bpf.o
  CLNG-BPF [test_maps] uninit_stack.bpf.o
  CLNG-BPF [test_maps] user_ringbuf_fail.bpf.o
  CLNG-BPF [test_maps] user_ringbuf_success.bpf.o
  CLNG-BPF [test_maps] verifier_and.bpf.o
  CLNG-BPF [test_maps] verifier_array_access.bpf.o
  CLNG-BPF [test_maps] verifier_basic_stack.bpf.o
  CLNG-BPF [test_maps] verifier_bounds.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_deduction.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_deduction_non_const.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_mix_sign_unsign.bpf.o
  CLNG-BPF [test_maps] verifier_bpf_get_stack.bpf.o
  CLNG-BPF [test_maps] verifier_btf_ctx_access.bpf.o
  CLNG-BPF [test_maps] verifier_cfg.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_inv_retcode.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_skb.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_storage.bpf.o
  CLNG-BPF [test_maps] verifier_const_or.bpf.o
  CLNG-BPF [test_maps] verifier_ctx.bpf.o
  CLNG-BPF [test_maps] verifier_ctx_sk_msg.bpf.o
  CLNG-BPF [test_maps] verifier_d_path.bpf.o
  CLNG-BPF [test_maps] verifier_direct_packet_access.bpf.o
  CLNG-BPF [test_maps] verifier_direct_stack_access_wraparound.bpf.o
  CLNG-BPF [test_maps] verifier_div0.bpf.o
  CLNG-BPF [test_maps] verifier_div_overflow.bpf.o
  CLNG-BPF [test_maps] verifier_helper_access_var_len.bpf.o
  CLNG-BPF [test_maps] verifier_helper_packet_access.bpf.o
  CLNG-BPF [test_maps] verifier_helper_restricted.bpf.o
  CLNG-BPF [test_maps] verifier_helper_value_access.bpf.o
  CLNG-BPF [test_maps] verifier_int_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_jeq_infer_not_null.bpf.o
  CLNG-BPF [test_maps] verifier_ld_ind.bpf.o
  CLNG-BPF [test_maps] verifier_leak_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_loops1.bpf.o
  CLNG-BPF [test_maps] verifier_lwt.bpf.o
  CLNG-BPF [test_maps] verifier_map_in_map.bpf.o
  CLNG-BPF [test_maps] verifier_map_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_map_ptr_mixing.bpf.o
  CLNG-BPF [test_maps] verifier_map_ret_val.bpf.o
  CLNG-BPF [test_maps] verifier_masking.bpf.o
  CLNG-BPF [test_maps] verifier_meta_access.bpf.o
  CLNG-BPF [test_maps] verifier_netfilter_ctx.bpf.o
  CLNG-BPF [test_maps] verifier_netfilter_retcode.bpf.o
  CLNG-BPF [test_maps] verifier_prevent_map_lookup.bpf.o
  CLNG-BPF [test_maps] verifier_raw_tp_writable.bpf.o
  CLNG-BPF [test_maps] verifier_raw_stack.bpf.o
  CLNG-BPF [test_maps] verifier_ref_tracking.bpf.o
  CLNG-BPF [test_maps] verifier_reg_equal.bpf.o
  CLNG-BPF [test_maps] verifier_regalloc.bpf.o
  CLNG-BPF [test_maps] verifier_ringbuf.bpf.o
  CLNG-BPF [test_maps] verifier_runtime_jit.bpf.o
  CLNG-BPF [test_maps] verifier_scalar_ids.bpf.o
  CLNG-BPF [test_maps] verifier_search_pruning.bpf.o
  CLNG-BPF [test_maps] verifier_sock.bpf.o
  CLNG-BPF [test_maps] verifier_spill_fill.bpf.o
  CLNG-BPF [test_maps] verifier_spin_lock.bpf.o
  CLNG-BPF [test_maps] verifier_stack_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_subprog_precision.bpf.o
  CLNG-BPF [test_maps] verifier_subreg.bpf.o
  CLNG-BPF [test_maps] verifier_typedef.bpf.o
  CLNG-BPF [test_maps] verifier_uninit.bpf.o
  CLNG-BPF [test_maps] verifier_unpriv.bpf.o
  CLNG-BPF [test_maps] verifier_unpriv_perf.bpf.o
  CLNG-BPF [test_maps] verifier_value.bpf.o
  CLNG-BPF [test_maps] verifier_value_adj_spill.bpf.o
  CLNG-BPF [test_maps] verifier_value_illegal_alu.bpf.o
  CLNG-BPF [test_maps] verifier_value_or_null.bpf.o
  CLNG-BPF [test_maps] verifier_value_ptr_arith.bpf.o
  CLNG-BPF [test_maps] verifier_xadd.bpf.o
  CLNG-BPF [test_maps] verifier_var_off.bpf.o
  CLNG-BPF [test_maps] verifier_xdp.bpf.o
  CLNG-BPF [test_maps] verifier_xdp_direct_packet_access.bpf.o
  CLNG-BPF [test_maps] vrf_socket_lookup.bpf.o
  CLNG-BPF [test_maps] xdp_dummy.bpf.o
  CLNG-BPF [test_maps] xdp_features.bpf.o
  CLNG-BPF [test_maps] xdp_hw_metadata.bpf.o
  CLNG-BPF [test_maps] xdp_metadata.bpf.o
  CLNG-BPF [test_maps] xdp_metadata2.bpf.o
  CLNG-BPF [test_maps] xdp_redirect_map.bpf.o
  CLNG-BPF [test_maps] xdp_redirect_multi_kern.bpf.o
  CLNG-BPF [test_maps] xdp_synproxy_kern.bpf.o
  CLNG-BPF [test_maps] xdp_tx.bpf.o
  CLNG-BPF [test_maps] xdping_kern.bpf.o
  CLNG-BPF [test_maps] xdpwall.bpf.o
  CLNG-BPF [test_maps] xfrm_info.bpf.o
  GEN-SKEL [test_progs] async_stack_depth.skel.h
  CLNG-BPF [test_maps] xsk_xdp_progs.bpf.o
  GEN-SKEL [test_progs] atomic_bounds.skel.h
  GEN-SKEL [test_progs] bench_local_storage_create.skel.h
  GEN-SKEL [test_progs] bind4_prog.skel.h
  GEN-SKEL [test_progs] bind6_prog.skel.h
  GEN-SKEL [test_progs] bind_perm.skel.h
  GEN-SKEL [test_progs] bloom_filter_bench.skel.h
  GEN-SKEL [test_progs] bloom_filter_map.skel.h
  GEN-SKEL [test_progs] bpf_cubic.skel.h
  GEN-SKEL [test_progs] bpf_dctcp.skel.h
  GEN-SKEL [test_progs] bpf_dctcp_release.skel.h
  GEN-SKEL [test_progs] bpf_flow.skel.h
  GEN-SKEL [test_progs] bpf_hashmap_full_update_bench.skel.h
  GEN-SKEL [test_progs] bpf_hashmap_lookup.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_array_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_hash_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_link.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_percpu_array_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_percpu_hash_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_sk_storage_helpers.skel.h
  GEN-SKEL [test_progs] bpf_iter_bpf_sk_storage_map.skel.h
  GEN-SKEL [test_progs] bpf_iter_ipv6_route.skel.h
  GEN-SKEL [test_progs] bpf_iter_ksym.skel.h
  GEN-SKEL [test_progs] bpf_iter_netlink.skel.h
  GEN-SKEL [test_progs] bpf_iter_setsockopt.skel.h
  GEN-SKEL [test_progs] bpf_iter_setsockopt_unix.skel.h
  GEN-SKEL [test_progs] bpf_iter_sockmap.skel.h
  GEN-SKEL [test_progs] bpf_iter_task.skel.h
  GEN-SKEL [test_progs] bpf_iter_task_btf.skel.h
  GEN-SKEL [test_progs] bpf_iter_task_file.skel.h
  GEN-SKEL [test_progs] bpf_iter_task_stack.skel.h
  GEN-SKEL [test_progs] bpf_iter_task_vma.skel.h
  GEN-SKEL [test_progs] bpf_iter_tcp4.skel.h
  GEN-SKEL [test_progs] bpf_iter_tcp6.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern1.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern3.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern2.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern4.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern6.skel.h
  GEN-SKEL [test_progs] bpf_iter_test_kern5.skel.h
  GEN-SKEL [test_progs] bpf_iter_udp4.skel.h
  GEN-SKEL [test_progs] bpf_iter_udp6.skel.h
  GEN-SKEL [test_progs] bpf_iter_unix.skel.h
  GEN-SKEL [test_progs] bpf_iter_vma_offset.skel.h
  GEN-SKEL [test_progs] bpf_loop.skel.h
  GEN-SKEL [test_progs] bpf_loop_bench.skel.h
  GEN-SKEL [test_progs] bpf_mod_race.skel.h
  GEN-SKEL [test_progs] bpf_syscall_macro.skel.h
  GEN-SKEL [test_progs] bpf_tcp_nogpl.skel.h
  GEN-SKEL [test_progs] bprm_opts.skel.h
  GEN-SKEL [test_progs] btf_data.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_bitfields.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_multidim.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_namespacing.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_ordering.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_packing.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_padding.skel.h
  GEN-SKEL [test_progs] btf_dump_test_case_syntax.skel.h
  GEN-SKEL [test_progs] btf_type_tag.skel.h
  GEN-SKEL [test_progs] btf_type_tag_percpu.skel.h
  GEN-SKEL [test_progs] btf_type_tag_user.skel.h
  GEN-SKEL [test_progs] cb_refs.skel.h
  GEN-SKEL [test_progs] cg_storage_multi_egress_only.skel.h
  GEN-SKEL [test_progs] cg_storage_multi_isolated.skel.h
  GEN-SKEL [test_progs] cg_storage_multi_shared.skel.h
  GEN-SKEL [test_progs] cgroup_getset_retval_getsockopt.skel.h
  GEN-SKEL [test_progs] cgroup_getset_retval_hooks.skel.h
  GEN-SKEL [test_progs] cgroup_getset_retval_setsockopt.skel.h
  GEN-SKEL [test_progs] cgroup_hierarchical_stats.skel.h
  GEN-SKEL [test_progs] cgroup_iter.skel.h
  GEN-SKEL [test_progs] cgroup_skb_sk_lookup_kern.skel.h
  GEN-SKEL [test_progs] cgroup_tcp_skb.skel.h
  GEN-SKEL [test_progs] cgrp_kfunc_failure.skel.h
  GEN-SKEL [test_progs] cgrp_kfunc_success.skel.h
  GEN-SKEL [test_progs] cgrp_ls_attach_cgroup.skel.h
  GEN-SKEL [test_progs] cgrp_ls_negative.skel.h
  GEN-SKEL [test_progs] cgrp_ls_recursion.skel.h
  GEN-SKEL [test_progs] cgrp_ls_sleepable.skel.h
  GEN-SKEL [test_progs] connect4_dropper.skel.h
  GEN-SKEL [test_progs] cgrp_ls_tp_btf.skel.h
  GEN-SKEL [test_progs] connect4_prog.skel.h
  GEN-SKEL [test_progs] connect6_prog.skel.h
  GEN-SKEL [test_progs] connect_force_port4.skel.h
  GEN-SKEL [test_progs] connect_force_port6.skel.h
  GEN-SKEL [test_progs] connect_ping.skel.h
  GEN-SKEL [test_progs] cpumask_failure.skel.h
  GEN-SKEL [test_progs] cpumask_success.skel.h
  GEN-SKEL [test_progs] decap_sanity.skel.h
  GEN-SKEL [test_progs] dev_cgroup.skel.h
  GEN-SKEL [test_progs] dummy_st_ops_fail.skel.h
  GEN-SKEL [test_progs] dynptr_fail.skel.h
  GEN-SKEL [test_progs] dummy_st_ops_success.skel.h
  GEN-SKEL [test_progs] dynptr_success.skel.h
  GEN-SKEL [test_progs] empty_skb.skel.h
  GEN-SKEL [test_progs] exhandler_kern.skel.h
  GEN-SKEL [test_progs] fentry_many_args.skel.h
  GEN-SKEL [test_progs] fexit_bpf2bpf.skel.h
  GEN-SKEL [test_progs] fexit_bpf2bpf_simple.skel.h
  GEN-SKEL [test_progs] fexit_many_args.skel.h
  GEN-SKEL [test_progs] fib_lookup.skel.h
  GEN-SKEL [test_progs] find_vma.skel.h
  GEN-SKEL [test_progs] find_vma_fail1.skel.h
  GEN-SKEL [test_progs] find_vma_fail2.skel.h
  GEN-SKEL [test_progs] fmod_ret_freplace.skel.h
  GEN-SKEL [test_progs] for_each_array_map_elem.skel.h
  GEN-SKEL [test_progs] for_each_hash_map_elem.skel.h
  GEN-SKEL [test_progs] for_each_map_elem_write_key.skel.h
  GEN-SKEL [test_progs] freplace_attach_probe.skel.h
  GEN-SKEL [test_progs] freplace_cls_redirect.skel.h
  GEN-SKEL [test_progs] freplace_connect4.skel.h
  GEN-SKEL [test_progs] freplace_connect_v4_prog.skel.h
  GEN-SKEL [test_progs] freplace_global_func.skel.h
  GEN-SKEL [test_progs] freplace_get_constant.skel.h
  GEN-SKEL [test_progs] freplace_progmap.skel.h
  GEN-SKEL [test_progs] get_branch_snapshot.skel.h
  GEN-SKEL [test_progs] get_cgroup_id_kern.skel.h
  GEN-SKEL [test_progs] get_func_args_test.skel.h
  GEN-SKEL [test_progs] get_func_ip_test.skel.h
  GEN-SKEL [test_progs] htab_mem_bench.skel.h
  GEN-SKEL [test_progs] htab_reuse.skel.h
  GEN-SKEL [test_progs] htab_update.skel.h
  GEN-SKEL [test_progs] ima.skel.h
  GEN-SKEL [test_progs] inner_array_lookup.skel.h
  GEN-SKEL [test_progs] iters.skel.h
  GEN-SKEL [test_progs] iters_looping.skel.h
  GEN-SKEL [test_progs] iters_num.skel.h
  GEN-SKEL [test_progs] iters_state_safety.skel.h
  GEN-SKEL [test_progs] iters_testmod_seq.skel.h
  GEN-SKEL [test_progs] jit_probe_mem.skel.h
  GEN-SKEL [test_progs] jeq_infer_not_null_fail.skel.h
  GEN-SKEL [test_progs] kfunc_call_destructive.skel.h
  GEN-SKEL [test_progs] kfree_skb.skel.h
  GEN-SKEL [test_progs] kfunc_call_race.skel.h
  GEN-SKEL [test_progs] kfunc_call_test.skel.h
  GEN-SKEL [test_progs] kfunc_call_fail.skel.h
  GEN-SKEL [test_progs] kfunc_call_test_subprog.skel.h
  GEN-SKEL [test_progs] kprobe_multi.skel.h
  GEN-SKEL [test_progs] kprobe_multi_empty.skel.h
  GEN-SKEL [test_progs] ksym_race.skel.h
  GEN-SKEL [test_progs] linked_list.skel.h
  GEN-SKEL [test_progs] linked_list_fail.skel.h
  GEN-SKEL [test_progs] load_bytes_relative.skel.h
  GEN-SKEL [test_progs] local_kptr_stash.skel.h
  GEN-SKEL [test_progs] local_storage.skel.h
  GEN-SKEL [test_progs] local_storage_rcu_tasks_trace_bench.skel.h
  GEN-SKEL [test_progs] local_storage_bench.skel.h
  GEN-SKEL [test_progs] loop1.skel.h
  GEN-SKEL [test_progs] loop2.skel.h
  GEN-SKEL [test_progs] loop3.skel.h
  GEN-SKEL [test_progs] loop4.skel.h
  GEN-SKEL [test_progs] loop5.skel.h
  GEN-SKEL [test_progs] loop6.skel.h
  GEN-SKEL [test_progs] lru_bug.skel.h
  GEN-SKEL [test_progs] lsm.skel.h
  GEN-SKEL [test_progs] lsm_cgroup.skel.h
  GEN-SKEL [test_progs] lsm_cgroup_nonvoid.skel.h
  GEN-SKEL [test_progs] map_kptr.skel.h
  GEN-SKEL [test_progs] map_kptr_fail.skel.h
  GEN-SKEL [test_progs] map_percpu_stats.skel.h
  GEN-SKEL [test_progs] metadata_unused.skel.h
  GEN-SKEL [test_progs] metadata_used.skel.h
  GEN-SKEL [test_progs] modify_return.skel.h
  GEN-SKEL [test_progs] mptcp_sock.skel.h
  GEN-SKEL [test_progs] nested_trust_failure.skel.h
  GEN-SKEL [test_progs] nested_trust_success.skel.h
  GEN-SKEL [test_progs] netif_receive_skb.skel.h
  GEN-SKEL [test_progs] netns_cookie_prog.skel.h
  GEN-SKEL [test_progs] netcnt_prog.skel.h
  GEN-SKEL [test_progs] perf_event_stackmap.skel.h
  GEN-SKEL [test_progs] perfbuf_bench.skel.h
  GEN-SKEL [test_progs] profiler1.skel.h
  GEN-SKEL [test_progs] profiler2.skel.h
  GEN-SKEL [test_progs] profiler3.skel.h
  GEN-SKEL [test_progs] pyperf50.skel.h
  GEN-SKEL [test_progs] pyperf600_bpf_loop.skel.h
  GEN-SKEL [test_progs] pyperf600_iter.skel.h
  GEN-SKEL [test_progs] pyperf600_nounroll.skel.h
  GEN-SKEL [test_progs] pyperf_global.skel.h
  GEN-SKEL [test_progs] pyperf_subprogs.skel.h
  GEN-SKEL [test_progs] rbtree.skel.h
  GEN-SKEL [test_progs] rbtree_btf_fail__add_wrong_type.skel.h
  GEN-SKEL [test_progs] rbtree_btf_fail__wrong_node_type.skel.h
  GEN-SKEL [test_progs] rbtree_fail.skel.h
  GEN-SKEL [test_progs] rcu_read_lock.skel.h
  GEN-SKEL [test_progs] read_bpf_task_storage_busy.skel.h
  GEN-SKEL [test_progs] rcu_tasks_trace_gp.skel.h
  GEN-SKEL [test_progs] recursion.skel.h
  GEN-SKEL [test_progs] recvmsg4_prog.skel.h
  GEN-SKEL [test_progs] refcounted_kptr.skel.h
  GEN-SKEL [test_progs] recvmsg6_prog.skel.h
  GEN-SKEL [test_progs] refcounted_kptr_fail.skel.h
  GEN-SKEL [test_progs] ringbuf_bench.skel.h
  GEN-SKEL [test_progs] sample_map_ret0.skel.h
  GEN-SKEL [test_progs] sample_ret0.skel.h
  GEN-SKEL [test_progs] sendmsg4_prog.skel.h
  GEN-SKEL [test_progs] sendmsg6_prog.skel.h
  GEN-SKEL [test_progs] setget_sockopt.skel.h
  GEN-SKEL [test_progs] skb_pkt_end.skel.h
  GEN-SKEL [test_progs] skb_load_bytes.skel.h
  GEN-SKEL [test_progs] sock_destroy_prog.skel.h
  GEN-SKEL [test_progs] sock_destroy_prog_fail.skel.h
  GEN-SKEL [test_progs] socket_cookie_prog.skel.h
  GEN-SKEL [test_progs] sockmap_parse_prog.skel.h
  GEN-SKEL [test_progs] sockmap_verdict_prog.skel.h
  GEN-SKEL [test_progs] sockopt_multi.skel.h
  GEN-SKEL [test_progs] sockopt_inherit.skel.h
  GEN-SKEL [test_progs] sockopt_qos_to_cc.skel.h
  GEN-SKEL [test_progs] sockmap_tcp_msg_prog.skel.h
  GEN-SKEL [test_progs] sockopt_sk.skel.h
  GEN-SKEL [test_progs] stacktrace_map_skip.skel.h
  GEN-SKEL [test_progs] strncmp_bench.skel.h
  GEN-SKEL [test_progs] strncmp_test.skel.h
  GEN-SKEL [test_progs] strobemeta.skel.h
  GEN-SKEL [test_progs] strobemeta_bpf_loop.skel.h
  GEN-SKEL [test_progs] strobemeta_nounroll1.skel.h
  GEN-SKEL [test_progs] strobemeta_nounroll2.skel.h
  GEN-SKEL [test_progs] strobemeta_subprogs.skel.h
  GEN-SKEL [test_progs] syscall.skel.h
  GEN-SKEL [test_progs] tailcall1.skel.h
  GEN-SKEL [test_progs] tailcall2.skel.h
  GEN-SKEL [test_progs] tailcall3.skel.h
  GEN-SKEL [test_progs] tailcall4.skel.h
  GEN-SKEL [test_progs] tailcall5.skel.h
  GEN-SKEL [test_progs] tailcall6.skel.h
  GEN-SKEL [test_progs] tailcall_bpf2bpf1.skel.h
  GEN-SKEL [test_progs] tailcall_bpf2bpf2.skel.h
  GEN-SKEL [test_progs] tailcall_bpf2bpf4.skel.h
  GEN-SKEL [test_progs] tailcall_bpf2bpf6.skel.h
  GEN-SKEL [test_progs] tailcall_bpf2bpf3.skel.h
  GEN-SKEL [test_progs] task_kfunc_failure.skel.h
  GEN-SKEL [test_progs] task_kfunc_success.skel.h
  GEN-SKEL [test_progs] task_local_storage.skel.h
  GEN-SKEL [test_progs] task_local_storage_exit_creds.skel.h
  GEN-SKEL [test_progs] task_ls_recursion.skel.h
  GEN-SKEL [test_progs] task_storage_nodeadlock.skel.h
  GEN-SKEL [test_progs] tcp_ca_unsupp_cong_op.skel.h
  GEN-SKEL [test_progs] tcp_ca_update.skel.h
  GEN-SKEL [test_progs] tcp_ca_incompl_cong_ops.skel.h
  GEN-SKEL [test_progs] tcp_ca_write_sk_pacing.skel.h
  GEN-SKEL [test_progs] tcp_rtt.skel.h
  GEN-SKEL [test_progs] test_access_variable_array.skel.h
  GEN-SKEL [test_progs] test_attach_kprobe_sleepable.skel.h
  GEN-SKEL [test_progs] test_attach_probe.skel.h
  GEN-SKEL [test_progs] test_attach_probe_manual.skel.h
  GEN-SKEL [test_progs] test_autoattach.skel.h
  GEN-SKEL [test_progs] test_autoload.skel.h
  GEN-SKEL [test_progs] test_bpf_cookie.skel.h
  GEN-SKEL [test_progs] test_bpf_nf.skel.h
  GEN-SKEL [test_progs] test_bpf_nf_fail.skel.h
  GEN-SKEL [test_progs] test_btf_decl_tag.skel.h
  GEN-SKEL [test_progs] test_btf_map_in_map.skel.h
  GEN-SKEL [test_progs] test_btf_newkv.skel.h
  GEN-SKEL [test_progs] test_btf_nokv.skel.h
  GEN-SKEL [test_progs] test_btf_skc_cls_ingress.skel.h
  GEN-SKEL [test_progs] test_cgroup_link.skel.h
  GEN-SKEL [test_progs] test_check_mtu.skel.h
  GEN-SKEL [test_progs] test_cls_redirect.skel.h
  GEN-SKEL [test_progs] test_cls_redirect_dynptr.skel.h
  GEN-SKEL [test_progs] test_cls_redirect_subprogs.skel.h
  GEN-SKEL [test_progs] test_core_autosize.skel.h
  GEN-SKEL [test_progs] test_core_extern.skel.h
  GEN-SKEL [test_progs] test_core_read_macros.skel.h
  GEN-SKEL [test_progs] test_core_reloc_arrays.skel.h
  GEN-SKEL [test_progs] test_core_reloc_bitfields_direct.skel.h
  GEN-SKEL [test_progs] test_core_reloc_enum64val.skel.h
  GEN-SKEL [test_progs] test_core_reloc_bitfields_probed.skel.h
  GEN-SKEL [test_progs] test_core_reloc_enumval.skel.h
  GEN-SKEL [test_progs] test_core_reloc_existence.skel.h
  GEN-SKEL [test_progs] test_core_reloc_flavors.skel.h
  GEN-SKEL [test_progs] test_core_reloc_ints.skel.h
  GEN-SKEL [test_progs] test_core_reloc_kernel.skel.h
  GEN-SKEL [test_progs] test_core_reloc_mods.skel.h
  GEN-SKEL [test_progs] test_core_reloc_misc.skel.h
  GEN-SKEL [test_progs] test_core_reloc_module.skel.h
  GEN-SKEL [test_progs] test_core_reloc_nesting.skel.h
  GEN-SKEL [test_progs] test_core_reloc_primitives.skel.h
  GEN-SKEL [test_progs] test_core_reloc_size.skel.h
  GEN-SKEL [test_progs] test_core_reloc_type_based.skel.h
  GEN-SKEL [test_progs] test_core_reloc_type_id.skel.h
  GEN-SKEL [test_progs] test_core_retro.skel.h
  GEN-SKEL [test_progs] test_custom_sec_handlers.skel.h
  GEN-SKEL [test_progs] test_core_reloc_ptr_as_arr.skel.h
  GEN-SKEL [test_progs] test_d_path.skel.h
  GEN-SKEL [test_progs] test_d_path_check_rdonly_mem.skel.h
  GEN-SKEL [test_progs] test_d_path_check_types.skel.h
  GEN-SKEL [test_progs] test_deny_namespace.skel.h
  GEN-SKEL [test_progs] test_enable_stats.skel.h
  GEN-SKEL [test_progs] test_endian.skel.h
  GEN-SKEL [test_progs] test_get_stack_rawtp.skel.h
  GEN-SKEL [test_progs] test_get_stack_rawtp_err.skel.h
  GEN-SKEL [test_progs] test_global_data.skel.h
  GEN-SKEL [test_progs] test_global_func1.skel.h
  GEN-SKEL [test_progs] test_global_func10.skel.h
  GEN-SKEL [test_progs] test_global_func11.skel.h
  GEN-SKEL [test_progs] test_global_func12.skel.h
  GEN-SKEL [test_progs] test_global_func14.skel.h
  GEN-SKEL [test_progs] test_global_func15.skel.h
  GEN-SKEL [test_progs] test_global_func13.skel.h
  GEN-SKEL [test_progs] test_global_func16.skel.h
  GEN-SKEL [test_progs] test_global_func17.skel.h
  GEN-SKEL [test_progs] test_global_func2.skel.h
  GEN-SKEL [test_progs] test_global_func3.skel.h
  GEN-SKEL [test_progs] test_global_func4.skel.h
  GEN-SKEL [test_progs] test_global_func5.skel.h
  GEN-SKEL [test_progs] test_global_func6.skel.h
  GEN-SKEL [test_progs] test_global_func8.skel.h
  GEN-SKEL [test_progs] test_global_func7.skel.h
  GEN-SKEL [test_progs] test_global_func9.skel.h
  GEN-SKEL [test_progs] test_global_func_args.skel.h
  GEN-SKEL [test_progs] test_global_func_ctx_args.skel.h
  GEN-SKEL [test_progs] test_global_map_resize.skel.h
  GEN-SKEL [test_progs] test_hash_large_key.skel.h
  GEN-SKEL [test_progs] test_kfunc_dynptr_param.skel.h
  GEN-SKEL [test_progs] test_helper_restricted.skel.h
  GEN-SKEL [test_progs] test_ksyms.skel.h
  GEN-SKEL [test_progs] test_ksyms_btf.skel.h
  GEN-SKEL [test_progs] test_ksyms_btf_null_check.skel.h
  GEN-SKEL [test_progs] test_ksyms_btf_write_check.skel.h
  GEN-SKEL [test_progs] test_ksyms_module.skel.h
  GEN-SKEL [test_progs] test_ksyms_weak.skel.h
  GEN-SKEL [test_progs] test_l4lb.skel.h
  GEN-SKEL [test_progs] test_l4lb_noinline.skel.h
  GEN-SKEL [test_progs] test_legacy_printk.skel.h
  GEN-SKEL [test_progs] test_l4lb_noinline_dynptr.skel.h
  GEN-SKEL [test_progs] test_libbpf_get_fd_by_id_opts.skel.h
  GEN-SKEL [test_progs] test_link_pinning.skel.h
  GEN-SKEL [test_progs] test_lirc_mode2_kern.skel.h
  GEN-SKEL [test_progs] test_log_buf.skel.h
  GEN-SKEL [test_progs] test_log_fixup.skel.h
  GEN-SKEL [test_progs] test_lookup_and_delete.skel.h
  GEN-SKEL [test_progs] test_lookup_key.skel.h
  GEN-SKEL [test_progs] test_lwt_ip_encap.skel.h
  GEN-SKEL [test_progs] test_lwt_seg6local.skel.h
  GEN-SKEL [test_progs] test_map_in_map.skel.h
  GEN-SKEL [test_progs] test_map_in_map_invalid.skel.h
  GEN-SKEL [test_progs] test_map_init.skel.h
  GEN-SKEL [test_progs] test_map_lock.skel.h
  GEN-SKEL [test_progs] test_map_lookup_percpu_elem.skel.h
  GEN-SKEL [test_progs] test_map_ops.skel.h
  GEN-SKEL [test_progs] test_migrate_reuseport.skel.h
  GEN-SKEL [test_progs] test_mmap.skel.h
  GEN-SKEL [test_progs] test_misc_tcp_hdr_options.skel.h
  GEN-SKEL [test_progs] test_module_attach.skel.h
  GEN-SKEL [test_progs] test_netfilter_link_attach.skel.h
  GEN-SKEL [test_progs] test_ns_current_pid_tgid.skel.h
  GEN-SKEL [test_progs] test_obj_id.skel.h
  GEN-SKEL [test_progs] test_parse_tcp_hdr_opt.skel.h
  GEN-SKEL [test_progs] test_parse_tcp_hdr_opt_dynptr.skel.h
  GEN-SKEL [test_progs] test_pe_preserve_elems.skel.h
  GEN-SKEL [test_progs] test_perf_branches.skel.h
  GEN-SKEL [test_progs] test_overhead.skel.h
  GEN-SKEL [test_progs] test_perf_buffer.skel.h
  GEN-SKEL [test_progs] test_perf_link.skel.h
  GEN-SKEL [test_progs] test_pkt_md_access.skel.h
  GEN-SKEL [test_progs] test_pkt_access.skel.h
  GEN-SKEL [test_progs] test_pinning.skel.h
  GEN-SKEL [test_progs] test_probe_user.skel.h
  GEN-SKEL [test_progs] test_probe_read_user_str.skel.h
  GEN-SKEL [test_progs] test_prog_array_init.skel.h
  GEN-SKEL [test_progs] test_ptr_untrusted.skel.h
  GEN-SKEL [test_progs] test_queue_map.skel.h
  GEN-SKEL [test_progs] test_raw_tp_test_run.skel.h
  GEN-SKEL [test_progs] test_rdonly_maps.skel.h
  GEN-SKEL [test_progs] test_ringbuf_multi.skel.h
  GEN-SKEL [test_progs] test_seg6_loop.skel.h
  GEN-SKEL [test_progs] test_select_reuseport_kern.skel.h
  GEN-SKEL [test_progs] test_send_signal_kern.skel.h
  GEN-SKEL [test_progs] test_sk_assign_libbpf.skel.h
  GEN-SKEL [test_progs] test_sk_lookup.skel.h
  GEN-SKEL [test_progs] test_sk_lookup_kern.skel.h
  GEN-SKEL [test_progs] test_sk_storage_trace_itself.skel.h
  GEN-SKEL [test_progs] test_sk_storage_tracing.skel.h
  GEN-SKEL [test_progs] test_skb_cgroup_id_kern.skel.h
  GEN-SKEL [test_progs] test_skb_ctx.skel.h
  GEN-SKEL [test_progs] test_skb_helpers.skel.h
  GEN-SKEL [test_progs] test_skc_to_unix_sock.skel.h
  GEN-SKEL [test_progs] test_skeleton.skel.h
  GEN-SKEL [test_progs] test_skmsg_load_helpers.skel.h
  GEN-SKEL [test_progs] test_snprintf.skel.h
  GEN-SKEL [test_progs] test_sock_fields.skel.h
  GEN-SKEL [test_progs] test_snprintf_single.skel.h
  GEN-SKEL [test_progs] test_sockhash_kern.skel.h
  GEN-SKEL [test_progs] test_sockmap_drop_prog.skel.h
  GEN-SKEL [test_progs] test_sockmap_invalid_update.skel.h
  GEN-SKEL [test_progs] test_sockmap_kern.skel.h
  GEN-SKEL [test_progs] test_sockmap_listen.skel.h
  GEN-SKEL [test_progs] test_sockmap_pass_prog.skel.h
  GEN-SKEL [test_progs] test_sockmap_progs_query.skel.h
  GEN-SKEL [test_progs] test_spin_lock.skel.h
  GEN-SKEL [test_progs] test_sockmap_skb_verdict_attach.skel.h
  GEN-SKEL [test_progs] test_spin_lock_fail.skel.h
  GEN-SKEL [test_progs] test_sockmap_update.skel.h
  GEN-SKEL [test_progs] test_stack_map.skel.h
  GEN-SKEL [test_progs] test_stack_var_off.skel.h
  GEN-SKEL [test_progs] test_stacktrace_build_id.skel.h
  GEN-SKEL [test_progs] test_stacktrace_map.skel.h
  GEN-SKEL [test_progs] test_subprogs.skel.h
  GEN-SKEL [test_progs] test_subprogs_extable.skel.h
  GEN-SKEL [test_progs] test_subprogs_unused.skel.h
  GEN-SKEL [test_progs] test_sysctl_loop1.skel.h
  GEN-SKEL [test_progs] test_sysctl_loop2.skel.h
  GEN-SKEL [test_progs] test_sysctl_prog.skel.h
  GEN-SKEL [test_progs] test_task_pt_regs.skel.h
  GEN-SKEL [test_progs] test_task_under_cgroup.skel.h
  GEN-SKEL [test_progs] test_tc_edt.skel.h
  GEN-SKEL [test_progs] test_tc_bpf.skel.h
  GEN-SKEL [test_progs] test_tc_dtime.skel.h
  GEN-SKEL [test_progs] test_tc_neigh.skel.h
  GEN-SKEL [test_progs] test_tc_neigh_fib.skel.h
  GEN-SKEL [test_progs] test_tc_peer.skel.h
  GEN-SKEL [test_progs] test_tc_tunnel.skel.h
  GEN-SKEL [test_progs] test_tcp_check_syncookie_kern.skel.h
  GEN-SKEL [test_progs] test_tcp_estats.skel.h
  GEN-SKEL [test_progs] test_tcp_hdr_options.skel.h
  GEN-SKEL [test_progs] test_tcpbpf_kern.skel.h
  GEN-SKEL [test_progs] test_time_tai.skel.h
  GEN-SKEL [test_progs] test_trace_ext.skel.h
  GEN-SKEL [test_progs] test_trace_ext_tracing.skel.h
  GEN-SKEL [test_progs] test_tracepoint.skel.h
  GEN-SKEL [test_progs] test_trampoline_count.skel.h
  GEN-SKEL [test_progs] test_tunnel_kern.skel.h
  GEN-SKEL [test_progs] test_tcpnotify_kern.skel.h
  GEN-SKEL [test_progs] test_unpriv_bpf_disabled.skel.h
  GEN-SKEL [test_progs] test_uprobe_autoattach.skel.h
  GEN-SKEL [test_progs] test_urandom_usdt.skel.h
  GEN-SKEL [test_progs] test_varlen.skel.h
  GEN-SKEL [test_progs] test_verif_scale1.skel.h
  GEN-SKEL [test_progs] test_verif_scale2.skel.h
  GEN-SKEL [test_progs] test_verif_scale3.skel.h
  GEN-SKEL [test_progs] test_verify_pkcs7_sig.skel.h
  GEN-SKEL [test_progs] test_vmlinux.skel.h
  GEN-SKEL [test_progs] test_xdp.skel.h
  GEN-SKEL [test_progs] test_xdp_adjust_tail_grow.skel.h
  GEN-SKEL [test_progs] test_xdp_adjust_tail_shrink.skel.h
  GEN-SKEL [test_progs] test_xdp_bpf2bpf.skel.h
  GEN-SKEL [test_progs] test_xdp_context_test_run.skel.h
  GEN-SKEL [test_progs] test_xdp_devmap_helpers.skel.h
  GEN-SKEL [test_progs] test_xdp_do_redirect.skel.h
  GEN-SKEL [test_progs] test_xdp_dynptr.skel.h
  GEN-SKEL [test_progs] test_xdp_link.skel.h
  GEN-SKEL [test_progs] test_xdp_loop.skel.h
  GEN-SKEL [test_progs] test_xdp_meta.skel.h
  GEN-SKEL [test_progs] test_xdp_noinline.skel.h
  GEN-SKEL [test_progs] test_xdp_redirect.skel.h
  GEN-SKEL [test_progs] test_xdp_vlan.skel.h
  GEN-SKEL [test_progs] test_xdp_with_cpumap_frags_helpers.skel.h
  GEN-SKEL [test_progs] test_xdp_with_cpumap_helpers.skel.h
  GEN-SKEL [test_progs] test_xdp_update_frags.skel.h
  GEN-SKEL [test_progs] test_xdp_with_devmap_frags_helpers.skel.h
  GEN-SKEL [test_progs] test_xdp_with_devmap_helpers.skel.h
  GEN-SKEL [test_progs] timer_crash.skel.h
  GEN-SKEL [test_progs] timer.skel.h
  GEN-SKEL [test_progs] timer_mim.skel.h
  GEN-SKEL [test_progs] timer_mim_reject.skel.h
  GEN-SKEL [test_progs] trace_dummy_st_ops.skel.h
  GEN-SKEL [test_progs] tracing_struct.skel.h
  GEN-SKEL [test_progs] trigger_bench.skel.h
  GEN-SKEL [test_progs] twfw.skel.h
  GEN-SKEL [test_progs] type_cast.skel.h
  GEN-SKEL [test_progs] udp_limit.skel.h
  GEN-SKEL [test_progs] uninit_stack.skel.h
  GEN-SKEL [test_progs] user_ringbuf_fail.skel.h
  GEN-SKEL [test_progs] user_ringbuf_success.skel.h
  GEN-SKEL [test_progs] verifier_and.skel.h
  GEN-SKEL [test_progs] verifier_array_access.skel.h
  GEN-SKEL [test_progs] verifier_basic_stack.skel.h
  GEN-SKEL [test_progs] verifier_bounds.skel.h
  GEN-SKEL [test_progs] verifier_bounds_deduction.skel.h
  GEN-SKEL [test_progs] verifier_bounds_deduction_non_const.skel.h
  GEN-SKEL [test_progs] verifier_bounds_mix_sign_unsign.skel.h
  GEN-SKEL [test_progs] verifier_bpf_get_stack.skel.h
  GEN-SKEL [test_progs] verifier_cfg.skel.h
  GEN-SKEL [test_progs] verifier_btf_ctx_access.skel.h
  GEN-SKEL [test_progs] verifier_cgroup_skb.skel.h
  GEN-SKEL [test_progs] verifier_cgroup_inv_retcode.skel.h
  GEN-SKEL [test_progs] verifier_const_or.skel.h
  GEN-SKEL [test_progs] verifier_ctx.skel.h
  GEN-SKEL [test_progs] verifier_cgroup_storage.skel.h
  GEN-SKEL [test_progs] verifier_ctx_sk_msg.skel.h
  GEN-SKEL [test_progs] verifier_d_path.skel.h
  GEN-SKEL [test_progs] verifier_direct_packet_access.skel.h
  GEN-SKEL [test_progs] verifier_direct_stack_access_wraparound.skel.h
  GEN-SKEL [test_progs] verifier_div0.skel.h
  GEN-SKEL [test_progs] verifier_div_overflow.skel.h
  GEN-SKEL [test_progs] verifier_helper_packet_access.skel.h
  GEN-SKEL [test_progs] verifier_helper_access_var_len.skel.h
  GEN-SKEL [test_progs] verifier_helper_restricted.skel.h
  GEN-SKEL [test_progs] verifier_helper_value_access.skel.h
  GEN-SKEL [test_progs] verifier_int_ptr.skel.h
  GEN-SKEL [test_progs] verifier_jeq_infer_not_null.skel.h
  GEN-SKEL [test_progs] verifier_ld_ind.skel.h
  GEN-SKEL [test_progs] verifier_leak_ptr.skel.h
  GEN-SKEL [test_progs] verifier_loops1.skel.h
  GEN-SKEL [test_progs] verifier_lwt.skel.h
  GEN-SKEL [test_progs] verifier_map_in_map.skel.h
  GEN-SKEL [test_progs] verifier_map_ptr.skel.h
  GEN-SKEL [test_progs] verifier_map_ptr_mixing.skel.h
  GEN-SKEL [test_progs] verifier_masking.skel.h
  GEN-SKEL [test_progs] verifier_map_ret_val.skel.h
  GEN-SKEL [test_progs] verifier_meta_access.skel.h
  GEN-SKEL [test_progs] verifier_netfilter_ctx.skel.h
  GEN-SKEL [test_progs] verifier_netfilter_retcode.skel.h
  GEN-SKEL [test_progs] verifier_prevent_map_lookup.skel.h
  GEN-SKEL [test_progs] verifier_raw_stack.skel.h
  GEN-SKEL [test_progs] verifier_raw_tp_writable.skel.h
  GEN-SKEL [test_progs] verifier_ref_tracking.skel.h
  GEN-SKEL [test_progs] verifier_reg_equal.skel.h
  GEN-SKEL [test_progs] verifier_regalloc.skel.h
  GEN-SKEL [test_progs] verifier_ringbuf.skel.h
  GEN-SKEL [test_progs] verifier_runtime_jit.skel.h
  GEN-SKEL [test_progs] verifier_scalar_ids.skel.h
  GEN-SKEL [test_progs] verifier_search_pruning.skel.h
  GEN-SKEL [test_progs] verifier_sock.skel.h
  GEN-SKEL [test_progs] verifier_spill_fill.skel.h
  GEN-SKEL [test_progs] verifier_spin_lock.skel.h
  GEN-SKEL [test_progs] verifier_stack_ptr.skel.h
  GEN-SKEL [test_progs] verifier_subprog_precision.skel.h
  GEN-SKEL [test_progs] verifier_subreg.skel.h
  GEN-SKEL [test_progs] verifier_typedef.skel.h
  GEN-SKEL [test_progs] verifier_uninit.skel.h
  GEN-SKEL [test_progs] verifier_unpriv.skel.h
  GEN-SKEL [test_progs] verifier_unpriv_perf.skel.h
  GEN-SKEL [test_progs] verifier_value.skel.h
  GEN-SKEL [test_progs] verifier_value_adj_spill.skel.h
  GEN-SKEL [test_progs] verifier_value_illegal_alu.skel.h
  GEN-SKEL [test_progs] verifier_value_or_null.skel.h
  GEN-SKEL [test_progs] verifier_value_ptr_arith.skel.h
  GEN-SKEL [test_progs] verifier_var_off.skel.h
  GEN-SKEL [test_progs] verifier_xadd.skel.h
  GEN-SKEL [test_progs] verifier_xdp.skel.h
  GEN-SKEL [test_progs] verifier_xdp_direct_packet_access.skel.h
  GEN-SKEL [test_progs] vrf_socket_lookup.skel.h
  GEN-SKEL [test_progs] xdp_dummy.skel.h
  GEN-SKEL [test_progs] xdp_features.skel.h
  GEN-SKEL [test_progs] xdp_hw_metadata.skel.h
  GEN-SKEL [test_progs] xdp_metadata.skel.h
  GEN-SKEL [test_progs] xdp_metadata2.skel.h
  GEN-SKEL [test_progs] xdp_redirect_map.skel.h
  GEN-SKEL [test_progs] xdp_redirect_multi_kern.skel.h
  GEN-SKEL [test_progs] xdp_synproxy_kern.skel.h
  GEN-SKEL [test_progs] xdp_tx.skel.h
  GEN-SKEL [test_progs] xdping_kern.skel.h
  GEN-SKEL [test_progs] xfrm_info.skel.h
  GEN-SKEL [test_progs] xdpwall.skel.h
  GEN-SKEL [test_progs] xsk_xdp_progs.skel.h
  GEN-SKEL [test_progs] fentry_test.lskel.h
  GEN-SKEL [test_progs] fexit_test.lskel.h
  GEN-SKEL [test_progs] fexit_sleep.lskel.h
  GEN-SKEL [test_progs] atomics.lskel.h
  GEN-SKEL [test_progs] trace_printk.lskel.h
  GEN-SKEL [test_progs] trace_vprintk.lskel.h
  GEN-SKEL [test_progs] map_ptr_kern.lskel.h
  GEN-SKEL [test_progs] core_kern.lskel.h
  GEN-SKEL [test_progs] core_kern_overflow.lskel.h
  GEN-SKEL [test_progs] test_ringbuf.lskel.h
  GEN-SKEL [test_progs] test_ringbuf_map_key.lskel.h
  GEN-SKEL [test_progs] test_ksyms_module.lskel.h
  GEN-SKEL [test_progs] test_ksyms_weak.lskel.h
  GEN-SKEL [test_progs] kfunc_call_test.lskel.h
  GEN-SKEL [test_progs] kfunc_call_test_subprog.lskel.h
  CLNG-BPF [test_maps] async_stack_depth.bpf.o
  CLNG-BPF [test_maps] atomics.bpf.o
  CLNG-BPF [test_maps] bench_local_storage_create.bpf.o
  CLNG-BPF [test_maps] atomic_bounds.bpf.o
  CLNG-BPF [test_maps] bind4_prog.bpf.o
  CLNG-BPF [test_maps] bind6_prog.bpf.o
  CLNG-BPF [test_maps] bind_perm.bpf.o
  CLNG-BPF [test_maps] bloom_filter_bench.bpf.o
  CLNG-BPF [test_maps] bloom_filter_map.bpf.o
  CLNG-BPF [test_maps] bpf_cubic.bpf.o
  CLNG-BPF [test_maps] bpf_dctcp.bpf.o
  CLNG-BPF [test_maps] bpf_flow.bpf.o
  CLNG-BPF [test_maps] bpf_dctcp_release.bpf.o
  CLNG-BPF [test_maps] bpf_hashmap_full_update_bench.bpf.o
  CLNG-BPF [test_maps] bpf_hashmap_lookup.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_array_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_hash_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_link.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_percpu_array_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_percpu_hash_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_sk_storage_helpers.bpf.o
  CLNG-BPF [test_maps] bpf_iter_bpf_sk_storage_map.bpf.o
  CLNG-BPF [test_maps] bpf_iter_ipv6_route.bpf.o
  CLNG-BPF [test_maps] bpf_iter_ksym.bpf.o
  CLNG-BPF [test_maps] bpf_iter_netlink.bpf.o
  CLNG-BPF [test_maps] bpf_iter_setsockopt.bpf.o
  CLNG-BPF [test_maps] bpf_iter_setsockopt_unix.bpf.o
  CLNG-BPF [test_maps] bpf_iter_sockmap.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_btf.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_file.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_stack.bpf.o
  CLNG-BPF [test_maps] bpf_iter_task_vma.bpf.o
  CLNG-BPF [test_maps] bpf_iter_tcp4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_tcp6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern1.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern2.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern3.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern5.bpf.o
  CLNG-BPF [test_maps] bpf_iter_test_kern6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_udp4.bpf.o
  CLNG-BPF [test_maps] bpf_iter_udp6.bpf.o
  CLNG-BPF [test_maps] bpf_iter_unix.bpf.o
  CLNG-BPF [test_maps] bpf_iter_vma_offset.bpf.o
  CLNG-BPF [test_maps] bpf_loop.bpf.o
  CLNG-BPF [test_maps] bpf_loop_bench.bpf.o
  CLNG-BPF [test_maps] bpf_mod_race.bpf.o
  CLNG-BPF [test_maps] bpf_syscall_macro.bpf.o
  CLNG-BPF [test_maps] bpf_tcp_nogpl.bpf.o
  CLNG-BPF [test_maps] bprm_opts.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___diff_arr_dim.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___diff_arr_val_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___equiv_zero_sz_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_bad_zero_sz_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_non_array.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_too_shallow.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_too_small.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___err_wrong_val_type.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_arrays___fixed_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___bit_sz_change.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___bitfield_vs_int.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___err_too_big_bitfield.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_bitfields___just_big_enough.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___err_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enum64val___val3_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___err_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_enumval___val3_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence___minimal.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_flavors.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_existence___wrong_field_defs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_flavors__err_wrong_name.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints___reverse_sign.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ints___bool.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_misc.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods___typedefs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_mods___mod_swap.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___anon_embed.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___dup_compat_types.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_array_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_array_field.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_dup_incompat_types.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_missing_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_missing_field.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_nonstruct_container.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_partial_match_dups.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___err_too_deep.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___extra_nesting.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_nesting___struct_union_mixup.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_enum_def.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_func_proto.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___diff_ptr_type.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_enum.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_int.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_primitives___err_non_ptr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ptr_as_arr.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_ptr_as_arr___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___diff_offs.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_size___err_ambiguous.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___all_missing.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___diff.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___diff_sz.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___fn_wrong_args.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_based___incompat.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_id.bpf.o
  CLNG-BPF [test_maps] btf__core_reloc_type_id___missing_targets.bpf.o
  CLNG-BPF [test_maps] btf_data.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_bitfields.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_multidim.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_namespacing.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_packing.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_ordering.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_padding.bpf.o
  CLNG-BPF [test_maps] btf_dump_test_case_syntax.bpf.o
  CLNG-BPF [test_maps] btf_type_tag.bpf.o
  CLNG-BPF [test_maps] btf_type_tag_percpu.bpf.o
  CLNG-BPF [test_maps] btf_type_tag_user.bpf.o
  CLNG-BPF [test_maps] cb_refs.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_egress_only.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_isolated.bpf.o
  CLNG-BPF [test_maps] cg_storage_multi_shared.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_hooks.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_getsockopt.bpf.o
  CLNG-BPF [test_maps] cgroup_getset_retval_setsockopt.bpf.o
  CLNG-BPF [test_maps] cgroup_hierarchical_stats.bpf.o
  CLNG-BPF [test_maps] cgroup_iter.bpf.o
  CLNG-BPF [test_maps] cgroup_skb_sk_lookup_kern.bpf.o
  CLNG-BPF [test_maps] cgroup_tcp_skb.bpf.o
  CLNG-BPF [test_maps] cgrp_kfunc_failure.bpf.o
  CLNG-BPF [test_maps] cgrp_kfunc_success.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_attach_cgroup.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_negative.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_recursion.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_sleepable.bpf.o
  CLNG-BPF [test_maps] cgrp_ls_tp_btf.bpf.o
  CLNG-BPF [test_maps] connect4_dropper.bpf.o
  CLNG-BPF [test_maps] connect4_prog.bpf.o
  CLNG-BPF [test_maps] connect6_prog.bpf.o
  CLNG-BPF [test_maps] connect_force_port4.bpf.o
  CLNG-BPF [test_maps] connect_force_port6.bpf.o
  CLNG-BPF [test_maps] connect_ping.bpf.o
  CLNG-BPF [test_maps] core_kern.bpf.o
  CLNG-BPF [test_maps] cpumask_failure.bpf.o
  CLNG-BPF [test_maps] core_kern_overflow.bpf.o
  CLNG-BPF [test_maps] cpumask_success.bpf.o
  CLNG-BPF [test_maps] dev_cgroup.bpf.o
  CLNG-BPF [test_maps] decap_sanity.bpf.o
  CLNG-BPF [test_maps] dummy_st_ops_fail.bpf.o
  CLNG-BPF [test_maps] dummy_st_ops_success.bpf.o
  CLNG-BPF [test_maps] dynptr_fail.bpf.o
  CLNG-BPF [test_maps] dynptr_success.bpf.o
  CLNG-BPF [test_maps] empty_skb.bpf.o
  CLNG-BPF [test_maps] exhandler_kern.bpf.o
  CLNG-BPF [test_maps] fentry_many_args.bpf.o
  CLNG-BPF [test_maps] fentry_test.bpf.o
  CLNG-BPF [test_maps] fexit_bpf2bpf.bpf.o
  CLNG-BPF [test_maps] fexit_bpf2bpf_simple.bpf.o
  CLNG-BPF [test_maps] fexit_many_args.bpf.o
  CLNG-BPF [test_maps] fexit_sleep.bpf.o
  CLNG-BPF [test_maps] fexit_test.bpf.o
  CLNG-BPF [test_maps] fib_lookup.bpf.o
  CLNG-BPF [test_maps] find_vma.bpf.o
  CLNG-BPF [test_maps] find_vma_fail1.bpf.o
  CLNG-BPF [test_maps] find_vma_fail2.bpf.o
  CLNG-BPF [test_maps] fmod_ret_freplace.bpf.o
  CLNG-BPF [test_maps] for_each_array_map_elem.bpf.o
  CLNG-BPF [test_maps] for_each_hash_map_elem.bpf.o
  CLNG-BPF [test_maps] for_each_map_elem_write_key.bpf.o
  CLNG-BPF [test_maps] freplace_attach_probe.bpf.o
  CLNG-BPF [test_maps] freplace_cls_redirect.bpf.o
  CLNG-BPF [test_maps] freplace_connect4.bpf.o
  CLNG-BPF [test_maps] freplace_connect_v4_prog.bpf.o
  CLNG-BPF [test_maps] freplace_get_constant.bpf.o
  CLNG-BPF [test_maps] freplace_global_func.bpf.o
  CLNG-BPF [test_maps] freplace_progmap.bpf.o
  CLNG-BPF [test_maps] get_branch_snapshot.bpf.o
  CLNG-BPF [test_maps] get_cgroup_id_kern.bpf.o
  CLNG-BPF [test_maps] get_func_ip_test.bpf.o
  CLNG-BPF [test_maps] htab_mem_bench.bpf.o
  CLNG-BPF [test_maps] get_func_args_test.bpf.o
  CLNG-BPF [test_maps] htab_reuse.bpf.o
  CLNG-BPF [test_maps] htab_update.bpf.o
  CLNG-BPF [test_maps] ima.bpf.o
  CLNG-BPF [test_maps] inner_array_lookup.bpf.o
  CLNG-BPF [test_maps] iters.bpf.o
  CLNG-BPF [test_maps] iters_looping.bpf.o
  CLNG-BPF [test_maps] iters_num.bpf.o
  CLNG-BPF [test_maps] iters_state_safety.bpf.o
  CLNG-BPF [test_maps] iters_testmod_seq.bpf.o
  CLNG-BPF [test_maps] jeq_infer_not_null_fail.bpf.o
  CLNG-BPF [test_maps] jit_probe_mem.bpf.o
  CLNG-BPF [test_maps] kfree_skb.bpf.o
  CLNG-BPF [test_maps] kfunc_call_destructive.bpf.o
  CLNG-BPF [test_maps] kfunc_call_fail.bpf.o
  CLNG-BPF [test_maps] kfunc_call_race.bpf.o
  CLNG-BPF [test_maps] kfunc_call_test.bpf.o
  CLNG-BPF [test_maps] kfunc_call_test_subprog.bpf.o
  CLNG-BPF [test_maps] kprobe_multi.bpf.o
  CLNG-BPF [test_maps] kprobe_multi_empty.bpf.o
  CLNG-BPF [test_maps] ksym_race.bpf.o
  CLNG-BPF [test_maps] linked_funcs1.bpf.o
  CLNG-BPF [test_maps] linked_funcs2.bpf.o
  CLNG-BPF [test_maps] linked_list.bpf.o
  CLNG-BPF [test_maps] linked_list_fail.bpf.o
  CLNG-BPF [test_maps] linked_maps1.bpf.o
  CLNG-BPF [test_maps] linked_maps2.bpf.o
  CLNG-BPF [test_maps] linked_vars1.bpf.o
  CLNG-BPF [test_maps] linked_vars2.bpf.o
  CLNG-BPF [test_maps] load_bytes_relative.bpf.o
  CLNG-BPF [test_maps] local_storage.bpf.o
  CLNG-BPF [test_maps] local_kptr_stash.bpf.o
  CLNG-BPF [test_maps] local_storage_bench.bpf.o
  CLNG-BPF [test_maps] local_storage_rcu_tasks_trace_bench.bpf.o
  CLNG-BPF [test_maps] loop1.bpf.o
  CLNG-BPF [test_maps] loop2.bpf.o
  CLNG-BPF [test_maps] loop3.bpf.o
  CLNG-BPF [test_maps] loop4.bpf.o
  CLNG-BPF [test_maps] loop5.bpf.o
  CLNG-BPF [test_maps] loop6.bpf.o
  CLNG-BPF [test_maps] lru_bug.bpf.o
  CLNG-BPF [test_maps] lsm.bpf.o
  CLNG-BPF [test_maps] lsm_cgroup.bpf.o
  CLNG-BPF [test_maps] lsm_cgroup_nonvoid.bpf.o
  CLNG-BPF [test_maps] map_kptr.bpf.o
  CLNG-BPF [test_maps] map_kptr_fail.bpf.o
  CLNG-BPF [test_maps] map_percpu_stats.bpf.o
  CLNG-BPF [test_maps] map_ptr_kern.bpf.o
  CLNG-BPF [test_maps] metadata_unused.bpf.o
  CLNG-BPF [test_maps] metadata_used.bpf.o
  CLNG-BPF [test_maps] modify_return.bpf.o
  CLNG-BPF [test_maps] mptcp_sock.bpf.o
  CLNG-BPF [test_maps] nested_trust_failure.bpf.o
  CLNG-BPF [test_maps] nested_trust_success.bpf.o
  CLNG-BPF [test_maps] netcnt_prog.bpf.o
  CLNG-BPF [test_maps] netif_receive_skb.bpf.o
  CLNG-BPF [test_maps] netns_cookie_prog.bpf.o
  CLNG-BPF [test_maps] perf_event_stackmap.bpf.o
  CLNG-BPF [test_maps] perfbuf_bench.bpf.o
  CLNG-BPF [test_maps] profiler1.bpf.o
  CLNG-BPF [test_maps] profiler3.bpf.o
  CLNG-BPF [test_maps] profiler2.bpf.o
  CLNG-BPF [test_maps] pyperf100.bpf.o
  CLNG-BPF [test_maps] pyperf180.bpf.o
  CLNG-BPF [test_maps] pyperf50.bpf.o
  CLNG-BPF [test_maps] pyperf600.bpf.o
  CLNG-BPF [test_maps] pyperf600_bpf_loop.bpf.o
  CLNG-BPF [test_maps] pyperf600_iter.bpf.o
  CLNG-BPF [test_maps] pyperf600_nounroll.bpf.o
  CLNG-BPF [test_maps] pyperf_global.bpf.o
  CLNG-BPF [test_maps] pyperf_subprogs.bpf.o
  CLNG-BPF [test_maps] rbtree.bpf.o
  CLNG-BPF [test_maps] rbtree_btf_fail__add_wrong_type.bpf.o
  CLNG-BPF [test_maps] rbtree_btf_fail__wrong_node_type.bpf.o
  CLNG-BPF [test_maps] rbtree_fail.bpf.o
  CLNG-BPF [test_maps] rcu_read_lock.bpf.o
  CLNG-BPF [test_maps] rcu_tasks_trace_gp.bpf.o
  CLNG-BPF [test_maps] read_bpf_task_storage_busy.bpf.o
  CLNG-BPF [test_maps] recursion.bpf.o
  CLNG-BPF [test_maps] recvmsg4_prog.bpf.o
  CLNG-BPF [test_maps] recvmsg6_prog.bpf.o
  CLNG-BPF [test_maps] refcounted_kptr.bpf.o
  CLNG-BPF [test_maps] refcounted_kptr_fail.bpf.o
  CLNG-BPF [test_maps] ringbuf_bench.bpf.o
  CLNG-BPF [test_maps] sample_map_ret0.bpf.o
  CLNG-BPF [test_maps] sample_ret0.bpf.o
  CLNG-BPF [test_maps] sendmsg4_prog.bpf.o
  CLNG-BPF [test_maps] sendmsg6_prog.bpf.o
  CLNG-BPF [test_maps] skb_load_bytes.bpf.o
  CLNG-BPF [test_maps] setget_sockopt.bpf.o
  CLNG-BPF [test_maps] skb_pkt_end.bpf.o
  CLNG-BPF [test_maps] sock_destroy_prog.bpf.o
  CLNG-BPF [test_maps] sock_destroy_prog_fail.bpf.o
  CLNG-BPF [test_maps] socket_cookie_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_parse_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_tcp_msg_prog.bpf.o
  CLNG-BPF [test_maps] sockmap_verdict_prog.bpf.o
  CLNG-BPF [test_maps] sockopt_inherit.bpf.o
  CLNG-BPF [test_maps] sockopt_multi.bpf.o
  CLNG-BPF [test_maps] sockopt_qos_to_cc.bpf.o
  CLNG-BPF [test_maps] sockopt_sk.bpf.o
  CLNG-BPF [test_maps] stacktrace_map_skip.bpf.o
  CLNG-BPF [test_maps] strncmp_bench.bpf.o
  CLNG-BPF [test_maps] strobemeta.bpf.o
  CLNG-BPF [test_maps] strncmp_test.bpf.o
  CLNG-BPF [test_maps] strobemeta_bpf_loop.bpf.o
  CLNG-BPF [test_maps] strobemeta_nounroll1.bpf.o
  CLNG-BPF [test_maps] strobemeta_nounroll2.bpf.o
  CLNG-BPF [test_maps] strobemeta_subprogs.bpf.o
  CLNG-BPF [test_maps] syscall.bpf.o
  CLNG-BPF [test_maps] tailcall1.bpf.o
  CLNG-BPF [test_maps] tailcall2.bpf.o
  CLNG-BPF [test_maps] tailcall3.bpf.o
  CLNG-BPF [test_maps] tailcall4.bpf.o
  CLNG-BPF [test_maps] tailcall5.bpf.o
  CLNG-BPF [test_maps] tailcall6.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf1.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf2.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf3.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf4.bpf.o
  CLNG-BPF [test_maps] tailcall_bpf2bpf6.bpf.o
  CLNG-BPF [test_maps] task_kfunc_failure.bpf.o
  CLNG-BPF [test_maps] task_kfunc_success.bpf.o
  CLNG-BPF [test_maps] task_local_storage.bpf.o
  CLNG-BPF [test_maps] task_local_storage_exit_creds.bpf.o
  CLNG-BPF [test_maps] task_ls_recursion.bpf.o
  CLNG-BPF [test_maps] task_storage_nodeadlock.bpf.o
  CLNG-BPF [test_maps] tcp_ca_incompl_cong_ops.bpf.o
  CLNG-BPF [test_maps] tcp_ca_unsupp_cong_op.bpf.o
  CLNG-BPF [test_maps] tcp_ca_update.bpf.o
  CLNG-BPF [test_maps] tcp_rtt.bpf.o
  CLNG-BPF [test_maps] test_access_variable_array.bpf.o
  CLNG-BPF [test_maps] tcp_ca_write_sk_pacing.bpf.o
  CLNG-BPF [test_maps] test_attach_kprobe_sleepable.bpf.o
  CLNG-BPF [test_maps] test_attach_probe.bpf.o
  CLNG-BPF [test_maps] test_attach_probe_manual.bpf.o
  CLNG-BPF [test_maps] test_autoattach.bpf.o
  CLNG-BPF [test_maps] test_autoload.bpf.o
  CLNG-BPF [test_maps] test_bpf_cookie.bpf.o
  CLNG-BPF [test_maps] test_bpf_nf.bpf.o
  CLNG-BPF [test_maps] test_bpf_nf_fail.bpf.o
  CLNG-BPF [test_maps] test_btf_decl_tag.bpf.o
  CLNG-BPF [test_maps] test_btf_map_in_map.bpf.o
  CLNG-BPF [test_maps] test_btf_newkv.bpf.o
  CLNG-BPF [test_maps] test_btf_nokv.bpf.o
  CLNG-BPF [test_maps] test_btf_skc_cls_ingress.bpf.o
  CLNG-BPF [test_maps] test_cgroup_link.bpf.o
  CLNG-BPF [test_maps] test_check_mtu.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect_dynptr.bpf.o
  CLNG-BPF [test_maps] test_cls_redirect_subprogs.bpf.o
  CLNG-BPF [test_maps] test_core_autosize.bpf.o
  CLNG-BPF [test_maps] test_core_extern.bpf.o
  CLNG-BPF [test_maps] test_core_read_macros.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_arrays.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_bitfields_direct.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_bitfields_probed.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_enum64val.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_enumval.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_existence.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_flavors.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_ints.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_kernel.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_misc.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_mods.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_module.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_nesting.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_primitives.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_ptr_as_arr.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_size.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_type_based.bpf.o
  CLNG-BPF [test_maps] test_core_reloc_type_id.bpf.o
  CLNG-BPF [test_maps] test_core_retro.bpf.o
  CLNG-BPF [test_maps] test_custom_sec_handlers.bpf.o
  CLNG-BPF [test_maps] test_d_path.bpf.o
  CLNG-BPF [test_maps] test_d_path_check_rdonly_mem.bpf.o
  CLNG-BPF [test_maps] test_d_path_check_types.bpf.o
  CLNG-BPF [test_maps] test_deny_namespace.bpf.o
  CLNG-BPF [test_maps] test_enable_stats.bpf.o
  CLNG-BPF [test_maps] test_get_stack_rawtp.bpf.o
  CLNG-BPF [test_maps] test_get_stack_rawtp_err.bpf.o
  CLNG-BPF [test_maps] test_global_data.bpf.o
  CLNG-BPF [test_maps] test_global_func1.bpf.o
  CLNG-BPF [test_maps] test_global_func10.bpf.o
  CLNG-BPF [test_maps] test_global_func11.bpf.o
  CLNG-BPF [test_maps] test_endian.bpf.o
  CLNG-BPF [test_maps] test_global_func12.bpf.o
  CLNG-BPF [test_maps] test_global_func13.bpf.o
  CLNG-BPF [test_maps] test_global_func14.bpf.o
  CLNG-BPF [test_maps] test_global_func15.bpf.o
  CLNG-BPF [test_maps] test_global_func16.bpf.o
  CLNG-BPF [test_maps] test_global_func17.bpf.o
  CLNG-BPF [test_maps] test_global_func2.bpf.o
  CLNG-BPF [test_maps] test_global_func3.bpf.o
  CLNG-BPF [test_maps] test_global_func4.bpf.o
  CLNG-BPF [test_maps] test_global_func5.bpf.o
  CLNG-BPF [test_maps] test_global_func6.bpf.o
  CLNG-BPF [test_maps] test_global_func7.bpf.o
  CLNG-BPF [test_maps] test_global_func9.bpf.o
  CLNG-BPF [test_maps] test_global_func8.bpf.o
  CLNG-BPF [test_maps] test_global_func_args.bpf.o
  CLNG-BPF [test_maps] test_global_func_ctx_args.bpf.o
  CLNG-BPF [test_maps] test_global_map_resize.bpf.o
  CLNG-BPF [test_maps] test_hash_large_key.bpf.o
  CLNG-BPF [test_maps] test_helper_restricted.bpf.o
  CLNG-BPF [test_maps] test_kfunc_dynptr_param.bpf.o
  CLNG-BPF [test_maps] test_ksyms.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf_null_check.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf_write_check.bpf.o
  CLNG-BPF [test_maps] test_ksyms_btf.bpf.o
  CLNG-BPF [test_maps] test_ksyms_module.bpf.o
  CLNG-BPF [test_maps] test_ksyms_weak.bpf.o
  CLNG-BPF [test_maps] test_l4lb.bpf.o
  CLNG-BPF [test_maps] test_l4lb_noinline.bpf.o
  CLNG-BPF [test_maps] test_l4lb_noinline_dynptr.bpf.o
  CLNG-BPF [test_maps] test_legacy_printk.bpf.o
  CLNG-BPF [test_maps] test_libbpf_get_fd_by_id_opts.bpf.o
  CLNG-BPF [test_maps] test_link_pinning.bpf.o
  CLNG-BPF [test_maps] test_lirc_mode2_kern.bpf.o
  CLNG-BPF [test_maps] test_log_buf.bpf.o
  CLNG-BPF [test_maps] test_log_fixup.bpf.o
  CLNG-BPF [test_maps] test_lookup_and_delete.bpf.o
  CLNG-BPF [test_maps] test_lookup_key.bpf.o
  CLNG-BPF [test_maps] test_lwt_ip_encap.bpf.o
  CLNG-BPF [test_maps] test_lwt_seg6local.bpf.o
  CLNG-BPF [test_maps] test_map_in_map.bpf.o
  CLNG-BPF [test_maps] test_map_in_map_invalid.bpf.o
  CLNG-BPF [test_maps] test_map_init.bpf.o
  CLNG-BPF [test_maps] test_map_lock.bpf.o
  CLNG-BPF [test_maps] test_map_lookup_percpu_elem.bpf.o
  CLNG-BPF [test_maps] test_map_ops.bpf.o
  CLNG-BPF [test_maps] test_migrate_reuseport.bpf.o
  CLNG-BPF [test_maps] test_misc_tcp_hdr_options.bpf.o
  CLNG-BPF [test_maps] test_mmap.bpf.o
  CLNG-BPF [test_maps] test_module_attach.bpf.o
  CLNG-BPF [test_maps] test_netfilter_link_attach.bpf.o
  CLNG-BPF [test_maps] test_ns_current_pid_tgid.bpf.o
  CLNG-BPF [test_maps] test_obj_id.bpf.o
  CLNG-BPF [test_maps] test_overhead.bpf.o
  CLNG-BPF [test_maps] test_parse_tcp_hdr_opt.bpf.o
  CLNG-BPF [test_maps] test_parse_tcp_hdr_opt_dynptr.bpf.o
  CLNG-BPF [test_maps] test_perf_branches.bpf.o
  CLNG-BPF [test_maps] test_pe_preserve_elems.bpf.o
  CLNG-BPF [test_maps] test_perf_buffer.bpf.o
  CLNG-BPF [test_maps] test_perf_link.bpf.o
  CLNG-BPF [test_maps] test_pinning.bpf.o
  CLNG-BPF [test_maps] test_pinning_invalid.bpf.o
  CLNG-BPF [test_maps] test_pkt_access.bpf.o
  CLNG-BPF [test_maps] test_pkt_md_access.bpf.o
  CLNG-BPF [test_maps] test_probe_user.bpf.o
  CLNG-BPF [test_maps] test_probe_read_user_str.bpf.o
  CLNG-BPF [test_maps] test_prog_array_init.bpf.o
  CLNG-BPF [test_maps] test_ptr_untrusted.bpf.o
  CLNG-BPF [test_maps] test_queue_map.bpf.o
  CLNG-BPF [test_maps] test_raw_tp_test_run.bpf.o
  CLNG-BPF [test_maps] test_rdonly_maps.bpf.o
  CLNG-BPF [test_maps] test_ringbuf.bpf.o
  CLNG-BPF [test_maps] test_ringbuf_map_key.bpf.o
  CLNG-BPF [test_maps] test_ringbuf_multi.bpf.o
  CLNG-BPF [test_maps] test_seg6_loop.bpf.o
  CLNG-BPF [test_maps] test_select_reuseport_kern.bpf.o
  CLNG-BPF [test_maps] test_send_signal_kern.bpf.o
  CLNG-BPF [test_maps] test_sk_assign.bpf.o
  CLNG-BPF [test_maps] test_sk_assign_libbpf.bpf.o
  CLNG-BPF [test_maps] test_sk_lookup.bpf.o
  CLNG-BPF [test_maps] test_sk_lookup_kern.bpf.o
  CLNG-BPF [test_maps] test_sk_storage_trace_itself.bpf.o
  CLNG-BPF [test_maps] test_sk_storage_tracing.bpf.o
  CLNG-BPF [test_maps] test_skb_cgroup_id_kern.bpf.o
  CLNG-BPF [test_maps] test_skb_ctx.bpf.o
  CLNG-BPF [test_maps] test_skb_helpers.bpf.o
  CLNG-BPF [test_maps] test_skc_to_unix_sock.bpf.o
  CLNG-BPF [test_maps] test_skeleton.bpf.o
  CLNG-BPF [test_maps] test_skmsg_load_helpers.bpf.o
  CLNG-BPF [test_maps] test_snprintf.bpf.o
  CLNG-BPF [test_maps] test_snprintf_single.bpf.o
  CLNG-BPF [test_maps] test_sock_fields.bpf.o
  CLNG-BPF [test_maps] test_sockhash_kern.bpf.o
  CLNG-BPF [test_maps] test_sockmap_drop_prog.bpf.o
  CLNG-BPF [test_maps] test_sockmap_invalid_update.bpf.o
  CLNG-BPF [test_maps] test_sockmap_kern.bpf.o
  CLNG-BPF [test_maps] test_sockmap_listen.bpf.o
  CLNG-BPF [test_maps] test_sockmap_pass_prog.bpf.o
  CLNG-BPF [test_maps] test_sockmap_progs_query.bpf.o
  CLNG-BPF [test_maps] test_sockmap_update.bpf.o
  CLNG-BPF [test_maps] test_sockmap_skb_verdict_attach.bpf.o
  CLNG-BPF [test_maps] test_spin_lock.bpf.o
  CLNG-BPF [test_maps] test_spin_lock_fail.bpf.o
  CLNG-BPF [test_maps] test_stack_map.bpf.o
  CLNG-BPF [test_maps] test_stack_var_off.bpf.o
  CLNG-BPF [test_maps] test_stacktrace_build_id.bpf.o
  CLNG-BPF [test_maps] test_stacktrace_map.bpf.o
  CLNG-BPF [test_maps] test_static_linked1.bpf.o
  CLNG-BPF [test_maps] test_static_linked2.bpf.o
  CLNG-BPF [test_maps] test_subprogs.bpf.o
  CLNG-BPF [test_maps] test_subprogs_extable.bpf.o
  CLNG-BPF [test_maps] test_subprogs_unused.bpf.o
  CLNG-BPF [test_maps] test_subskeleton.bpf.o
  CLNG-BPF [test_maps] test_subskeleton_lib.bpf.o
  CLNG-BPF [test_maps] test_subskeleton_lib2.bpf.o
  CLNG-BPF [test_maps] test_sysctl_loop1.bpf.o
  CLNG-BPF [test_maps] test_sysctl_loop2.bpf.o
  CLNG-BPF [test_maps] test_sysctl_prog.bpf.o
  CLNG-BPF [test_maps] test_task_pt_regs.bpf.o
  CLNG-BPF [test_maps] test_task_under_cgroup.bpf.o
  CLNG-BPF [test_maps] test_tc_bpf.bpf.o
  CLNG-BPF [test_maps] test_tc_dtime.bpf.o
  CLNG-BPF [test_maps] test_tc_edt.bpf.o
  CLNG-BPF [test_maps] test_tc_neigh.bpf.o
  CLNG-BPF [test_maps] test_tc_neigh_fib.bpf.o
  CLNG-BPF [test_maps] test_tc_peer.bpf.o
  CLNG-BPF [test_maps] test_tc_tunnel.bpf.o
  CLNG-BPF [test_maps] test_tcp_estats.bpf.o
  CLNG-BPF [test_maps] test_tcp_check_syncookie_kern.bpf.o
  CLNG-BPF [test_maps] test_tcp_hdr_options.bpf.o
  CLNG-BPF [test_maps] test_tcpbpf_kern.bpf.o
  CLNG-BPF [test_maps] test_tcpnotify_kern.bpf.o
  CLNG-BPF [test_maps] test_time_tai.bpf.o
  CLNG-BPF [test_maps] test_trace_ext.bpf.o
  CLNG-BPF [test_maps] test_tracepoint.bpf.o
  CLNG-BPF [test_maps] test_trace_ext_tracing.bpf.o
  CLNG-BPF [test_maps] test_trampoline_count.bpf.o
  CLNG-BPF [test_maps] test_tunnel_kern.bpf.o
  CLNG-BPF [test_maps] test_unpriv_bpf_disabled.bpf.o
  CLNG-BPF [test_maps] test_uprobe_autoattach.bpf.o
  CLNG-BPF [test_maps] test_urandom_usdt.bpf.o
  CLNG-BPF [test_maps] test_usdt.bpf.o
  CLNG-BPF [test_maps] test_usdt_multispec.bpf.o
  CLNG-BPF [test_maps] test_varlen.bpf.o
  CLNG-BPF [test_maps] test_verif_scale1.bpf.o
  CLNG-BPF [test_maps] test_verif_scale2.bpf.o
  CLNG-BPF [test_maps] test_verif_scale3.bpf.o
  CLNG-BPF [test_maps] test_verify_pkcs7_sig.bpf.o
  CLNG-BPF [test_maps] test_vmlinux.bpf.o
  CLNG-BPF [test_maps] test_xdp.bpf.o
  CLNG-BPF [test_maps] test_xdp_adjust_tail_grow.bpf.o
  CLNG-BPF [test_maps] test_xdp_adjust_tail_shrink.bpf.o
  CLNG-BPF [test_maps] test_xdp_bpf2bpf.bpf.o
  CLNG-BPF [test_maps] test_xdp_context_test_run.bpf.o
  CLNG-BPF [test_maps] test_xdp_devmap_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_do_redirect.bpf.o
  CLNG-BPF [test_maps] test_xdp_dynptr.bpf.o
  CLNG-BPF [test_maps] test_xdp_link.bpf.o
  CLNG-BPF [test_maps] test_xdp_loop.bpf.o
  CLNG-BPF [test_maps] test_xdp_meta.bpf.o
  CLNG-BPF [test_maps] test_xdp_noinline.bpf.o
  CLNG-BPF [test_maps] test_xdp_redirect.bpf.o
  CLNG-BPF [test_maps] test_xdp_vlan.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_cpumap_frags_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_update_frags.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_cpumap_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_devmap_frags_helpers.bpf.o
  CLNG-BPF [test_maps] test_xdp_with_devmap_helpers.bpf.o
  CLNG-BPF [test_maps] timer.bpf.o
  CLNG-BPF [test_maps] timer_crash.bpf.o
  CLNG-BPF [test_maps] timer_mim.bpf.o
  CLNG-BPF [test_maps] timer_mim_reject.bpf.o
  CLNG-BPF [test_maps] trace_dummy_st_ops.bpf.o
  CLNG-BPF [test_maps] trace_printk.bpf.o
  CLNG-BPF [test_maps] trace_vprintk.bpf.o
  CLNG-BPF [test_maps] tracing_struct.bpf.o
  CLNG-BPF [test_maps] trigger_bench.bpf.o
  CLNG-BPF [test_maps] twfw.bpf.o
  CLNG-BPF [test_maps] udp_limit.bpf.o
  CLNG-BPF [test_maps] type_cast.bpf.o
  CLNG-BPF [test_maps] uninit_stack.bpf.o
  CLNG-BPF [test_maps] user_ringbuf_fail.bpf.o
  CLNG-BPF [test_maps] user_ringbuf_success.bpf.o
  CLNG-BPF [test_maps] verifier_and.bpf.o
  CLNG-BPF [test_maps] verifier_array_access.bpf.o
  CLNG-BPF [test_maps] verifier_basic_stack.bpf.o
  CLNG-BPF [test_maps] verifier_bounds.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_deduction.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_deduction_non_const.bpf.o
  CLNG-BPF [test_maps] verifier_bounds_mix_sign_unsign.bpf.o
  CLNG-BPF [test_maps] verifier_bpf_get_stack.bpf.o
  CLNG-BPF [test_maps] verifier_btf_ctx_access.bpf.o
  CLNG-BPF [test_maps] verifier_cfg.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_inv_retcode.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_skb.bpf.o
  CLNG-BPF [test_maps] verifier_cgroup_storage.bpf.o
  CLNG-BPF [test_maps] verifier_const_or.bpf.o
  CLNG-BPF [test_maps] verifier_ctx.bpf.o
  CLNG-BPF [test_maps] verifier_ctx_sk_msg.bpf.o
  CLNG-BPF [test_maps] verifier_d_path.bpf.o
  CLNG-BPF [test_maps] verifier_direct_packet_access.bpf.o
  CLNG-BPF [test_maps] verifier_direct_stack_access_wraparound.bpf.o
  CLNG-BPF [test_maps] verifier_div0.bpf.o
  CLNG-BPF [test_maps] verifier_div_overflow.bpf.o
  CLNG-BPF [test_maps] verifier_helper_access_var_len.bpf.o
  CLNG-BPF [test_maps] verifier_helper_packet_access.bpf.o
  CLNG-BPF [test_maps] verifier_helper_restricted.bpf.o
  CLNG-BPF [test_maps] verifier_helper_value_access.bpf.o
  CLNG-BPF [test_maps] verifier_int_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_jeq_infer_not_null.bpf.o
  CLNG-BPF [test_maps] verifier_ld_ind.bpf.o
  CLNG-BPF [test_maps] verifier_leak_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_loops1.bpf.o
  CLNG-BPF [test_maps] verifier_lwt.bpf.o
  CLNG-BPF [test_maps] verifier_map_in_map.bpf.o
  CLNG-BPF [test_maps] verifier_map_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_map_ptr_mixing.bpf.o
  CLNG-BPF [test_maps] verifier_map_ret_val.bpf.o
  CLNG-BPF [test_maps] verifier_masking.bpf.o
  CLNG-BPF [test_maps] verifier_meta_access.bpf.o
  CLNG-BPF [test_maps] verifier_netfilter_ctx.bpf.o
  CLNG-BPF [test_maps] verifier_netfilter_retcode.bpf.o
  CLNG-BPF [test_maps] verifier_prevent_map_lookup.bpf.o
  CLNG-BPF [test_maps] verifier_raw_stack.bpf.o
  CLNG-BPF [test_maps] verifier_ref_tracking.bpf.o
  CLNG-BPF [test_maps] verifier_raw_tp_writable.bpf.o
  CLNG-BPF [test_maps] verifier_reg_equal.bpf.o
  CLNG-BPF [test_maps] verifier_regalloc.bpf.o
  CLNG-BPF [test_maps] verifier_ringbuf.bpf.o
  CLNG-BPF [test_maps] verifier_runtime_jit.bpf.o
  CLNG-BPF [test_maps] verifier_scalar_ids.bpf.o
  CLNG-BPF [test_maps] verifier_search_pruning.bpf.o
  CLNG-BPF [test_maps] verifier_sock.bpf.o
  CLNG-BPF [test_maps] verifier_spill_fill.bpf.o
  CLNG-BPF [test_maps] verifier_spin_lock.bpf.o
  CLNG-BPF [test_maps] verifier_stack_ptr.bpf.o
  CLNG-BPF [test_maps] verifier_subprog_precision.bpf.o
  CLNG-BPF [test_maps] verifier_subreg.bpf.o
  CLNG-BPF [test_maps] verifier_typedef.bpf.o
  CLNG-BPF [test_maps] verifier_uninit.bpf.o
  CLNG-BPF [test_maps] verifier_unpriv.bpf.o
  CLNG-BPF [test_maps] verifier_unpriv_perf.bpf.o
  CLNG-BPF [test_maps] verifier_value.bpf.o
  CLNG-BPF [test_maps] verifier_value_adj_spill.bpf.o
  CLNG-BPF [test_maps] verifier_value_illegal_alu.bpf.o
  CLNG-BPF [test_maps] verifier_value_or_null.bpf.o
  CLNG-BPF [test_maps] verifier_value_ptr_arith.bpf.o
  CLNG-BPF [test_maps] verifier_var_off.bpf.o
  CLNG-BPF [test_maps] verifier_xadd.bpf.o
  CLNG-BPF [test_maps] verifier_xdp.bpf.o
  CLNG-BPF [test_maps] verifier_xdp_direct_packet_access.bpf.o
  CLNG-BPF [test_maps] xdp_dummy.bpf.o
  CLNG-BPF [test_maps] xdp_features.bpf.o
  CLNG-BPF [test_maps] xdp_hw_metadata.bpf.o
  CLNG-BPF [test_maps] vrf_socket_lookup.bpf.o
  CLNG-BPF [test_maps] xdp_metadata2.bpf.o
  CLNG-BPF [test_maps] xdp_metadata.bpf.o
  CLNG-BPF [test_maps] xdp_redirect_map.bpf.o
  CLNG-BPF [test_maps] xdp_redirect_multi_kern.bpf.o
  CLNG-BPF [test_maps] xdp_synproxy_kern.bpf.o
  CLNG-BPF [test_maps] xdp_tx.bpf.o
  CLNG-BPF [test_maps] xdping_kern.bpf.o
  CLNG-BPF [test_maps] xdpwall.bpf.o
  CLNG-BPF [test_maps] xfrm_info.bpf.o
  CLNG-BPF [test_maps] xsk_xdp_progs.bpf.o
  GEN-SKEL [test_progs-no_alu32] async_stack_depth.skel.h
  GEN-SKEL [test_progs-no_alu32] atomic_bounds.skel.h
  GEN-SKEL [test_progs-no_alu32] bench_local_storage_create.skel.h
  GEN-SKEL [test_progs-no_alu32] bind4_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] bind6_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] bind_perm.skel.h
  GEN-SKEL [test_progs-no_alu32] bloom_filter_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] bloom_filter_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_cubic.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_dctcp.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_dctcp_release.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_flow.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_hashmap_full_update_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_hashmap_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_array_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_hash_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_link.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_percpu_array_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_percpu_hash_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_sk_storage_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_bpf_sk_storage_map.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_ipv6_route.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_ksym.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_setsockopt.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_netlink.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_setsockopt_unix.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_sockmap.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_task_btf.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_task.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_task_file.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_task_stack.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_task_vma.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_tcp4.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_tcp6.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern1.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern2.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern3.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern4.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern5.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_test_kern6.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_udp4.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_udp6.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_unix.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_loop.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_loop_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_iter_vma_offset.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_mod_race.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_syscall_macro.skel.h
  GEN-SKEL [test_progs-no_alu32] bpf_tcp_nogpl.skel.h
  GEN-SKEL [test_progs-no_alu32] bprm_opts.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_data.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_bitfields.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_namespacing.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_multidim.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_packing.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_ordering.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_padding.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_dump_test_case_syntax.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_type_tag_percpu.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_type_tag.skel.h
  GEN-SKEL [test_progs-no_alu32] btf_type_tag_user.skel.h
  GEN-SKEL [test_progs-no_alu32] cb_refs.skel.h
  GEN-SKEL [test_progs-no_alu32] cg_storage_multi_egress_only.skel.h
  GEN-SKEL [test_progs-no_alu32] cg_storage_multi_isolated.skel.h
  GEN-SKEL [test_progs-no_alu32] cg_storage_multi_shared.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_getset_retval_hooks.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_getset_retval_setsockopt.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_getset_retval_getsockopt.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_hierarchical_stats.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_iter.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_skb_sk_lookup_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] cgroup_tcp_skb.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_kfunc_failure.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_kfunc_success.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_ls_attach_cgroup.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_ls_negative.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_ls_recursion.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_ls_sleepable.skel.h
  GEN-SKEL [test_progs-no_alu32] connect4_dropper.skel.h
  GEN-SKEL [test_progs-no_alu32] cgrp_ls_tp_btf.skel.h
  GEN-SKEL [test_progs-no_alu32] connect6_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] connect_force_port4.skel.h
  GEN-SKEL [test_progs-no_alu32] connect4_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] connect_force_port6.skel.h
  GEN-SKEL [test_progs-no_alu32] connect_ping.skel.h
  GEN-SKEL [test_progs-no_alu32] cpumask_failure.skel.h
  GEN-SKEL [test_progs-no_alu32] cpumask_success.skel.h
  GEN-SKEL [test_progs-no_alu32] decap_sanity.skel.h
  GEN-SKEL [test_progs-no_alu32] dev_cgroup.skel.h
  GEN-SKEL [test_progs-no_alu32] dummy_st_ops_success.skel.h
  GEN-SKEL [test_progs-no_alu32] dynptr_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] dynptr_success.skel.h
  GEN-SKEL [test_progs-no_alu32] dummy_st_ops_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] empty_skb.skel.h
  GEN-SKEL [test_progs-no_alu32] exhandler_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] fentry_many_args.skel.h
  GEN-SKEL [test_progs-no_alu32] fexit_bpf2bpf.skel.h
  GEN-SKEL [test_progs-no_alu32] fexit_bpf2bpf_simple.skel.h
  GEN-SKEL [test_progs-no_alu32] fexit_many_args.skel.h
  GEN-SKEL [test_progs-no_alu32] fib_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] find_vma_fail1.skel.h
  GEN-SKEL [test_progs-no_alu32] find_vma.skel.h
  GEN-SKEL [test_progs-no_alu32] find_vma_fail2.skel.h
  GEN-SKEL [test_progs-no_alu32] fmod_ret_freplace.skel.h
  GEN-SKEL [test_progs-no_alu32] for_each_array_map_elem.skel.h
  GEN-SKEL [test_progs-no_alu32] for_each_hash_map_elem.skel.h
  GEN-SKEL [test_progs-no_alu32] for_each_map_elem_write_key.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_attach_probe.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_cls_redirect.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_connect4.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_connect_v4_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_global_func.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_get_constant.skel.h
  GEN-SKEL [test_progs-no_alu32] freplace_progmap.skel.h
  GEN-SKEL [test_progs-no_alu32] get_branch_snapshot.skel.h
  GEN-SKEL [test_progs-no_alu32] get_cgroup_id_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] get_func_args_test.skel.h
  GEN-SKEL [test_progs-no_alu32] get_func_ip_test.skel.h
  GEN-SKEL [test_progs-no_alu32] htab_mem_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] htab_reuse.skel.h
  GEN-SKEL [test_progs-no_alu32] htab_update.skel.h
  GEN-SKEL [test_progs-no_alu32] ima.skel.h
  GEN-SKEL [test_progs-no_alu32] inner_array_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] iters.skel.h
  GEN-SKEL [test_progs-no_alu32] iters_looping.skel.h
  GEN-SKEL [test_progs-no_alu32] iters_num.skel.h
  GEN-SKEL [test_progs-no_alu32] iters_state_safety.skel.h
  GEN-SKEL [test_progs-no_alu32] iters_testmod_seq.skel.h
  GEN-SKEL [test_progs-no_alu32] jeq_infer_not_null_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] jit_probe_mem.skel.h
  GEN-SKEL [test_progs-no_alu32] kfree_skb.skel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_destructive.skel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_race.skel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_test.skel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_test_subprog.skel.h
  GEN-SKEL [test_progs-no_alu32] kprobe_multi.skel.h
  GEN-SKEL [test_progs-no_alu32] ksym_race.skel.h
  GEN-SKEL [test_progs-no_alu32] kprobe_multi_empty.skel.h
  GEN-SKEL [test_progs-no_alu32] linked_list.skel.h
  GEN-SKEL [test_progs-no_alu32] linked_list_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] load_bytes_relative.skel.h
  GEN-SKEL [test_progs-no_alu32] local_kptr_stash.skel.h
  GEN-SKEL [test_progs-no_alu32] local_storage.skel.h
  GEN-SKEL [test_progs-no_alu32] local_storage_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] loop1.skel.h
  GEN-SKEL [test_progs-no_alu32] local_storage_rcu_tasks_trace_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] loop2.skel.h
  GEN-SKEL [test_progs-no_alu32] loop3.skel.h
  GEN-SKEL [test_progs-no_alu32] loop4.skel.h
  GEN-SKEL [test_progs-no_alu32] loop5.skel.h
  GEN-SKEL [test_progs-no_alu32] loop6.skel.h
  GEN-SKEL [test_progs-no_alu32] lru_bug.skel.h
  GEN-SKEL [test_progs-no_alu32] lsm.skel.h
  GEN-SKEL [test_progs-no_alu32] lsm_cgroup.skel.h
  GEN-SKEL [test_progs-no_alu32] lsm_cgroup_nonvoid.skel.h
  GEN-SKEL [test_progs-no_alu32] map_kptr.skel.h
  GEN-SKEL [test_progs-no_alu32] map_kptr_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] map_percpu_stats.skel.h
  GEN-SKEL [test_progs-no_alu32] metadata_unused.skel.h
  GEN-SKEL [test_progs-no_alu32] metadata_used.skel.h
  GEN-SKEL [test_progs-no_alu32] modify_return.skel.h
  GEN-SKEL [test_progs-no_alu32] mptcp_sock.skel.h
  GEN-SKEL [test_progs-no_alu32] nested_trust_failure.skel.h
  GEN-SKEL [test_progs-no_alu32] nested_trust_success.skel.h
  GEN-SKEL [test_progs-no_alu32] netcnt_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] netif_receive_skb.skel.h
  GEN-SKEL [test_progs-no_alu32] netns_cookie_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] perf_event_stackmap.skel.h
  GEN-SKEL [test_progs-no_alu32] perfbuf_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] profiler1.skel.h
  GEN-SKEL [test_progs-no_alu32] profiler2.skel.h
  GEN-SKEL [test_progs-no_alu32] profiler3.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf50.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf600_bpf_loop.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf600_iter.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf600_nounroll.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf_global.skel.h
  GEN-SKEL [test_progs-no_alu32] pyperf_subprogs.skel.h
  GEN-SKEL [test_progs-no_alu32] rbtree.skel.h
  GEN-SKEL [test_progs-no_alu32] rbtree_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] rbtree_btf_fail__add_wrong_type.skel.h
  GEN-SKEL [test_progs-no_alu32] rbtree_btf_fail__wrong_node_type.skel.h
  GEN-SKEL [test_progs-no_alu32] rcu_read_lock.skel.h
  GEN-SKEL [test_progs-no_alu32] rcu_tasks_trace_gp.skel.h
  GEN-SKEL [test_progs-no_alu32] read_bpf_task_storage_busy.skel.h
  GEN-SKEL [test_progs-no_alu32] recursion.skel.h
  GEN-SKEL [test_progs-no_alu32] recvmsg4_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] recvmsg6_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] refcounted_kptr.skel.h
  GEN-SKEL [test_progs-no_alu32] refcounted_kptr_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] ringbuf_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] sample_map_ret0.skel.h
  GEN-SKEL [test_progs-no_alu32] sample_ret0.skel.h
  GEN-SKEL [test_progs-no_alu32] sendmsg4_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] sendmsg6_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] skb_load_bytes.skel.h
  GEN-SKEL [test_progs-no_alu32] skb_pkt_end.skel.h
  GEN-SKEL [test_progs-no_alu32] sock_destroy_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] setget_sockopt.skel.h
  GEN-SKEL [test_progs-no_alu32] sock_destroy_prog_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] socket_cookie_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] sockmap_parse_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] sockmap_tcp_msg_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] sockmap_verdict_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] sockopt_inherit.skel.h
  GEN-SKEL [test_progs-no_alu32] sockopt_multi.skel.h
  GEN-SKEL [test_progs-no_alu32] sockopt_qos_to_cc.skel.h
  GEN-SKEL [test_progs-no_alu32] stacktrace_map_skip.skel.h
  GEN-SKEL [test_progs-no_alu32] sockopt_sk.skel.h
  GEN-SKEL [test_progs-no_alu32] strncmp_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] strncmp_test.skel.h
  GEN-SKEL [test_progs-no_alu32] strobemeta.skel.h
  GEN-SKEL [test_progs-no_alu32] strobemeta_bpf_loop.skel.h
  GEN-SKEL [test_progs-no_alu32] strobemeta_nounroll1.skel.h
  GEN-SKEL [test_progs-no_alu32] strobemeta_nounroll2.skel.h
  GEN-SKEL [test_progs-no_alu32] strobemeta_subprogs.skel.h
  GEN-SKEL [test_progs-no_alu32] syscall.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall1.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall2.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall3.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall4.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall5.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall6.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall_bpf2bpf1.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall_bpf2bpf3.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall_bpf2bpf2.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall_bpf2bpf4.skel.h
  GEN-SKEL [test_progs-no_alu32] tailcall_bpf2bpf6.skel.h
  GEN-SKEL [test_progs-no_alu32] task_kfunc_failure.skel.h
  GEN-SKEL [test_progs-no_alu32] task_kfunc_success.skel.h
  GEN-SKEL [test_progs-no_alu32] task_local_storage.skel.h
  GEN-SKEL [test_progs-no_alu32] task_local_storage_exit_creds.skel.h
  GEN-SKEL [test_progs-no_alu32] task_ls_recursion.skel.h
  GEN-SKEL [test_progs-no_alu32] task_storage_nodeadlock.skel.h
  GEN-SKEL [test_progs-no_alu32] tcp_ca_incompl_cong_ops.skel.h
  GEN-SKEL [test_progs-no_alu32] tcp_ca_unsupp_cong_op.skel.h
  GEN-SKEL [test_progs-no_alu32] tcp_ca_update.skel.h
  GEN-SKEL [test_progs-no_alu32] tcp_ca_write_sk_pacing.skel.h
  GEN-SKEL [test_progs-no_alu32] tcp_rtt.skel.h
  GEN-SKEL [test_progs-no_alu32] test_access_variable_array.skel.h
  GEN-SKEL [test_progs-no_alu32] test_attach_kprobe_sleepable.skel.h
  GEN-SKEL [test_progs-no_alu32] test_attach_probe.skel.h
  GEN-SKEL [test_progs-no_alu32] test_attach_probe_manual.skel.h
  GEN-SKEL [test_progs-no_alu32] test_autoattach.skel.h
  GEN-SKEL [test_progs-no_alu32] test_autoload.skel.h
  GEN-SKEL [test_progs-no_alu32] test_bpf_cookie.skel.h
  GEN-SKEL [test_progs-no_alu32] test_bpf_nf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_bpf_nf_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] test_btf_decl_tag.skel.h
  GEN-SKEL [test_progs-no_alu32] test_btf_map_in_map.skel.h
  GEN-SKEL [test_progs-no_alu32] test_btf_newkv.skel.h
  GEN-SKEL [test_progs-no_alu32] test_btf_skc_cls_ingress.skel.h
  GEN-SKEL [test_progs-no_alu32] test_cgroup_link.skel.h
  GEN-SKEL [test_progs-no_alu32] test_btf_nokv.skel.h
  GEN-SKEL [test_progs-no_alu32] test_check_mtu.skel.h
  GEN-SKEL [test_progs-no_alu32] test_cls_redirect.skel.h
  GEN-SKEL [test_progs-no_alu32] test_cls_redirect_dynptr.skel.h
  GEN-SKEL [test_progs-no_alu32] test_cls_redirect_subprogs.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_autosize.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_extern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_read_macros.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_arrays.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_bitfields_direct.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_bitfields_probed.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_enum64val.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_enumval.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_existence.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_flavors.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_ints.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_kernel.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_misc.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_mods.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_module.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_nesting.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_primitives.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_ptr_as_arr.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_size.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_type_id.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_retro.skel.h
  GEN-SKEL [test_progs-no_alu32] test_core_reloc_type_based.skel.h
  GEN-SKEL [test_progs-no_alu32] test_custom_sec_handlers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_d_path.skel.h
  GEN-SKEL [test_progs-no_alu32] test_d_path_check_rdonly_mem.skel.h
  GEN-SKEL [test_progs-no_alu32] test_d_path_check_types.skel.h
  GEN-SKEL [test_progs-no_alu32] test_deny_namespace.skel.h
  GEN-SKEL [test_progs-no_alu32] test_enable_stats.skel.h
  GEN-SKEL [test_progs-no_alu32] test_endian.skel.h
  GEN-SKEL [test_progs-no_alu32] test_get_stack_rawtp.skel.h
  GEN-SKEL [test_progs-no_alu32] test_get_stack_rawtp_err.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_data.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func1.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func10.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func11.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func12.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func13.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func14.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func16.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func17.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func15.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func3.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func4.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func2.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func5.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func6.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func7.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func8.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func9.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func_args.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_map_resize.skel.h
  GEN-SKEL [test_progs-no_alu32] test_hash_large_key.skel.h
  GEN-SKEL [test_progs-no_alu32] test_global_func_ctx_args.skel.h
  GEN-SKEL [test_progs-no_alu32] test_helper_restricted.skel.h
  GEN-SKEL [test_progs-no_alu32] test_kfunc_dynptr_param.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_btf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_btf_null_check.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_btf_write_check.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_weak.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_module.skel.h
  GEN-SKEL [test_progs-no_alu32] test_l4lb.skel.h
  GEN-SKEL [test_progs-no_alu32] test_l4lb_noinline.skel.h
  GEN-SKEL [test_progs-no_alu32] test_l4lb_noinline_dynptr.skel.h
  GEN-SKEL [test_progs-no_alu32] test_libbpf_get_fd_by_id_opts.skel.h
  GEN-SKEL [test_progs-no_alu32] test_link_pinning.skel.h
  GEN-SKEL [test_progs-no_alu32] test_legacy_printk.skel.h
  GEN-SKEL [test_progs-no_alu32] test_lirc_mode2_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_log_buf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_log_fixup.skel.h
  GEN-SKEL [test_progs-no_alu32] test_lookup_and_delete.skel.h
  GEN-SKEL [test_progs-no_alu32] test_lwt_ip_encap.skel.h
  GEN-SKEL [test_progs-no_alu32] test_lookup_key.skel.h
  GEN-SKEL [test_progs-no_alu32] test_lwt_seg6local.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_in_map.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_in_map_invalid.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_init.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_lock.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_lookup_percpu_elem.skel.h
  GEN-SKEL [test_progs-no_alu32] test_map_ops.skel.h
  GEN-SKEL [test_progs-no_alu32] test_misc_tcp_hdr_options.skel.h
  GEN-SKEL [test_progs-no_alu32] test_migrate_reuseport.skel.h
  GEN-SKEL [test_progs-no_alu32] test_mmap.skel.h
  GEN-SKEL [test_progs-no_alu32] test_module_attach.skel.h
  GEN-SKEL [test_progs-no_alu32] test_netfilter_link_attach.skel.h
  GEN-SKEL [test_progs-no_alu32] test_obj_id.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ns_current_pid_tgid.skel.h
  GEN-SKEL [test_progs-no_alu32] test_overhead.skel.h
  GEN-SKEL [test_progs-no_alu32] test_parse_tcp_hdr_opt.skel.h
  GEN-SKEL [test_progs-no_alu32] test_parse_tcp_hdr_opt_dynptr.skel.h
  GEN-SKEL [test_progs-no_alu32] test_perf_branches.skel.h
  GEN-SKEL [test_progs-no_alu32] test_pe_preserve_elems.skel.h
  GEN-SKEL [test_progs-no_alu32] test_perf_buffer.skel.h
  GEN-SKEL [test_progs-no_alu32] test_perf_link.skel.h
  GEN-SKEL [test_progs-no_alu32] test_pkt_access.skel.h
  GEN-SKEL [test_progs-no_alu32] test_pinning.skel.h
  GEN-SKEL [test_progs-no_alu32] test_pkt_md_access.skel.h
  GEN-SKEL [test_progs-no_alu32] test_probe_read_user_str.skel.h
  GEN-SKEL [test_progs-no_alu32] test_probe_user.skel.h
  GEN-SKEL [test_progs-no_alu32] test_prog_array_init.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ptr_untrusted.skel.h
  GEN-SKEL [test_progs-no_alu32] test_raw_tp_test_run.skel.h
  GEN-SKEL [test_progs-no_alu32] test_queue_map.skel.h
  GEN-SKEL [test_progs-no_alu32] test_rdonly_maps.skel.h
  GEN-SKEL [test_progs-no_alu32] test_ringbuf_multi.skel.h
  GEN-SKEL [test_progs-no_alu32] test_seg6_loop.skel.h
  GEN-SKEL [test_progs-no_alu32] test_select_reuseport_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_send_signal_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sk_assign_libbpf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sk_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sk_lookup_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sk_storage_trace_itself.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sk_storage_tracing.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skb_cgroup_id_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skb_ctx.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skb_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skc_to_unix_sock.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skeleton.skel.h
  GEN-SKEL [test_progs-no_alu32] test_skmsg_load_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_snprintf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_snprintf_single.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sock_fields.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockhash_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_drop_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_invalid_update.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_listen.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_pass_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_progs_query.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_skb_verdict_attach.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sockmap_update.skel.h
  GEN-SKEL [test_progs-no_alu32] test_spin_lock.skel.h
  GEN-SKEL [test_progs-no_alu32] test_spin_lock_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] test_stack_map.skel.h
  GEN-SKEL [test_progs-no_alu32] test_stack_var_off.skel.h
  GEN-SKEL [test_progs-no_alu32] test_stacktrace_build_id.skel.h
  GEN-SKEL [test_progs-no_alu32] test_stacktrace_map.skel.h
  GEN-SKEL [test_progs-no_alu32] test_subprogs.skel.h
  GEN-SKEL [test_progs-no_alu32] test_subprogs_extable.skel.h
  GEN-SKEL [test_progs-no_alu32] test_subprogs_unused.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sysctl_loop2.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sysctl_loop1.skel.h
  GEN-SKEL [test_progs-no_alu32] test_sysctl_prog.skel.h
  GEN-SKEL [test_progs-no_alu32] test_task_pt_regs.skel.h
  GEN-SKEL [test_progs-no_alu32] test_task_under_cgroup.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_bpf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_dtime.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_edt.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_neigh_fib.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_neigh.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_peer.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tc_tunnel.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tcp_check_syncookie_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tcp_estats.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tcp_hdr_options.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tcpbpf_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tcpnotify_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_time_tai.skel.h
  GEN-SKEL [test_progs-no_alu32] test_trace_ext.skel.h
  GEN-SKEL [test_progs-no_alu32] test_trace_ext_tracing.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tracepoint.skel.h
  GEN-SKEL [test_progs-no_alu32] test_trampoline_count.skel.h
  GEN-SKEL [test_progs-no_alu32] test_tunnel_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] test_unpriv_bpf_disabled.skel.h
  GEN-SKEL [test_progs-no_alu32] test_uprobe_autoattach.skel.h
  GEN-SKEL [test_progs-no_alu32] test_urandom_usdt.skel.h
  GEN-SKEL [test_progs-no_alu32] test_verif_scale1.skel.h
  GEN-SKEL [test_progs-no_alu32] test_verif_scale2.skel.h
  GEN-SKEL [test_progs-no_alu32] test_varlen.skel.h
  GEN-SKEL [test_progs-no_alu32] test_verif_scale3.skel.h
  GEN-SKEL [test_progs-no_alu32] test_verify_pkcs7_sig.skel.h
  GEN-SKEL [test_progs-no_alu32] test_vmlinux.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_adjust_tail_grow.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_adjust_tail_shrink.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_bpf2bpf.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_context_test_run.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_do_redirect.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_link.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_loop.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_devmap_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_dynptr.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_meta.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_noinline.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_update_frags.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_vlan.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_with_cpumap_frags_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_redirect.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_with_cpumap_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_with_devmap_frags_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] test_xdp_with_devmap_helpers.skel.h
  GEN-SKEL [test_progs-no_alu32] timer.skel.h
  GEN-SKEL [test_progs-no_alu32] timer_crash.skel.h
  GEN-SKEL [test_progs-no_alu32] timer_mim.skel.h
  GEN-SKEL [test_progs-no_alu32] timer_mim_reject.skel.h
  GEN-SKEL [test_progs-no_alu32] trace_dummy_st_ops.skel.h
  GEN-SKEL [test_progs-no_alu32] tracing_struct.skel.h
  GEN-SKEL [test_progs-no_alu32] trigger_bench.skel.h
  GEN-SKEL [test_progs-no_alu32] twfw.skel.h
  GEN-SKEL [test_progs-no_alu32] type_cast.skel.h
  GEN-SKEL [test_progs-no_alu32] udp_limit.skel.h
  GEN-SKEL [test_progs-no_alu32] uninit_stack.skel.h
  GEN-SKEL [test_progs-no_alu32] user_ringbuf_fail.skel.h
  GEN-SKEL [test_progs-no_alu32] user_ringbuf_success.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_and.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_array_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_basic_stack.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_bounds.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_bounds_deduction.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_bounds_deduction_non_const.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_bpf_get_stack.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_btf_ctx_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_bounds_mix_sign_unsign.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_cfg.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_cgroup_inv_retcode.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_cgroup_skb.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_cgroup_storage.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_ctx.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_const_or.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_ctx_sk_msg.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_d_path.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_direct_packet_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_direct_stack_access_wraparound.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_helper_access_var_len.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_div_overflow.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_div0.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_helper_packet_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_helper_restricted.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_int_ptr.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_helper_value_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_jeq_infer_not_null.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_ld_ind.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_leak_ptr.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_loops1.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_lwt.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_map_in_map.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_map_ptr.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_map_ptr_mixing.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_map_ret_val.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_masking.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_meta_access.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_netfilter_ctx.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_netfilter_retcode.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_prevent_map_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_raw_stack.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_raw_tp_writable.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_ref_tracking.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_reg_equal.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_regalloc.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_ringbuf.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_runtime_jit.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_scalar_ids.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_search_pruning.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_sock.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_spin_lock.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_stack_ptr.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_subreg.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_typedef.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_spill_fill.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_subprog_precision.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_uninit.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_unpriv.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_unpriv_perf.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_value.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_value_adj_spill.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_value_illegal_alu.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_value_or_null.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_value_ptr_arith.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_var_off.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_xadd.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_xdp.skel.h
  GEN-SKEL [test_progs-no_alu32] verifier_xdp_direct_packet_access.skel.h
  GEN-SKEL [test_progs-no_alu32] vrf_socket_lookup.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_dummy.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_features.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_hw_metadata.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_metadata.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_metadata2.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_redirect_map.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_redirect_multi_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_synproxy_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] xdp_tx.skel.h
  GEN-SKEL [test_progs-no_alu32] xdping_kern.skel.h
  GEN-SKEL [test_progs-no_alu32] xdpwall.skel.h
  GEN-SKEL [test_progs-no_alu32] xfrm_info.skel.h
  GEN-SKEL [test_progs-no_alu32] xsk_xdp_progs.skel.h
  GEN-SKEL [test_progs-no_alu32] fentry_test.lskel.h
  GEN-SKEL [test_progs-no_alu32] fexit_test.lskel.h
  GEN-SKEL [test_progs-no_alu32] fexit_sleep.lskel.h
  GEN-SKEL [test_progs-no_alu32] atomics.lskel.h
  GEN-SKEL [test_progs-no_alu32] trace_vprintk.lskel.h
  GEN-SKEL [test_progs-no_alu32] trace_printk.lskel.h
  GEN-SKEL [test_progs-no_alu32] map_ptr_kern.lskel.h
  GEN-SKEL [test_progs-no_alu32] core_kern.lskel.h
  GEN-SKEL [test_progs-no_alu32] core_kern_overflow.lskel.h
  GEN-SKEL [test_progs-no_alu32] test_ringbuf.lskel.h
  GEN-SKEL [test_progs-no_alu32] test_ringbuf_map_key.lskel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_module.lskel.h
  GEN-SKEL [test_progs-no_alu32] test_ksyms_weak.lskel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_test.lskel.h
  GEN-SKEL [test_progs-no_alu32] kfunc_call_test_subprog.lskel.h
  CXX      test_cpp
  CC       bench_rename.o
  CC       bench_trigger.o
  CC       bench_bpf_loop.o
  CC       bench_ringbufs.o
  CC       bench_bloom_filter_map.o
  CC       bench_bpf_hashmap_full_update.o
  CC       bench_strncmp.o
  CC       bench_local_storage.o
  CC       bench_local_storage_rcu_tasks_trace.o
  CC       bench_bpf_hashmap_lookup.o
  CC       bench_local_storage_create.o
  CC       bench_htab_mem.o
  BINARY   xskxceiver
  BINARY   xdp_features
  BINARY   xdp_hw_metadata
  GEN-SKEL [test_progs] pyperf100.skel.h
  GEN-SKEL [test_progs] pyperf180.skel.h
  GEN-SKEL [test_progs] pyperf600.skel.h
  LINK-BPF [test_progs] test_static_linked.bpf.o
  LINK-BPF [test_progs] linked_funcs.bpf.o
  LINK-BPF [test_progs] linked_vars.bpf.o
  LINK-BPF [test_progs] linked_maps.bpf.o
  LINK-BPF [test_progs] test_subskeleton.bpf.o
  LINK-BPF [test_progs] test_subskeleton_lib.bpf.o
  LINK-BPF [test_progs] test_usdt.bpf.o
  GEN-SKEL [test_progs-no_alu32] pyperf100.skel.h
  GEN-SKEL [test_progs] test_static_linked.skel.h
  GEN-SKEL [test_progs] linked_funcs.skel.h
  GEN-SKEL [test_progs] linked_vars.skel.h
  GEN-SKEL [test_progs] linked_maps.skel.h
  GEN-SKEL [test_progs] test_subskeleton.skel.h
  GEN-SKEL [test_progs] test_subskeleton_lib.skel.h
  GEN-SKEL [test_progs] test_usdt.skel.h
  BINARY   bench
  GEN-SKEL [test_progs-no_alu32] pyperf600.skel.h
  TEST-OBJ [test_maps] array_map_batch_ops.test.o
  TEST-OBJ [test_maps] htab_map_batch_ops.test.o
  TEST-OBJ [test_maps] lpm_trie_map_batch_ops.test.o
  TEST-OBJ [test_maps] map_in_map_batch_ops.test.o
  TEST-OBJ [test_maps] map_percpu_stats.test.o
  TEST-OBJ [test_maps] sk_storage_map.test.o
  TEST-OBJ [test_maps] task_storage_map.test.o
  TEST-OBJ [test_progs] access_variable_array.test.o
  TEST-OBJ [test_progs] align.test.o
  TEST-OBJ [test_progs] arg_parsing.test.o
  TEST-OBJ [test_progs] async_stack_depth.test.o
  TEST-OBJ [test_progs] atomic_bounds.test.o
  TEST-OBJ [test_progs] atomics.test.o
  TEST-OBJ [test_progs] attach_probe.test.o
  TEST-OBJ [test_progs] autoattach.test.o
  TEST-OBJ [test_progs] autoload.test.o
  TEST-OBJ [test_progs] bind_perm.test.o
  TEST-OBJ [test_progs] bloom_filter_map.test.o
  TEST-OBJ [test_progs] bpf_cookie.test.o
  TEST-OBJ [test_progs] bpf_iter.test.o
  TEST-OBJ [test_progs] bpf_iter_setsockopt.test.o
  TEST-OBJ [test_progs] bpf_iter_setsockopt_unix.test.o
  TEST-OBJ [test_progs] bpf_loop.test.o
  TEST-OBJ [test_progs] bpf_mod_race.test.o
  TEST-OBJ [test_progs] bpf_nf.test.o
  TEST-OBJ [test_progs] bpf_obj_id.test.o
  TEST-OBJ [test_progs] bpf_obj_pinning.test.o
  TEST-OBJ [test_progs] bpf_tcp_ca.test.o
  TEST-OBJ [test_progs] bpf_verif_scale.test.o
  TEST-OBJ [test_progs] btf.test.o
  TEST-OBJ [test_progs] btf_dedup_split.test.o
  TEST-OBJ [test_progs] btf_dump.test.o
  TEST-OBJ [test_progs] btf_endian.test.o
  TEST-OBJ [test_progs] btf_map_in_map.test.o
  TEST-OBJ [test_progs] btf_module.test.o
  TEST-OBJ [test_progs] btf_skc_cls_ingress.test.o
  TEST-OBJ [test_progs] btf_split.test.o
  TEST-OBJ [test_progs] btf_tag.test.o
  TEST-OBJ [test_progs] btf_write.test.o
  TEST-OBJ [test_progs] cb_refs.test.o
  TEST-OBJ [test_progs] cg_storage_multi.test.o
  TEST-OBJ [test_progs] cgroup_attach_autodetach.test.o
  TEST-OBJ [test_progs] cgroup_attach_multi.test.o
  TEST-OBJ [test_progs] cgroup_attach_override.test.o
  TEST-OBJ [test_progs] cgroup_getset_retval.test.o
  TEST-OBJ [test_progs] cgroup_iter.test.o
  TEST-OBJ [test_progs] cgroup_hierarchical_stats.test.o
  TEST-OBJ [test_progs] cgroup_link.test.o
  TEST-OBJ [test_progs] cgroup_skb_sk_lookup.test.o
  TEST-OBJ [test_progs] cgroup_tcp_skb.test.o
  TEST-OBJ [test_progs] cgroup_v1v2.test.o
  TEST-OBJ [test_progs] cgrp_local_storage.test.o
  TEST-OBJ [test_progs] cgrp_kfunc.test.o
  TEST-OBJ [test_progs] check_mtu.test.o
  TEST-OBJ [test_progs] cls_redirect.test.o
  TEST-OBJ [test_progs] connect_force_port.test.o
  TEST-OBJ [test_progs] connect_ping.test.o
  TEST-OBJ [test_progs] core_autosize.test.o
  TEST-OBJ [test_progs] core_kern.test.o
  TEST-OBJ [test_progs] core_extern.test.o
  TEST-OBJ [test_progs] core_read_macros.test.o
  TEST-OBJ [test_progs] core_reloc.test.o
  TEST-OBJ [test_progs] core_retro.test.o
  TEST-OBJ [test_progs] core_kern_overflow.test.o
  TEST-OBJ [test_progs] cpu_mask.test.o
  TEST-OBJ [test_progs] cpumask.test.o
  TEST-OBJ [test_progs] ctx_rewrite.test.o
  TEST-OBJ [test_progs] custom_sec_handlers.test.o
  TEST-OBJ [test_progs] decap_sanity.test.o
  TEST-OBJ [test_progs] d_path.test.o
  TEST-OBJ [test_progs] deny_namespace.test.o
  TEST-OBJ [test_progs] dynptr.test.o
  TEST-OBJ [test_progs] dummy_st_ops.test.o
  TEST-OBJ [test_progs] empty_skb.test.o
  TEST-OBJ [test_progs] enable_stats.test.o
  TEST-OBJ [test_progs] endian.test.o
  TEST-OBJ [test_progs] exhandler.test.o
  TEST-OBJ [test_progs] fentry_fexit.test.o
  TEST-OBJ [test_progs] fentry_test.test.o
  TEST-OBJ [test_progs] fexit_bpf2bpf.test.o
  TEST-OBJ [test_progs] fexit_sleep.test.o
  TEST-OBJ [test_progs] fexit_stress.test.o
  TEST-OBJ [test_progs] fexit_test.test.o
  TEST-OBJ [test_progs] fib_lookup.test.o
  TEST-OBJ [test_progs] find_vma.test.o
  TEST-OBJ [test_progs] flow_dissector.test.o
  TEST-OBJ [test_progs] flow_dissector_load_bytes.test.o
  TEST-OBJ [test_progs] flow_dissector_reattach.test.o
  TEST-OBJ [test_progs] for_each.test.o
  TEST-OBJ [test_progs] get_branch_snapshot.test.o
  TEST-OBJ [test_progs] get_func_args_test.test.o
  TEST-OBJ [test_progs] get_func_ip_test.test.o
  TEST-OBJ [test_progs] get_stack_raw_tp.test.o
  TEST-OBJ [test_progs] get_stackid_cannot_attach.test.o
  TEST-OBJ [test_progs] global_data.test.o
  TEST-OBJ [test_progs] global_data_init.test.o
  TEST-OBJ [test_progs] global_func_args.test.o
  TEST-OBJ [test_progs] global_map_resize.test.o
  TEST-OBJ [test_progs] hash_large_key.test.o
  TEST-OBJ [test_progs] hashmap.test.o
  TEST-OBJ [test_progs] helper_restricted.test.o
  TEST-OBJ [test_progs] htab_reuse.test.o
  TEST-OBJ [test_progs] htab_update.test.o
  TEST-OBJ [test_progs] inner_array_lookup.test.o
  TEST-OBJ [test_progs] iters.test.o
  TEST-OBJ [test_progs] jeq_infer_not_null.test.o
  TEST-OBJ [test_progs] kfree_skb.test.o
  TEST-OBJ [test_progs] jit_probe_mem.test.o
  TEST-OBJ [test_progs] kfunc_call.test.o
  TEST-OBJ [test_progs] kfunc_dynptr_param.test.o
  TEST-OBJ [test_progs] kprobe_multi_test.test.o
  TEST-OBJ [test_progs] kprobe_multi_testmod_test.test.o
  TEST-OBJ [test_progs] ksyms.test.o
  TEST-OBJ [test_progs] ksyms_btf.test.o
  TEST-OBJ [test_progs] ksyms_module.test.o
  TEST-OBJ [test_progs] l4lb_all.test.o
  TEST-OBJ [test_progs] legacy_printk.test.o
  TEST-OBJ [test_progs] libbpf_get_fd_by_id_opts.test.o
  TEST-OBJ [test_progs] libbpf_probes.test.o
  TEST-OBJ [test_progs] libbpf_str.test.o
  TEST-OBJ [test_progs] link_pinning.test.o
  TEST-OBJ [test_progs] linked_funcs.test.o
  TEST-OBJ [test_progs] linked_list.test.o
  TEST-OBJ [test_progs] linked_maps.test.o
  TEST-OBJ [test_progs] linked_vars.test.o
  TEST-OBJ [test_progs] load_bytes_relative.test.o
  TEST-OBJ [test_progs] local_kptr_stash.test.o
  TEST-OBJ [test_progs] log_buf.test.o
  TEST-OBJ [test_progs] log_fixup.test.o
  TEST-OBJ [test_progs] lookup_and_delete.test.o
  TEST-OBJ [test_progs] lookup_key.test.o
  TEST-OBJ [test_progs] lru_bug.test.o
  TEST-OBJ [test_progs] lsm_cgroup.test.o
  TEST-OBJ [test_progs] map_init.test.o
  TEST-OBJ [test_progs] map_kptr.test.o
  TEST-OBJ [test_progs] map_lock.test.o
  TEST-OBJ [test_progs] map_lookup_percpu_elem.test.o
  TEST-OBJ [test_progs] map_ops.test.o
  TEST-OBJ [test_progs] metadata.test.o
  TEST-OBJ [test_progs] map_ptr.test.o
  TEST-OBJ [test_progs] migrate_reuseport.test.o
  TEST-OBJ [test_progs] mmap.test.o
  TEST-OBJ [test_progs] modify_return.test.o
  TEST-OBJ [test_progs] module_attach.test.o
  TEST-OBJ [test_progs] module_fentry_shadow.test.o
  TEST-OBJ [test_progs] mptcp.test.o
  TEST-OBJ [test_progs] nested_trust.test.o
  TEST-OBJ [test_progs] netcnt.test.o
  TEST-OBJ [test_progs] netfilter_link_attach.test.o
  TEST-OBJ [test_progs] netns_cookie.test.o
  TEST-OBJ [test_progs] ns_current_pid_tgid.test.o
  TEST-OBJ [test_progs] obj_name.test.o
  TEST-OBJ [test_progs] parse_tcp_hdr_opt.test.o
  TEST-OBJ [test_progs] pe_preserve_elems.test.o
  TEST-OBJ [test_progs] perf_branches.test.o
  TEST-OBJ [test_progs] perf_buffer.test.o
  TEST-OBJ [test_progs] perf_event_stackmap.test.o
  TEST-OBJ [test_progs] perf_link.test.o
  TEST-OBJ [test_progs] pinning.test.o
  TEST-OBJ [test_progs] pkt_access.test.o
  TEST-OBJ [test_progs] pkt_md_access.test.o
  TEST-OBJ [test_progs] probe_read_user_str.test.o
  TEST-OBJ [test_progs] probe_user.test.o
  TEST-OBJ [test_progs] prog_array_init.test.o
  TEST-OBJ [test_progs] prog_run_opts.test.o
  TEST-OBJ [test_progs] prog_tests_framework.test.o
  TEST-OBJ [test_progs] ptr_untrusted.test.o
  TEST-OBJ [test_progs] queue_stack_map.test.o
  TEST-OBJ [test_progs] raw_tp_test_run.test.o
  TEST-OBJ [test_progs] raw_tp_writable_reject_nbd_invalid.test.o
  TEST-OBJ [test_progs] raw_tp_writable_test_run.test.o
  TEST-OBJ [test_progs] rbtree.test.o
  TEST-OBJ [test_progs] rdonly_maps.test.o
  TEST-OBJ [test_progs] rcu_read_lock.test.o
  TEST-OBJ [test_progs] recursion.test.o
  TEST-OBJ [test_progs] refcounted_kptr.test.o
  TEST-OBJ [test_progs] reference_tracking.test.o
  TEST-OBJ [test_progs] resolve_btfids.test.o
  TEST-OBJ [test_progs] ringbuf.test.o
  TEST-OBJ [test_progs] ringbuf_multi.test.o
  TEST-OBJ [test_progs] section_names.test.o
  TEST-OBJ [test_progs] select_reuseport.test.o
  TEST-OBJ [test_progs] send_signal.test.o
  TEST-OBJ [test_progs] send_signal_sched_switch.test.o
  TEST-OBJ [test_progs] setget_sockopt.test.o
  TEST-OBJ [test_progs] signal_pending.test.o
  TEST-OBJ [test_progs] sk_assign.test.o
  TEST-OBJ [test_progs] sk_lookup.test.o
  TEST-OBJ [test_progs] sk_storage_tracing.test.o
  TEST-OBJ [test_progs] skb_ctx.test.o
  TEST-OBJ [test_progs] skb_helpers.test.o
  TEST-OBJ [test_progs] skc_to_unix_sock.test.o
  TEST-OBJ [test_progs] skb_load_bytes.test.o
  TEST-OBJ [test_progs] skeleton.test.o
  TEST-OBJ [test_progs] snprintf.test.o
  TEST-OBJ [test_progs] snprintf_btf.test.o
  TEST-OBJ [test_progs] sock_destroy.test.o
  TEST-OBJ [test_progs] sock_fields.test.o
  TEST-OBJ [test_progs] socket_cookie.test.o
  TEST-OBJ [test_progs] sockmap_basic.test.o
  TEST-OBJ [test_progs] sockmap_ktls.test.o
  TEST-OBJ [test_progs] sockmap_listen.test.o
  TEST-OBJ [test_progs] sockopt.test.o
  TEST-OBJ [test_progs] sockopt_inherit.test.o
  TEST-OBJ [test_progs] sockopt_multi.test.o
  TEST-OBJ [test_progs] sockopt_qos_to_cc.test.o
  TEST-OBJ [test_progs] sockopt_sk.test.o
  TEST-OBJ [test_progs] spin_lock.test.o
  TEST-OBJ [test_progs] stack_var_off.test.o
  TEST-OBJ [test_progs] stacktrace_build_id.test.o
  TEST-OBJ [test_progs] stacktrace_build_id_nmi.test.o
  TEST-OBJ [test_progs] stacktrace_map.test.o
  TEST-OBJ [test_progs] stacktrace_map_raw_tp.test.o
  TEST-OBJ [test_progs] stacktrace_map_skip.test.o
  TEST-OBJ [test_progs] static_linked.test.o
  TEST-OBJ [test_progs] subprogs.test.o
  TEST-OBJ [test_progs] subprogs_extable.test.o
  TEST-OBJ [test_progs] subskeleton.test.o
  TEST-OBJ [test_progs] syscall.test.o
  TEST-OBJ [test_progs] tailcalls.test.o
  TEST-OBJ [test_progs] task_fd_query_rawtp.test.o
  TEST-OBJ [test_progs] task_fd_query_tp.test.o
  TEST-OBJ [test_progs] task_kfunc.test.o
  TEST-OBJ [test_progs] task_local_storage.test.o
  TEST-OBJ [test_progs] task_pt_regs.test.o
  TEST-OBJ [test_progs] task_under_cgroup.test.o
  TEST-OBJ [test_progs] tc_bpf.test.o
  TEST-OBJ [test_progs] tc_redirect.test.o
  TEST-OBJ [test_progs] tcp_estats.test.o
  TEST-OBJ [test_progs] tcp_hdr_options.test.o
  TEST-OBJ [test_progs] tcp_rtt.test.o
  TEST-OBJ [test_progs] test_bpf_syscall_macro.test.o
  TEST-OBJ [test_progs] tcpbpf_user.test.o
  TEST-OBJ [test_progs] test_bpffs.test.o
  TEST-OBJ [test_progs] test_bprm_opts.test.o
  TEST-OBJ [test_progs] test_global_funcs.test.o
  TEST-OBJ [test_progs] test_ima.test.o
  TEST-OBJ [test_progs] test_local_storage.test.o
  TEST-OBJ [test_progs] test_lsm.test.o
  TEST-OBJ [test_progs] test_overhead.test.o
  TEST-OBJ [test_progs] test_profiler.test.o
  TEST-OBJ [test_progs] test_skb_pkt_end.test.o
  TEST-OBJ [test_progs] test_strncmp.test.o
  TEST-OBJ [test_progs] test_tunnel.test.o
  TEST-OBJ [test_progs] time_tai.test.o
  TEST-OBJ [test_progs] timer.test.o
  TEST-OBJ [test_progs] timer_crash.test.o
  TEST-OBJ [test_progs] timer_mim.test.o
  TEST-OBJ [test_progs] tp_attach_query.test.o
  TEST-OBJ [test_progs] trace_ext.test.o
  TEST-OBJ [test_progs] trace_printk.test.o
  TEST-OBJ [test_progs] trace_vprintk.test.o
  TEST-OBJ [test_progs] tracing_struct.test.o
  TEST-OBJ [test_progs] trampoline_count.test.o
  TEST-OBJ [test_progs] type_cast.test.o
  TEST-OBJ [test_progs] udp_limit.test.o
  TEST-OBJ [test_progs] uninit_stack.test.o
  TEST-OBJ [test_progs] unpriv_bpf_disabled.test.o
  TEST-OBJ [test_progs] uprobe_autoattach.test.o
  TEST-OBJ [test_progs] usdt.test.o
  TEST-OBJ [test_progs] user_ringbuf.test.o
  TEST-OBJ [test_progs] varlen.test.o
  TEST-OBJ [test_progs] verif_stats.test.o
  TEST-OBJ [test_progs] verifier.test.o
  TEST-OBJ [test_progs] verifier_log.test.o
  TEST-OBJ [test_progs] verify_pkcs7_sig.test.o
  TEST-OBJ [test_progs] vmlinux.test.o
  TEST-OBJ [test_progs] vrf_socket_lookup.test.o
  TEST-OBJ [test_progs] xdp.test.o
  TEST-OBJ [test_progs] xdp_adjust_frags.test.o
  TEST-OBJ [test_progs] xdp_adjust_tail.test.o
  TEST-OBJ [test_progs] xdp_attach.test.o
  TEST-OBJ [test_progs] xdp_bonding.test.o
  TEST-OBJ [test_progs] xdp_bpf2bpf.test.o
  TEST-OBJ [test_progs] xdp_context_test_run.test.o
  TEST-OBJ [test_progs] xdp_cpumap_attach.test.o
  TEST-OBJ [test_progs] xdp_devmap_attach.test.o
  TEST-OBJ [test_progs] xdp_info.test.o
  TEST-OBJ [test_progs] xdp_do_redirect.test.o
  TEST-OBJ [test_progs] xdp_link.test.o
  TEST-OBJ [test_progs] xdp_metadata.test.o
  TEST-OBJ [test_progs] xdp_noinline.test.o
  TEST-OBJ [test_progs] xdp_perf.test.o
  TEST-OBJ [test_progs] xdp_synproxy.test.o
  TEST-OBJ [test_progs] xdpwall.test.o
  TEST-OBJ [test_progs] xfrm_info.test.o
  GEN-SKEL [test_progs-no_alu32] pyperf180.skel.h
  LINK-BPF [test_progs-no_alu32] test_static_linked.bpf.o
  LINK-BPF [test_progs-no_alu32] linked_funcs.bpf.o
  LINK-BPF [test_progs-no_alu32] linked_vars.bpf.o
  LINK-BPF [test_progs-no_alu32] linked_maps.bpf.o
  LINK-BPF [test_progs-no_alu32] test_subskeleton.bpf.o
  LINK-BPF [test_progs-no_alu32] test_subskeleton_lib.bpf.o
  GEN-SKEL [test_progs-no_alu32] test_static_linked.skel.h
  GEN-SKEL [test_progs-no_alu32] linked_funcs.skel.h
  GEN-SKEL [test_progs-no_alu32] linked_maps.skel.h
  GEN-SKEL [test_progs-no_alu32] linked_vars.skel.h
  LINK-BPF [test_progs-no_alu32] test_usdt.bpf.o
  GEN-SKEL [test_progs-no_alu32] test_subskeleton.skel.h
  GEN-SKEL [test_progs-no_alu32] test_subskeleton_lib.skel.h
  BINARY   test_maps
  GEN-SKEL [test_progs-no_alu32] test_usdt.skel.h
  TEST-OBJ [test_progs-no_alu32] access_variable_array.test.o
  TEST-OBJ [test_progs-no_alu32] align.test.o
  TEST-OBJ [test_progs-no_alu32] arg_parsing.test.o
  TEST-OBJ [test_progs-no_alu32] async_stack_depth.test.o
  TEST-OBJ [test_progs-no_alu32] atomic_bounds.test.o
  TEST-OBJ [test_progs-no_alu32] atomics.test.o
  TEST-OBJ [test_progs-no_alu32] attach_probe.test.o
  TEST-OBJ [test_progs-no_alu32] autoattach.test.o
  TEST-OBJ [test_progs-no_alu32] autoload.test.o
  TEST-OBJ [test_progs-no_alu32] bind_perm.test.o
  TEST-OBJ [test_progs-no_alu32] bloom_filter_map.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_cookie.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_iter.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_iter_setsockopt.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_iter_setsockopt_unix.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_loop.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_mod_race.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_nf.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_obj_id.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_obj_pinning.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_tcp_ca.test.o
  TEST-OBJ [test_progs-no_alu32] bpf_verif_scale.test.o
  TEST-OBJ [test_progs-no_alu32] btf.test.o
  TEST-OBJ [test_progs-no_alu32] btf_dedup_split.test.o
  TEST-OBJ [test_progs-no_alu32] btf_dump.test.o
  TEST-OBJ [test_progs-no_alu32] btf_endian.test.o
  TEST-OBJ [test_progs-no_alu32] btf_map_in_map.test.o
  TEST-OBJ [test_progs-no_alu32] btf_module.test.o
  TEST-OBJ [test_progs-no_alu32] btf_skc_cls_ingress.test.o
  TEST-OBJ [test_progs-no_alu32] btf_split.test.o
  TEST-OBJ [test_progs-no_alu32] btf_tag.test.o
  TEST-OBJ [test_progs-no_alu32] btf_write.test.o
  TEST-OBJ [test_progs-no_alu32] cb_refs.test.o
  TEST-OBJ [test_progs-no_alu32] cg_storage_multi.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_attach_autodetach.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_attach_multi.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_attach_override.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_getset_retval.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_hierarchical_stats.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_iter.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_link.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_skb_sk_lookup.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_tcp_skb.test.o
  TEST-OBJ [test_progs-no_alu32] cgroup_v1v2.test.o
  TEST-OBJ [test_progs-no_alu32] cgrp_kfunc.test.o
  TEST-OBJ [test_progs-no_alu32] cgrp_local_storage.test.o
  TEST-OBJ [test_progs-no_alu32] check_mtu.test.o
  TEST-OBJ [test_progs-no_alu32] cls_redirect.test.o
  TEST-OBJ [test_progs-no_alu32] connect_force_port.test.o
  TEST-OBJ [test_progs-no_alu32] connect_ping.test.o
  TEST-OBJ [test_progs-no_alu32] core_autosize.test.o
  TEST-OBJ [test_progs-no_alu32] core_extern.test.o
  TEST-OBJ [test_progs-no_alu32] core_kern.test.o
  TEST-OBJ [test_progs-no_alu32] core_read_macros.test.o
  TEST-OBJ [test_progs-no_alu32] core_reloc.test.o
  TEST-OBJ [test_progs-no_alu32] core_kern_overflow.test.o
  TEST-OBJ [test_progs-no_alu32] core_retro.test.o
  TEST-OBJ [test_progs-no_alu32] cpu_mask.test.o
  TEST-OBJ [test_progs-no_alu32] cpumask.test.o
  TEST-OBJ [test_progs-no_alu32] ctx_rewrite.test.o
  TEST-OBJ [test_progs-no_alu32] custom_sec_handlers.test.o
  TEST-OBJ [test_progs-no_alu32] d_path.test.o
  TEST-OBJ [test_progs-no_alu32] decap_sanity.test.o
  TEST-OBJ [test_progs-no_alu32] deny_namespace.test.o
  TEST-OBJ [test_progs-no_alu32] dummy_st_ops.test.o
  TEST-OBJ [test_progs-no_alu32] dynptr.test.o
  TEST-OBJ [test_progs-no_alu32] empty_skb.test.o
  TEST-OBJ [test_progs-no_alu32] enable_stats.test.o
  TEST-OBJ [test_progs-no_alu32] endian.test.o
  TEST-OBJ [test_progs-no_alu32] exhandler.test.o
  TEST-OBJ [test_progs-no_alu32] fentry_fexit.test.o
  TEST-OBJ [test_progs-no_alu32] fentry_test.test.o
  TEST-OBJ [test_progs-no_alu32] fexit_bpf2bpf.test.o
  TEST-OBJ [test_progs-no_alu32] fexit_sleep.test.o
  TEST-OBJ [test_progs-no_alu32] fexit_stress.test.o
  TEST-OBJ [test_progs-no_alu32] fexit_test.test.o
  TEST-OBJ [test_progs-no_alu32] fib_lookup.test.o
  TEST-OBJ [test_progs-no_alu32] find_vma.test.o
  TEST-OBJ [test_progs-no_alu32] flow_dissector.test.o
  TEST-OBJ [test_progs-no_alu32] flow_dissector_load_bytes.test.o
  TEST-OBJ [test_progs-no_alu32] flow_dissector_reattach.test.o
  TEST-OBJ [test_progs-no_alu32] for_each.test.o
  TEST-OBJ [test_progs-no_alu32] get_branch_snapshot.test.o
  TEST-OBJ [test_progs-no_alu32] get_func_args_test.test.o
  TEST-OBJ [test_progs-no_alu32] get_func_ip_test.test.o
  TEST-OBJ [test_progs-no_alu32] get_stack_raw_tp.test.o
  TEST-OBJ [test_progs-no_alu32] get_stackid_cannot_attach.test.o
  TEST-OBJ [test_progs-no_alu32] global_data.test.o
  TEST-OBJ [test_progs-no_alu32] global_data_init.test.o
  TEST-OBJ [test_progs-no_alu32] global_func_args.test.o
  TEST-OBJ [test_progs-no_alu32] global_map_resize.test.o
  TEST-OBJ [test_progs-no_alu32] hash_large_key.test.o
  TEST-OBJ [test_progs-no_alu32] hashmap.test.o
  TEST-OBJ [test_progs-no_alu32] helper_restricted.test.o
  TEST-OBJ [test_progs-no_alu32] htab_reuse.test.o
  TEST-OBJ [test_progs-no_alu32] htab_update.test.o
  TEST-OBJ [test_progs-no_alu32] inner_array_lookup.test.o
  TEST-OBJ [test_progs-no_alu32] iters.test.o
  TEST-OBJ [test_progs-no_alu32] jeq_infer_not_null.test.o
  TEST-OBJ [test_progs-no_alu32] jit_probe_mem.test.o
  TEST-OBJ [test_progs-no_alu32] kfree_skb.test.o
  TEST-OBJ [test_progs-no_alu32] kfunc_call.test.o
  TEST-OBJ [test_progs-no_alu32] kfunc_dynptr_param.test.o
  TEST-OBJ [test_progs-no_alu32] kprobe_multi_test.test.o
  TEST-OBJ [test_progs-no_alu32] kprobe_multi_testmod_test.test.o
  TEST-OBJ [test_progs-no_alu32] ksyms.test.o
  TEST-OBJ [test_progs-no_alu32] ksyms_btf.test.o
  TEST-OBJ [test_progs-no_alu32] ksyms_module.test.o
  TEST-OBJ [test_progs-no_alu32] l4lb_all.test.o
  TEST-OBJ [test_progs-no_alu32] legacy_printk.test.o
  TEST-OBJ [test_progs-no_alu32] libbpf_probes.test.o
  TEST-OBJ [test_progs-no_alu32] libbpf_str.test.o
  TEST-OBJ [test_progs-no_alu32] libbpf_get_fd_by_id_opts.test.o
  TEST-OBJ [test_progs-no_alu32] link_pinning.test.o
  TEST-OBJ [test_progs-no_alu32] linked_funcs.test.o
  TEST-OBJ [test_progs-no_alu32] linked_list.test.o
  TEST-OBJ [test_progs-no_alu32] linked_maps.test.o
  TEST-OBJ [test_progs-no_alu32] linked_vars.test.o
  TEST-OBJ [test_progs-no_alu32] load_bytes_relative.test.o
  TEST-OBJ [test_progs-no_alu32] log_buf.test.o
  TEST-OBJ [test_progs-no_alu32] local_kptr_stash.test.o
  TEST-OBJ [test_progs-no_alu32] log_fixup.test.o
  TEST-OBJ [test_progs-no_alu32] lookup_and_delete.test.o
  TEST-OBJ [test_progs-no_alu32] lookup_key.test.o
  TEST-OBJ [test_progs-no_alu32] lsm_cgroup.test.o
  TEST-OBJ [test_progs-no_alu32] lru_bug.test.o
  TEST-OBJ [test_progs-no_alu32] map_init.test.o
  TEST-OBJ [test_progs-no_alu32] map_kptr.test.o
  TEST-OBJ [test_progs-no_alu32] map_lock.test.o
  TEST-OBJ [test_progs-no_alu32] map_lookup_percpu_elem.test.o
  TEST-OBJ [test_progs-no_alu32] map_ops.test.o
  TEST-OBJ [test_progs-no_alu32] map_ptr.test.o
  TEST-OBJ [test_progs-no_alu32] metadata.test.o
  TEST-OBJ [test_progs-no_alu32] migrate_reuseport.test.o
  TEST-OBJ [test_progs-no_alu32] mmap.test.o
  TEST-OBJ [test_progs-no_alu32] modify_return.test.o
  TEST-OBJ [test_progs-no_alu32] module_attach.test.o
  TEST-OBJ [test_progs-no_alu32] module_fentry_shadow.test.o
  TEST-OBJ [test_progs-no_alu32] mptcp.test.o
  TEST-OBJ [test_progs-no_alu32] nested_trust.test.o
  TEST-OBJ [test_progs-no_alu32] netcnt.test.o
  TEST-OBJ [test_progs-no_alu32] netfilter_link_attach.test.o
  TEST-OBJ [test_progs-no_alu32] netns_cookie.test.o
  TEST-OBJ [test_progs-no_alu32] ns_current_pid_tgid.test.o
  TEST-OBJ [test_progs-no_alu32] obj_name.test.o
  TEST-OBJ [test_progs-no_alu32] parse_tcp_hdr_opt.test.o
  TEST-OBJ [test_progs-no_alu32] pe_preserve_elems.test.o
  TEST-OBJ [test_progs-no_alu32] perf_branches.test.o
  TEST-OBJ [test_progs-no_alu32] perf_buffer.test.o
  TEST-OBJ [test_progs-no_alu32] perf_event_stackmap.test.o
  TEST-OBJ [test_progs-no_alu32] perf_link.test.o
  TEST-OBJ [test_progs-no_alu32] pinning.test.o
  TEST-OBJ [test_progs-no_alu32] pkt_access.test.o
  TEST-OBJ [test_progs-no_alu32] pkt_md_access.test.o
  TEST-OBJ [test_progs-no_alu32] probe_read_user_str.test.o
  TEST-OBJ [test_progs-no_alu32] probe_user.test.o
  TEST-OBJ [test_progs-no_alu32] prog_run_opts.test.o
  TEST-OBJ [test_progs-no_alu32] prog_array_init.test.o
  TEST-OBJ [test_progs-no_alu32] prog_tests_framework.test.o
  TEST-OBJ [test_progs-no_alu32] ptr_untrusted.test.o
  TEST-OBJ [test_progs-no_alu32] queue_stack_map.test.o
  TEST-OBJ [test_progs-no_alu32] raw_tp_test_run.test.o
  TEST-OBJ [test_progs-no_alu32] raw_tp_writable_reject_nbd_invalid.test.o
  TEST-OBJ [test_progs-no_alu32] raw_tp_writable_test_run.test.o
  TEST-OBJ [test_progs-no_alu32] rbtree.test.o
  TEST-OBJ [test_progs-no_alu32] rcu_read_lock.test.o
  TEST-OBJ [test_progs-no_alu32] rdonly_maps.test.o
  TEST-OBJ [test_progs-no_alu32] recursion.test.o
  TEST-OBJ [test_progs-no_alu32] refcounted_kptr.test.o
  TEST-OBJ [test_progs-no_alu32] reference_tracking.test.o
  TEST-OBJ [test_progs-no_alu32] resolve_btfids.test.o
  TEST-OBJ [test_progs-no_alu32] ringbuf.test.o
  TEST-OBJ [test_progs-no_alu32] ringbuf_multi.test.o
  TEST-OBJ [test_progs-no_alu32] section_names.test.o
  TEST-OBJ [test_progs-no_alu32] select_reuseport.test.o
  TEST-OBJ [test_progs-no_alu32] send_signal.test.o
  TEST-OBJ [test_progs-no_alu32] send_signal_sched_switch.test.o
  TEST-OBJ [test_progs-no_alu32] setget_sockopt.test.o
  TEST-OBJ [test_progs-no_alu32] signal_pending.test.o
  TEST-OBJ [test_progs-no_alu32] sk_assign.test.o
  TEST-OBJ [test_progs-no_alu32] sk_lookup.test.o
  TEST-OBJ [test_progs-no_alu32] sk_storage_tracing.test.o
  TEST-OBJ [test_progs-no_alu32] skb_ctx.test.o
  TEST-OBJ [test_progs-no_alu32] skb_helpers.test.o
  TEST-OBJ [test_progs-no_alu32] skb_load_bytes.test.o
  TEST-OBJ [test_progs-no_alu32] skeleton.test.o
  TEST-OBJ [test_progs-no_alu32] skc_to_unix_sock.test.o
  TEST-OBJ [test_progs-no_alu32] snprintf.test.o
  TEST-OBJ [test_progs-no_alu32] snprintf_btf.test.o
  TEST-OBJ [test_progs-no_alu32] sock_destroy.test.o
  TEST-OBJ [test_progs-no_alu32] sock_fields.test.o
  TEST-OBJ [test_progs-no_alu32] sockmap_basic.test.o
  TEST-OBJ [test_progs-no_alu32] socket_cookie.test.o
  TEST-OBJ [test_progs-no_alu32] sockmap_ktls.test.o
  TEST-OBJ [test_progs-no_alu32] sockmap_listen.test.o
  TEST-OBJ [test_progs-no_alu32] sockopt.test.o
  TEST-OBJ [test_progs-no_alu32] sockopt_inherit.test.o
  TEST-OBJ [test_progs-no_alu32] sockopt_multi.test.o
  TEST-OBJ [test_progs-no_alu32] sockopt_qos_to_cc.test.o
  TEST-OBJ [test_progs-no_alu32] sockopt_sk.test.o
  TEST-OBJ [test_progs-no_alu32] stack_var_off.test.o
  TEST-OBJ [test_progs-no_alu32] spin_lock.test.o
  TEST-OBJ [test_progs-no_alu32] stacktrace_build_id.test.o
  TEST-OBJ [test_progs-no_alu32] stacktrace_build_id_nmi.test.o
  TEST-OBJ [test_progs-no_alu32] stacktrace_map.test.o
  TEST-OBJ [test_progs-no_alu32] stacktrace_map_raw_tp.test.o
  TEST-OBJ [test_progs-no_alu32] stacktrace_map_skip.test.o
  TEST-OBJ [test_progs-no_alu32] static_linked.test.o
  TEST-OBJ [test_progs-no_alu32] subprogs.test.o
  TEST-OBJ [test_progs-no_alu32] subprogs_extable.test.o
  TEST-OBJ [test_progs-no_alu32] subskeleton.test.o
  TEST-OBJ [test_progs-no_alu32] syscall.test.o
  TEST-OBJ [test_progs-no_alu32] tailcalls.test.o
  TEST-OBJ [test_progs-no_alu32] task_fd_query_rawtp.test.o
  TEST-OBJ [test_progs-no_alu32] task_fd_query_tp.test.o
  TEST-OBJ [test_progs-no_alu32] task_kfunc.test.o
  TEST-OBJ [test_progs-no_alu32] task_local_storage.test.o
  TEST-OBJ [test_progs-no_alu32] task_pt_regs.test.o
  TEST-OBJ [test_progs-no_alu32] task_under_cgroup.test.o
  TEST-OBJ [test_progs-no_alu32] tc_bpf.test.o
  TEST-OBJ [test_progs-no_alu32] tc_redirect.test.o
  TEST-OBJ [test_progs-no_alu32] tcp_estats.test.o
  TEST-OBJ [test_progs-no_alu32] tcp_hdr_options.test.o
  TEST-OBJ [test_progs-no_alu32] tcp_rtt.test.o
  TEST-OBJ [test_progs-no_alu32] tcpbpf_user.test.o
  TEST-OBJ [test_progs-no_alu32] test_bpf_syscall_macro.test.o
  TEST-OBJ [test_progs-no_alu32] test_bpffs.test.o
  TEST-OBJ [test_progs-no_alu32] test_bprm_opts.test.o
  TEST-OBJ [test_progs-no_alu32] test_global_funcs.test.o
  TEST-OBJ [test_progs-no_alu32] test_ima.test.o
  TEST-OBJ [test_progs-no_alu32] test_local_storage.test.o
  TEST-OBJ [test_progs-no_alu32] test_lsm.test.o
  TEST-OBJ [test_progs-no_alu32] test_overhead.test.o
  TEST-OBJ [test_progs-no_alu32] test_profiler.test.o
  TEST-OBJ [test_progs-no_alu32] test_strncmp.test.o
  TEST-OBJ [test_progs-no_alu32] test_skb_pkt_end.test.o
  TEST-OBJ [test_progs-no_alu32] test_tunnel.test.o
  TEST-OBJ [test_progs-no_alu32] time_tai.test.o
  TEST-OBJ [test_progs-no_alu32] timer.test.o
  TEST-OBJ [test_progs-no_alu32] timer_crash.test.o
  TEST-OBJ [test_progs-no_alu32] timer_mim.test.o
  TEST-OBJ [test_progs-no_alu32] tp_attach_query.test.o
  TEST-OBJ [test_progs-no_alu32] trace_ext.test.o
  TEST-OBJ [test_progs-no_alu32] trace_printk.test.o
  TEST-OBJ [test_progs-no_alu32] trace_vprintk.test.o
  TEST-OBJ [test_progs-no_alu32] tracing_struct.test.o
  TEST-OBJ [test_progs-no_alu32] trampoline_count.test.o
  TEST-OBJ [test_progs-no_alu32] type_cast.test.o
  TEST-OBJ [test_progs-no_alu32] udp_limit.test.o
  TEST-OBJ [test_progs-no_alu32] uninit_stack.test.o
  TEST-OBJ [test_progs-no_alu32] uprobe_autoattach.test.o
  TEST-OBJ [test_progs-no_alu32] unpriv_bpf_disabled.test.o
  TEST-OBJ [test_progs-no_alu32] usdt.test.o
  TEST-OBJ [test_progs-no_alu32] user_ringbuf.test.o
  TEST-OBJ [test_progs-no_alu32] varlen.test.o
  TEST-OBJ [test_progs-no_alu32] verif_stats.test.o
  TEST-OBJ [test_progs-no_alu32] verifier.test.o
  TEST-OBJ [test_progs-no_alu32] verifier_log.test.o
  TEST-OBJ [test_progs-no_alu32] verify_pkcs7_sig.test.o
  TEST-OBJ [test_progs-no_alu32] vmlinux.test.o
  TEST-OBJ [test_progs-no_alu32] vrf_socket_lookup.test.o
  TEST-OBJ [test_progs-no_alu32] xdp.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_adjust_frags.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_adjust_tail.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_attach.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_bonding.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_bpf2bpf.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_context_test_run.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_cpumap_attach.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_devmap_attach.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_do_redirect.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_info.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_link.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_metadata.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_noinline.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_perf.test.o
  TEST-OBJ [test_progs-no_alu32] xdp_synproxy.test.o
  TEST-OBJ [test_progs-no_alu32] xdpwall.test.o
  TEST-OBJ [test_progs-no_alu32] xfrm_info.test.o
  BINARY   test_progs
  BINARY   test_progs-no_alu32
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/bpf'
2023-07-23 23:11:54 make -j36 -C ../../../tools/testing/selftests/net
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseport_bpf.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseport_bpf_cpu.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf_cpu
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseport_bpf_numa.c -lnuma -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf_numa
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseport_dualstack.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_dualstack
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseaddr_conflict.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseaddr_conflict
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tls.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tls
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tun.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tun
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tap.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tap
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     sk_bind_sendto_listen.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sk_bind_sendto_listen
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     sk_connect_zero_addr.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sk_connect_zero_addr
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     so_incoming_cpu.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_incoming_cpu
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     socket.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/socket
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     nettest.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/nettest
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     psock_fanout.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_fanout
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     psock_tpacket.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_tpacket
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     msg_zerocopy.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/msg_zerocopy
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseport_addr_any.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_addr_any
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tcp_mmap.c -lpthread -lcrypto -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_mmap
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tcp_inq.c -lpthread -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_inq
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     psock_snd.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_snd
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     txring_overwrite.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/txring_overwrite
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     udpgso.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     udpgso_bench_tx.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso_bench_tx
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     udpgso_bench_rx.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso_bench_rx
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ip_defrag.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ip_defrag
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     so_txtime.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_txtime
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ipv6_flowlabel.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipv6_flowlabel
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ipv6_flowlabel_mgr.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipv6_flowlabel_mgr
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     so_netns_cookie.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_netns_cookie
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     tcp_fastopen_backup_key.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_fastopen_backup_key
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     fin_ack_lat.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/fin_ack_lat
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     reuseaddr_ports_exhausted.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseaddr_ports_exhausted
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     hwtstamp_config.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/hwtstamp_config
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     rxtimestamp.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/rxtimestamp
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     timestamping.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/timestamping
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     txtimestamp.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/txtimestamp
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ipsec.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipsec
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ioam6_parser.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ioam6_parser
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     gro.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/gro
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     toeplitz.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/toeplitz
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     cmsg_sender.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/cmsg_sender
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     stress_reuseport_listen.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/stress_reuseport_listen
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     io_uring_zerocopy_tx.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/io_uring_zerocopy_tx
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     bind_bhash.c -lpthread -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/bind_bhash
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     sctp_hello.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sctp_hello
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     csum.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/csum
mkdir -p /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     ip_local_port_range.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ip_local_port_range
gcc -Wall -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -isystem /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/usr/include     bind_wildcard.c  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/bind_wildcard
make  -C /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/lib/bpf OUTPUT=/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/     \
	    EXTRA_CFLAGS='-g -O0'				       \
	    DESTDIR=/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools prefix= all install_headers
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/lib/bpf'
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/bpf_helper_defs.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/btf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/libbpf.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/libbpf_common.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/libbpf_legacy.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf_helpers.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf_tracing.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf_endian.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf_core_read.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/skel_internal.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/libbpf_version.h
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/usdt.bpf.h
  HOSTCC  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/fixdep.o
  INSTALL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include/bpf/bpf_helper_defs.h
  INSTALL libbpf_headers
  HOSTLD  /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/fixdep-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/fixdep
  GEN     /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/libbpf.pc
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/gen_loader.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/libbpf_errno.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/str_error.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/zip.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/hashmap.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/strset.o
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  MKDIR   /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/libbpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/bpf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/nlattr.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/btf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/str_error.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/libbpf_errno.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/netlink.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/bpf_prog_linfo.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/libbpf_probes.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/hashmap.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/btf_dump.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/ringbuf.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/strset.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/linker.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/gen_loader.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/relo_core.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/usdt.o
  CC      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/zip.o
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/staticobjs/libbpf-in.o
  LD      /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/sharedobjs/libbpf-in.o
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/libbpf.a
  LINK    /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/build/libbpf/libbpf.so.1.3.0
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/lib/bpf'
clang -O2 --target=bpf -c nat6to4.c -I../bpf/tools/include -I../bpf -I../../../../usr/include/ -I/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tools/include -idirafter /opt/cross/clang-4a5ac14ee9/lib/clang/17/include -idirafter /usr/local/include -idirafter /usr/lib/gcc/x86_64-linux-gnu/12/../../../../x86_64-linux-gnu/include -idirafter /usr/include/x86_64-linux-gnu -idirafter /usr/include  -o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/nat6to4.o
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
2023-07-23 23:11:57 make install INSTALL_PATH=/usr/bin/ -C ../../../tools/testing/selftests/net
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
rsync -aL run_netsocktests run_afpackettests test_bpf.sh netdevice.sh rtnetlink.sh xfrm_policy.sh test_blackhole_dev.sh fib_tests.sh fib-onlink-tests.sh pmtu.sh udpgso.sh ip_defrag.sh udpgso_bench.sh fib_rule_tests.sh msg_zerocopy.sh psock_snd.sh udpgro_bench.sh udpgro.sh test_vxlan_under_vrf.sh reuseport_addr_any.sh test_vxlan_fdb_changelink.sh so_txtime.sh ipv6_flowlabel.sh tcp_fastopen_backup_key.sh fcnal-test.sh l2tp.sh traceroute.sh fin_ack_lat.sh fib_nexthop_multiprefix.sh fib_nexthops.sh fib_nexthop_nongw.sh altnames.sh icmp.sh icmp_redirect.sh ip6_gre_headroom.sh route_localnet.sh reuseaddr_ports_exhausted.sh txtimestamp.sh vrf-xfrm-tests.sh rxtimestamp.sh devlink_port_split.py drop_monitor_tests.sh vrf_route_leaking.sh bareudp.sh amt.sh unicast_extensions.sh udpgro_fwd.sh udpgro_frglist.sh veth.sh ioam6.sh gro.sh gre_gso.sh cmsg_so_mark.sh cmsg_time.sh cmsg_ipv6.sh srv6_end_dt46_l3vpn_test.sh srv6_end_dt4_l3vpn_test.sh srv6_end_dt6_l3vpn_test.sh srv6_hencap_red_l3vpn_test.sh srv6_hl2encap_red_l2vpn_test.sh srv6_end_next_csid_l3vpn_test.sh srv6_end_flavors_test.sh vrf_strict_mode_test.sh arp_ndisc_evict_nocarrier.sh ndisc_unsolicited_na_test.sh arp_ndisc_untracked_subnets.sh stress_reuseport_listen.sh l2_tos_ttl_inherit.sh bind_bhash.sh ip_local_port_range.sh rps_default_mask.sh big_tcp.sh test_vxlan_vnifiltering.sh io_uring_zerocopy_tx.sh test_ingress_egress_chaining.sh sctp_vrf.sh test_vxlan_mdb.sh test_bridge_neigh_suppress.sh test_vxlan_nolocalbypass.sh /usr/bin//
rsync -aL in_netns.sh setup_loopback.sh setup_veth.sh toeplitz_client.sh toeplitz.sh /usr/bin//
rsync -aL settings /usr/bin//
rsync -aL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf_cpu /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_bpf_numa /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_dualstack /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseaddr_conflict /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tls /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tun /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tap /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sk_bind_sendto_listen /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sk_connect_zero_addr /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_incoming_cpu /usr/bin//
rsync -aL /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/socket /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/nettest /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_fanout /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_tpacket /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/msg_zerocopy /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseport_addr_any /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_mmap /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_inq /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/psock_snd /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/txring_overwrite /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso_bench_tx /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/udpgso_bench_rx /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ip_defrag /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_txtime /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipv6_flowlabel /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipv6_flowlabel_mgr /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/so_netns_cookie /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/tcp_fastopen_backup_key /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/fin_ack_lat /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/reuseaddr_ports_exhausted /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/hwtstamp_config /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/rxtimestamp /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/timestamping /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/txtimestamp /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ipsec /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ioam6_parser /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/gro /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/toeplitz /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/cmsg_sender /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/stress_reuseport_listen /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/io_uring_zerocopy_tx /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/bind_bhash /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/sctp_hello /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/csum /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/nat6to4.o /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/ip_local_port_range /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net/bind_wildcard /usr/bin//
rsync -aL config settings /usr/bin//
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
2023-07-23 23:11:57 make -j36 -C net
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
2023-07-23 23:11:57 make quicktest=1 run_tests -C net
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'
TAP version 13
1..1
# timeout set to 3600
# selftests: net: fib_nexthops.sh
# 
# Basic functional tests
# ----------------------
# TEST: List with nothing defined                                     [ OK ]
# TEST: Nexthop get on non-existent id                                [ OK ]
# TEST: Nexthop with no device or gateway                             [ OK ]
# TEST: Nexthop with down device                                      [ OK ]
# TEST: Nexthop with device that is linkdown                          [ OK ]
# TEST: Nexthop with device only                                      [ OK ]
# TEST: Nexthop with duplicate id                                     [ OK ]
# TEST: Blackhole nexthop                                             [ OK ]
# TEST: Blackhole nexthop with other attributes                       [ OK ]
# TEST: Blackhole nexthop with loopback device down                   [ OK ]
# TEST: Create group                                                  [ OK ]
# TEST: Create group with blackhole nexthop                           [ OK ]
# TEST: Create multipath group where 1 path is a blackhole            [ OK ]
# TEST: Multipath group can not have a member replaced by blackhole   [ OK ]
# TEST: Create group with non-existent nexthop                        [ OK ]
# TEST: Create group with same nexthop multiple times                 [ OK ]
# TEST: Replace nexthop with nexthop group                            [ OK ]
# TEST: Replace nexthop group with nexthop                            [ OK ]
# TEST: Nexthop group and device                                      [ OK ]
# TEST: Test proto flush                                              [ OK ]
# TEST: Nexthop group and blackhole                                   [ OK ]
# TEST: Large scale nexthop flushing                                  [ OK ]
# 
# Basic resilient nexthop group functional tests
# ----------------------------------------------
# TEST: Add a nexthop group with default parameters                   [ OK ]
# TEST: Get a nexthop group with default parameters                   [ OK ]
# TEST: Get a nexthop group with non-default parameters               [ OK ]
# TEST: Add a nexthop group with 0 buckets                            [ OK ]
# TEST: Replace nexthop group parameters                              [ OK ]
# TEST: Get a nexthop group after replacing parameters                [ OK ]
# TEST: Replace idle timer                                            [ OK ]
# TEST: Get a nexthop group after replacing idle timer                [ OK ]
# TEST: Replace unbalanced timer                                      [ OK ]
# TEST: Get a nexthop group after replacing unbalanced timer          [ OK ]
# TEST: Replace with no parameters                                    [ OK ]
# TEST: Get a nexthop group after replacing no parameters             [ OK ]
# TEST: Replace nexthop group type - implicit                         [ OK ]
# TEST: Replace nexthop group type - explicit                         [ OK ]
# TEST: Replace number of nexthop buckets                             [ OK ]
# TEST: Get a nexthop group after replacing with invalid parameters   [ OK ]
# TEST: Dump all nexthop buckets                                      [ OK ]
# TEST: Dump all nexthop buckets in a group                           [ OK ]
# TEST: All nexthop buckets report a positive near-zero idle time     [ OK ]
# TEST: Dump all nexthop buckets with a specific nexthop device       [ OK ]
# TEST: Dump all nexthop buckets with a specific nexthop identifier   [ OK ]
# TEST: Dump all nexthop buckets in a non-existent group              [ OK ]
# TEST: Dump all nexthop buckets in a non-resilient group             [ OK ]
# TEST: Dump all nexthop buckets using a non-existent device          [ OK ]
# TEST: Dump all nexthop buckets with invalid 'groups' keyword        [ OK ]
# TEST: Dump all nexthop buckets with invalid 'fdb' keyword           [ OK ]
# TEST: Get a valid nexthop bucket                                    [ OK ]
# TEST: Get a nexthop bucket with valid group, but invalid index      [ OK ]
# TEST: Get a nexthop bucket from a non-resilient group               [ OK ]
# TEST: Get a nexthop bucket from a non-existent group                [ OK ]
# TEST: Initial bucket allocation                                     [ OK ]
# TEST: Bucket allocation after replace                               [ OK ]
# TEST: Buckets migrated after idle timer change                      [ OK ]
# 
# IPv4 functional
# ----------------------
# TEST: Create nexthop with id, gw, dev                               [ OK ]
# TEST: Get nexthop by id                                             [ OK ]
# TEST: Delete nexthop by id                                          [ OK ]
# TEST: Create nexthop - gw only                                      [ OK ]
# TEST: Create nexthop - invalid gw+dev combination                   [ OK ]
# TEST: Create nexthop - gw+dev and onlink                            [ OK ]
# TEST: Nexthops removed on admin down                                [ OK ]
# TEST: Delete nexthop route warning                                  [ OK ]
# TEST: Delete multipath route with only nh id based entry            [ OK ]
# TEST: Delete route when specifying only nexthop device              [ OK ]
# TEST: Delete route when specifying only gateway                     [ OK ]
# TEST: Delete route when not specifying nexthop attributes           [ OK ]
# 
# IPv4 groups functional
# ----------------------
# TEST: Create nexthop group with single nexthop                      [ OK ]
# TEST: Get nexthop group by id                                       [ OK ]
# TEST: Delete nexthop group by id                                    [ OK ]
# TEST: Nexthop group with multiple nexthops                          [ OK ]
# TEST: Nexthop group updated when entry is deleted                   [ OK ]
# TEST: Nexthop group with weighted nexthops                          [ OK ]
# TEST: Weighted nexthop group updated when entry is deleted          [ OK ]
# TEST: Nexthops in groups removed on admin down                      [ OK ]
# TEST: Multiple groups with same nexthop                             [ OK ]
# TEST: Nexthops in group removed on admin down - mixed group         [ OK ]
# TEST: Nexthop group can not have a group as an entry                [ OK ]
# TEST: Nexthop group with a blackhole entry                          [ OK ]
# TEST: Nexthop group can not have a blackhole and another nexthop    [ OK ]
# 
# IPv4 resilient groups functional
# --------------------------------
# TEST: Nexthop group updated when entry is deleted                   [ OK ]
# TEST: Nexthop buckets updated when entry is deleted                 [ OK ]
# TEST: Nexthop group updated after replace                           [ OK ]
# TEST: Nexthop buckets updated after replace                         [ OK ]
# TEST: Nexthop group updated when entry is deleted - nECMP           [ OK ]
# TEST: Nexthop buckets updated when entry is deleted - nECMP         [ OK ]
# TEST: Nexthop group updated after replace - nECMP                   [ OK ]
# TEST: Nexthop buckets updated after replace - nECMP                 [ OK ]
# TEST: IPv6 nexthop with IPv4 route                                  [ OK ]
# TEST: IPv6 nexthop with IPv4 route                                  [ OK ]
# TEST: IPv4 route with IPv6 gateway                                  [ OK ]
# TEST: IPv4 route with invalid IPv6 gateway                          [ OK ]
# 
# IPv4 functional runtime
# -----------------------
# TEST: Route add                                                     [ OK ]
# TEST: Route delete                                                  [ OK ]
# TEST: Route add - scope conflict with nexthop                       [ OK ]
# TEST: Nexthop replace with invalid scope for existing route         [ OK ]
# TEST: IPv4 route with invalid metric                                [ OK ]
# TEST: Basic ping                                                    [ OK ]
# TEST: Ping - multipath                                              [ OK ]
# TEST: Ping - multiple default routes, nh first                      [ OK ]
# TEST: Ping - multiple default routes, nh second                     [ OK ]
# TEST: Ping - blackhole                                              [ OK ]
# TEST: Ping - blackhole replaced with gateway                        [ OK ]
# TEST: Ping - gateway replaced by blackhole                          [ OK ]
# TEST: Ping - group with blackhole                                   [ OK ]
# TEST: Ping - group blackhole replaced with gateways                 [ OK ]
# TEST: IPv4 route with device only nexthop                           [ OK ]
# TEST: IPv4 multipath route with nexthop mix - dev only + gw         [ OK ]
# TEST: IPv6 nexthop with IPv4 route                                  [ OK ]
# TEST: IPv4 route with mixed v4-v6 multipath route                   [ OK ]
# TEST: IPv6 nexthop with IPv4 route                                  [ OK ]
# TEST: IPv4 route with IPv6 gateway                                  [ OK ]
# TEST: IPv4 default route with IPv6 gateway                          [ OK ]
# TEST: IPv4 route with MPLS encap                                    [ OK ]
# TEST: IPv4 route with MPLS encap - check                            [ OK ]
# TEST: IPv4 route with MPLS encap and v6 gateway                     [ OK ]
# TEST: IPv4 route with MPLS encap, v6 gw - check                     [ OK ]
# 
# IPv4 large groups (x32)
# ---------------------
# TEST: Dump large (x32) ecmp groups                                  [ OK ]
# 
# IPv4 large resilient group (128k buckets)
# -----------------------------------------
# TEST: Dump large (x131072) nexthop buckets                          [ OK ]
# 
# IPv4 nexthop api compat mode
# ----------------------------
# TEST: IPv4 default nexthop compat mode check                        [ OK ]
# TEST: IPv4 compat mode on - route add notification                  [ OK ]
# TEST: IPv4 compat mode on - route dump                              [ OK ]
# TEST: IPv4 compat mode on - nexthop change                          [ OK ]
# TEST: IPv4 set compat mode - 0                                      [ OK ]
# TEST: IPv4 compat mode off - route add notification                 [ OK ]
# TEST: IPv4 compat mode off - route dump                             [ OK ]
# TEST: IPv4 compat mode off - nexthop change                         [ OK ]
# TEST: IPv4 compat mode off - nexthop delete                         [FAIL]
# TEST: IPv4 set compat mode - 1                                      [ OK ]
# 
# IPv4 fdb groups functional
# --------------------------
# TEST: Fdb Nexthop group with multiple nexthops                      [ OK ]
# TEST: Get Fdb nexthop group by id                                   [ OK ]
# TEST: Fdb Nexthop group with non-fdb nexthops                       [ OK ]
# TEST: Non-Fdb Nexthop group with fdb nexthops                       [ OK ]
# TEST: Fdb Nexthop with blackhole                                    [ OK ]
# TEST: Fdb Nexthop with oif                                          [ OK ]
# TEST: Fdb Nexthop with onlink                                       [ OK ]
# TEST: Fdb Nexthop with encap                                        [ OK ]
# TEST: Fdb mac add with nexthop group                                [ OK ]
# TEST: Fdb mac add with nexthop                                      [ OK ]
# TEST: Route add with fdb nexthop                                    [ OK ]
# TEST: Route add with fdb nexthop group                              [ OK ]
# TEST: Fdb entry after deleting a single nexthop                     [ OK ]
# TEST: Fdb nexthop delete                                            [ OK ]
# TEST: Fdb entry after deleting a nexthop group                      [ OK ]
# 
# IPv4 runtime torture
# --------------------
# TEST: IPv4 torture test                                             [ OK ]
# 
# IPv4 runtime resilient nexthop group torture
# --------------------------------------------
# TEST: IPv4 resilient nexthop group torture test                     [ OK ]
# 
# IPv6
# ----------------------
# TEST: Create nexthop with id, gw, dev                               [ OK ]
# TEST: Get nexthop by id                                             [ OK ]
# TEST: Delete nexthop by id                                          [ OK ]
# TEST: Create nexthop - gw only                                      [ OK ]
# TEST: Create nexthop - invalid gw+dev combination                   [ OK ]
# TEST: Create nexthop - gw+dev and onlink                            [ OK ]
# TEST: Nexthops removed on admin down                                [ OK ]
# 
# IPv6 groups functional
# ----------------------
# TEST: Create nexthop group with single nexthop                      [ OK ]
# TEST: Get nexthop group by id                                       [ OK ]
# TEST: Delete nexthop group by id                                    [ OK ]
# TEST: Nexthop group with multiple nexthops                          [ OK ]
# TEST: Nexthop group updated when entry is deleted                   [ OK ]
# TEST: Nexthop group with weighted nexthops                          [ OK ]
# TEST: Weighted nexthop group updated when entry is deleted          [ OK ]
# TEST: Nexthops in groups removed on admin down                      [ OK ]
# TEST: Multiple groups with same nexthop                             [ OK ]
# TEST: Nexthops in group removed on admin down - mixed group         [ OK ]
# TEST: Nexthop group can not have a group as an entry                [ OK ]
# TEST: Nexthop group with a blackhole entry                          [ OK ]
# TEST: Nexthop group can not have a blackhole and another nexthop    [ OK ]
# TEST: Nexthop group replace refcounts                               [ OK ]
# 
# IPv6 resilient groups functional
# --------------------------------
# TEST: Nexthop group updated when entry is deleted                   [ OK ]
# TEST: Nexthop buckets updated when entry is deleted                 [ OK ]
# TEST: Nexthop group updated after replace                           [ OK ]
# TEST: Nexthop buckets updated after replace                         [ OK ]
# TEST: Nexthop group updated when entry is deleted - nECMP           [ OK ]
# TEST: Nexthop buckets updated when entry is deleted - nECMP         [ OK ]
# TEST: Nexthop group updated after replace - nECMP                   [ OK ]
# TEST: Nexthop buckets updated after replace - nECMP                 [ OK ]
# 
# IPv6 functional runtime
# -----------------------
# TEST: Route add                                                     [ OK ]
# TEST: Route delete                                                  [ OK ]
# TEST: Ping with nexthop                                             [ OK ]
# TEST: Ping - multipath                                              [ OK ]
# TEST: Ping - blackhole                                              [ OK ]
# TEST: Ping - blackhole replaced with gateway                        [ OK ]
# TEST: Ping - gateway replaced by blackhole                          [ OK ]
# TEST: Ping - group with blackhole                                   [ OK ]
# TEST: Ping - group blackhole replaced with gateways                 [ OK ]
# TEST: IPv6 route with device only nexthop                           [ OK ]
# TEST: IPv6 multipath route with nexthop mix - dev only + gw         [ OK ]
# TEST: IPv6 route can not have a v4 gateway                          [ OK ]
# TEST: Nexthop replace - v6 route, v4 nexthop                        [ OK ]
# TEST: Nexthop replace of group entry - v6 route, v4 nexthop         [ OK ]
# TEST: IPv6 route can not have a group with v4 and v6 gateways       [ OK ]
# TEST: IPv6 route can not have a group with v4 and v6 gateways       [ OK ]
# TEST: IPv6 route using a group after removing v4 gateways           [ OK ]
# TEST: IPv6 route can not have a group with v4 and v6 gateways       [ OK ]
# TEST: IPv6 route can not have a group with v4 and v6 gateways       [ OK ]
# TEST: IPv6 route using a group after replacing v4 gateways          [ OK ]
# TEST: IPv6 route can not use src routing with external nexthop      [ OK ]
# TEST: IPv6 route with invalid metric                                [ OK ]
# TEST: Nexthop with default route and rpfilter                       [ OK ]
# TEST: Nexthop with multipath default route and rpfilter             [ OK ]
# 
# IPv6 large groups (x32)
# ---------------------
# TEST: Dump large (x32) ecmp groups                                  [ OK ]
# 
# IPv6 large resilient group (128k buckets)
# -----------------------------------------
# TEST: Dump large (x131072) nexthop buckets                          [ OK ]
# 
# IPv6 nexthop api compat mode test
# --------------------------------
# TEST: IPv6 default nexthop compat mode check                        [ OK ]
# TEST: IPv6 compat mode on - route add notification                  [ OK ]
# TEST: IPv6 compat mode on - route dump                              [ OK ]
# TEST: IPv6 compat mode on - nexthop change                          [ OK ]
# TEST: IPv6 set compat mode - 0                                      [ OK ]
# TEST: IPv6 compat mode off - route add notification                 [ OK ]
# TEST: IPv6 compat mode off - route dump                             [ OK ]
# TEST: IPv6 compat mode off - nexthop change                         [ OK ]
# TEST: IPv6 compat mode off - nexthop delete                         [ OK ]
# TEST: IPv6 set compat mode - 1                                      [ OK ]
# 
# IPv6 fdb groups functional
# --------------------------
# TEST: Fdb Nexthop group with multiple nexthops                      [ OK ]
# TEST: Get Fdb nexthop group by id                                   [ OK ]
# TEST: Fdb Nexthop group with non-fdb nexthops                       [ OK ]
# TEST: Non-Fdb Nexthop group with fdb nexthops                       [ OK ]
# TEST: Fdb Nexthop with blackhole                                    [ OK ]
# TEST: Fdb Nexthop with oif                                          [ OK ]
# TEST: Fdb Nexthop with onlink                                       [ OK ]
# TEST: Fdb Nexthop with encap                                        [ OK ]
# TEST: Fdb mac add with nexthop group                                [ OK ]
# TEST: Fdb mac add with nexthop                                      [ OK ]
# TEST: Route add with fdb nexthop                                    [ OK ]
# TEST: Route add with fdb nexthop group                              [ OK ]
# TEST: Fdb entry after deleting a single nexthop                     [ OK ]
# TEST: Fdb nexthop delete                                            [ OK ]
# TEST: Fdb entry after deleting a nexthop group                      [ OK ]
# 
# IPv6 runtime torture
# --------------------
# TEST: IPv6 torture test                                             [ OK ]
# 
# IPv6 runtime resilient nexthop group torture
# --------------------------------------------
# TEST: IPv6 resilient nexthop group torture test                     [ OK ]
# 
# Tests passed: 227
# Tests failed:   1
not ok 1 selftests: net: fib_nexthops.sh # exit=1
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/tools/testing/selftests/net'

[-- Attachment #6: job.yaml --]
[-- Type: text/plain, Size: 5852 bytes --]

---

#! jobs/kernel-selftests-net-slow.yaml
suite: kernel-selftests
testcase: kernel-selftests
category: functional
kernel-selftests:
  group: net
  test: fib_nexthops.sh
timeout: 1h
job_origin: kernel-selftests-net-slow.yaml

#! queue options
queue_cmdline_keys:
- branch
- commit
queue: bisect
testbox: lkp-csl-d01
tbox_group: lkp-csl-d01
submit_id: 64bcd487c803573d7ea5ff16
job_file: "/lkp/jobs/scheduled/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230723-15742-15h99jh-0.yaml"
id: 026c655c47a85fbd5aab6b235c9d347f3508420a
queuer_version: "/zday/lkp"

#! /db/releases/20230721222328/lkp-src/hosts/lkp-csl-d01
model: Cascade Lake
nr_node: 1
nr_cpu: 36
memory: 32G
nr_ssd_partitions: 1
ssd_partitions: "/dev/disk/by-id/nvme-INTEL_SSDPEKNW010T8_PHNH119301NW1P0B-part3"
rootfs_partition: "/dev/disk/by-id/nvme-INTEL_SSDPEKNW010T8_PHNH119301NW1P0B-part4"
brand: Intel(R) Core(TM) i9-10980XE CPU @ 3.00GHz

#! /db/releases/20230721222328/lkp-src/include/category/functional
kmsg:
heartbeat:
meminfo:
kmemleak:

#! /db/releases/20230721222328/lkp-src/include/category/ALL
sanity-check:

#! /db/releases/20230721222328/lkp-src/include/queue/cyclic
commit: 4c189e1954949695724236c7c1f182a39e67b262

#! /db/releases/20230721222328/lkp-src/include/testbox/lkp-csl-d01
ucode: '0x5003303'

#! /db/releases/20230721222328/lkp-src/include/kernel-selftests
need_kernel_version:
need_kconfig:
- PACKET: y
- USER_NS: y
- BPF_SYSCALL: y
- TEST_BPF: m
- NUMA: y
- NET_VRF: y
- NET_L3_MASTER_DEV: y
- IPV6: y
- IPV6_MULTIPLE_TABLES: y
- VETH
- NET_IPVTI: m
- IPV6_VTI: m
- DUMMY
- BRIDGE
- VLAN_8021Q: y
- VXLAN
- IFB
- NETFILTER: y
- NETFILTER_ADVANCED: y
- NF_CONNTRACK: m
- NF_NAT: m
- IP6_NF_IPTABLES: m
- IP_NF_IPTABLES: m
- IP6_NF_NAT: m
- IP_NF_NAT: m
- NF_TABLES: m
- NF_TABLES_IPV6: y
- NF_TABLES_IPV4: y
- NFT_CHAIN_NAT_IPV6: m
- NFT_TPROXY: m
- NFT_COUNTER: m
- NFT_CHAIN_NAT_IPV4: m
- NET_SCH_FQ: m
- NET_SCH_ETF: m
- NET_SCH_NETEM: y
- TEST_BLACKHOLE_DEV: m
- KALLSYMS: y
- BAREUDP: m
- MPLS_ROUTING: m
- MPLS_IPTUNNEL: m
- NET_SCH_INGRESS: y
- NET_CLS_FLOWER: m
- NET_ACT_TUNNEL_KEY: m
- NET_ACT_MIRRED: m
- CRYPTO_SM4: y
- CRYPTO_SM4_GENERIC: y
- NET_DROP_MONITOR
- TRACEPOINTS: y
- AMT: m
- IPV6_IOAM6_LWTUNNEL: y
rootfs: debian-12-x86_64-20220629.cgz
initrds:
- linux_headers
- linux_selftests
kconfig: x86_64-rhel-8.3-bpf
enqueue_time: 2023-07-23 15:19:35.514934904 +08:00
_id: 64bcd487c803573d7ea5ff16
_rt: "/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262"
compiler: gcc-12
head_commit: cd875ef432fda9d248c23f18d539b75794046b6f
base_commit: fdf0eaf11452d72945af31804e2a1048ee1b574c
branch: linux-devel/devel-hourly-20230721-143654

#! schedule options
user: lkp
LKP_SERVER: internal-lkp-server
scheduler_version: "/lkp/lkp/src"
arch: x86_64
max_uptime: 3600
initrd: "/osimage/debian/debian-12-x86_64-20220629.cgz"
bootloader_append:
- root=/dev/ram0
- RESULT_ROOT=/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/0
- BOOT_IMAGE=/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/vmlinuz-6.5.0-rc1-00339-g4c189e195494
- branch=linux-devel/devel-hourly-20230721-143654
- job=/lkp/jobs/scheduled/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230723-15742-15h99jh-0.yaml
- user=lkp
- ARCH=x86_64
- kconfig=x86_64-rhel-8.3-bpf
- commit=4c189e1954949695724236c7c1f182a39e67b262
- nmi_watchdog=0
- max_uptime=3600
- LKP_SERVER=internal-lkp-server
- nokaslr
- selinux=0
- debug
- apic=debug
- sysrq_always_enabled
- rcupdate.rcu_cpu_stall_timeout=100
- net.ifnames=0
- printk.devkmsg=on
- panic=-1
- softlockup_panic=1
- nmi_watchdog=panic
- oops=panic
- load_ramdisk=2
- prompt_ramdisk=0
- drbd.minor_count=8
- systemd.log_level=err
- ignore_loglevel
- console=tty0
- earlyprintk=ttyS0,115200
- console=ttyS0,115200
- vga=normal
- rw
modules_initrd: "/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/modules.cgz"
linux_headers_initrd: "/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/linux-headers.cgz"
linux_selftests_initrd: "/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/linux-selftests.cgz"
bm_initrd: "/osimage/deps/debian-12-x86_64-20220629.cgz/lkp_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/run-ipconfig_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/rsync-rootfs_20221125.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/kernel-selftests_20230329.cgz,/osimage/pkg/debian-12-x86_64-20220629.cgz/kernel-selftests-x86_64-60acb023-1_20230329.cgz,/osimage/deps/debian-12-x86_64-20220629.cgz/hw_20230326.cgz"
ucode_initrd: "/osimage/ucode/intel-ucode-20230406.cgz"
lkp_initrd: "/osimage/user/lkp/lkp-x86_64.cgz"
site: inn

#! /db/releases/20230721222328/lkp-src/include/site/inn
LKP_CGI_PORT: 80
LKP_CIFS_PORT: 139
oom-killer:
watchdog:
job_initrd: "/lkp/jobs/scheduled/lkp-csl-d01/kernel-selftests-net-fib_nexthops.sh-debian-12-x86_64-20220629.cgz-4c189e195494-20230723-15742-15h99jh-0.cgz"
last_kernel: 6.5.0-rc1-00016-gcf390018f67c
acpi_rsdp: '0x000f05b0'

#! user overrides
kernel: "/pkg/linux/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/vmlinuz-6.5.0-rc1-00339-g4c189e195494"
result_root: "/result/kernel-selftests/net-fib_nexthops.sh/lkp-csl-d01/debian-12-x86_64-20220629.cgz/x86_64-rhel-8.3-bpf/gcc-12/4c189e1954949695724236c7c1f182a39e67b262/0"
dequeue_time: 2023-07-23 15:41:47.095345189 +08:00
job_state: finished
loadavg: 4.11 4.74 4.04 2/439 616345
start_time: '1690098242'
end_time: '1690099501'
version: "/lkp/lkp/.src-20230723-000404:21afd11b9aae:4b685812345f"

[-- Attachment #7: reproduce --]
[-- Type: text/plain, Size: 517 bytes --]

mount --bind /lib/modules/6.5.0-rc1-00339-g4c189e195494/kernel/lib /usr/src/perf_selftests-x86_64-rhel-8.3-bpf-4c189e1954949695724236c7c1f182a39e67b262/lib
ln -sf /usr/sbin/iptables-nft /usr/bin/iptables
ln -sf /usr/sbin/ip6tables-nft /usr/bin/ip6tables
sed -i s/default_timeout=45/default_timeout=300/ kselftest/runner.sh
make -j36 -C bpf
make -j36 -C ../../../tools/testing/selftests/net
make install INSTALL_PATH=/usr/bin/ -C ../../../tools/testing/selftests/net
make -j36 -C net
make quicktest=1 run_tests -C net

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-25  8:20                     ` Hangbin Liu
@ 2023-07-25 16:36                       ` Stephen Hemminger
  2023-07-28 13:01                         ` Nicolas Dichtel
  0 siblings, 1 reply; 45+ messages in thread
From: Stephen Hemminger @ 2023-07-25 16:36 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Ido Schimmel, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Tue, 25 Jul 2023 16:20:59 +0800
Hangbin Liu <liuhangbin@gmail.com> wrote:

> On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
> > On Mon, 24 Jul 2023 16:56:37 +0800
> > Hangbin Liu <liuhangbin@gmail.com> wrote:
> >   
> > > The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
> > > the cache becomes inconsistent. The IPv4 will not send src route delete info
> > > if it's bond to other device. While IPv6 only modify the src route instead of
> > > delete it, and also no notify. So NetworkManager developers complained and
> > > hope to have a consistent and clear notification about route modify/delete.  
> > 
> > Read FRR they get it right. The routing daemons have to track kernel,
> > and the semantics have been worked out for years.  
> 
> Yes, normally the routing daemon need to track kernel. On the other hand,
> the kernel also need to make a clear feedback. The userspace developers may
> not know the kernel code very well. The unclear/inconsistent notification
> would make them confused.

Right, that should be addressed by clearer documentation of the semantics
and the rational.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib)
  2023-07-24 15:48                   ` Stephen Hemminger
  2023-07-25  8:20                     ` Hangbin Liu
@ 2023-07-26 10:17                     ` Hangbin Liu
  2023-07-26 15:57                       ` David Ahern
  2023-07-27 14:45                       ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Ido Schimmel
  1 sibling, 2 replies; 45+ messages in thread
From: Hangbin Liu @ 2023-07-26 10:17 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: Ido Schimmel, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

Hi Stephen, Ido, David,
On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
> On Mon, 24 Jul 2023 16:56:37 +0800
> Hangbin Liu <liuhangbin@gmail.com> wrote:
> 
> > The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
> > the cache becomes inconsistent. The IPv4 will not send src route delete info
> > if it's bond to other device. While IPv6 only modify the src route instead of
> > delete it, and also no notify. So NetworkManager developers complained and
> > hope to have a consistent and clear notification about route modify/delete.
> 
> Read FRR they get it right. The routing daemons have to track kernel,
> and the semantics have been worked out for years.

Since we are talking about whether we should fix the issues or doc them. I
have some other route issues reported by NetworkManager developers. And want
discuss with you.

For IPv4, we add new route instead append the nexthop to same dest(or do I
miss something?). Since the route are not merged, the nexthop weight is not
shown, which make them look like the same for users. For IPv4, the scope is
also not shown, which look like the same for users.

While IPv6 will append another nexthop to the route if dest is same. But there
are 2 issues here:
1. the *type* and *protocol* field are actally ignored
2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
   use the config info from user space. When means `ip monitor` show the
   incorrect type and protocol

So my questions are, should we show weight/scope for IPv4? How to deal the
type/proto info missing for IPv6? How to deal with the difference of merging
policy for IPv4/IPv6?

Here is the reproducer:

+ ip link add dummy0 up type dummy
+ ip link add dummy1 up type dummy
+ ip link add dummy2 up type dummy
+ ip addr add 172.16.104.1/24 dev dummy1
+ ip addr add 172.16.104.2/24 dev dummy2
+ ip route add 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy1
+ ip route append 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy2
+ ip route add 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 1
+ ip route append 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 2
+ ip route show table 100
172.16.105.0/24 via 172.16.104.100 dev dummy1
172.16.105.0/24 via 172.16.104.100 dev dummy2
172.16.106.0/24 via 172.16.104.100 dev dummy1
172.16.106.0/24 via 172.16.104.100 dev dummy1

+ ip route add local default dev dummy1 table 200
+ ip route add 172.16.107.0/24 table 200 nexthop via 172.16.104.100 dev dummy1
+ ip route prepend default dev dummy1 table 200
+ ip route append 172.16.107.0/24 table 200 nexthop via 172.16.104.100 dev dummy1
+ ip route show table 200
default dev dummy1 scope link
local default dev dummy1 scope host
172.16.107.0/24 via 172.16.104.100 dev dummy1
172.16.107.0/24 via 172.16.104.100 dev dummy1

+ ip addr add 2001:db8:101::1/64 dev dummy1
+ ip addr add 2001:db8:101::2/64 dev dummy2
+ ip route add 2001:db8:102::/64 via 2001:db8:101::10 dev dummy1 table 100
+ ip route prepend 2001:db8:102::/64 via 2001:db8:101::10 dev dummy2 table 100
+ ip route add local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100
+ ip route prepend unicast 2001:db8:103::/64 via 2001:db8:101::10 dev dummy2 table 100
+ ip monitor route &
+ sleep 1
+ ip route add 2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 proto kernel table 100
2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 table 100 proto kernel metric 1024 pref medium
+ ip route prepend 2001:db8:104::/64 via 2001:db8:101::10 dev dummy2 proto bgp table 100
2001:db8:104::/64 table 100 proto bgp metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
+ ip -6 route show table 100
2001:db8:102::/64 metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
local 2001:db8:103::/64 metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
2001:db8:104::/64 proto kernel metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
+ kill $!

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib)
  2023-07-26 10:17                     ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Hangbin Liu
@ 2023-07-26 15:57                       ` David Ahern
  2023-07-27  4:19                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
  2023-07-27 14:45                       ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Ido Schimmel
  1 sibling, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-07-26 15:57 UTC (permalink / raw)
  To: Hangbin Liu, Stephen Hemminger
  Cc: Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On 7/26/23 4:17 AM, Hangbin Liu wrote:
> Hi Stephen, Ido, David,
> On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
>> On Mon, 24 Jul 2023 16:56:37 +0800
>> Hangbin Liu <liuhangbin@gmail.com> wrote:
>>
>>> The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
>>> the cache becomes inconsistent. The IPv4 will not send src route delete info
>>> if it's bond to other device. While IPv6 only modify the src route instead of
>>> delete it, and also no notify. So NetworkManager developers complained and
>>> hope to have a consistent and clear notification about route modify/delete.
>>
>> Read FRR they get it right. The routing daemons have to track kernel,
>> and the semantics have been worked out for years.
> 
> Since we are talking about whether we should fix the issues or doc them. I
> have some other route issues reported by NetworkManager developers. And want
> discuss with you.
> 
> For IPv4, we add new route instead append the nexthop to same dest(or do I
> miss something?). Since the route are not merged, the nexthop weight is not
> shown, which make them look like the same for users. For IPv4, the scope is
> also not shown, which look like the same for users.
> 
> While IPv6 will append another nexthop to the route if dest is same. But there
> are 2 issues here:
> 1. the *type* and *protocol* field are actally ignored
> 2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
>    use the config info from user space. When means `ip monitor` show the
>    incorrect type and protocol
> 
> So my questions are, should we show weight/scope for IPv4? How to deal the
> type/proto info missing for IPv6? How to deal with the difference of merging
> policy for IPv4/IPv6?
> 
> Here is the reproducer:
> 
> + ip link add dummy0 up type dummy
> + ip link add dummy1 up type dummy
> + ip link add dummy2 up type dummy
> + ip addr add 172.16.104.1/24 dev dummy1
> + ip addr add 172.16.104.2/24 dev dummy2

> + ip route add 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy1
> + ip route append 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy2

> + ip route add 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 1
> + ip route append 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 2

Weight only has meaning with a multipath route. In both of these caess
these are 2 separate entries in the FIB with the second one only hit
under certain conditions.


> + ip route show table 100
> 172.16.105.0/24 via 172.16.104.100 dev dummy1
> 172.16.105.0/24 via 172.16.104.100 dev dummy2
> 172.16.106.0/24 via 172.16.104.100 dev dummy1
> 172.16.106.0/24 via 172.16.104.100 dev dummy1
> 
> + ip route add local default dev dummy1 table 200
> + ip route add 172.16.107.0/24 table 200 nexthop via 172.16.104.100 dev dummy1
> + ip route prepend default dev dummy1 table 200
> + ip route append 172.16.107.0/24 table 200 nexthop via 172.16.104.100 dev dummy1

similarly here with prepend and append.

For all of these, look at fib_tests.sh, ipv4_rt_add(). It runs through
combination of flags and in some cases only documents existing behavior.


> + ip route show table 200
> default dev dummy1 scope link
> local default dev dummy1 scope host
> 172.16.107.0/24 via 172.16.104.100 dev dummy1
> 172.16.107.0/24 via 172.16.104.100 dev dummy1
> 
> + ip addr add 2001:db8:101::1/64 dev dummy1
> + ip addr add 2001:db8:101::2/64 dev dummy2
> + ip route add 2001:db8:102::/64 via 2001:db8:101::10 dev dummy1 table 100
> + ip route prepend 2001:db8:102::/64 via 2001:db8:101::10 dev dummy2 table 100
> + ip route add local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100
> + ip route prepend unicast 2001:db8:103::/64 via 2001:db8:101::10 dev dummy2 table 1
Unfortunately the original IPv6 multipath implementation did not follow
the same semantics as IPv4. Each leg in a MP route is a separate entry
and the append and prepend work differently for v6. :-(

This difference is one of the many goals of the separate nexthop objects
-- aligning ipv4 and ipv6 behavior which can only be done with a new
API. There were many attempts to make the legacy route infrastructure
more closely aligned between v4 and v6 and inevitably each was reverted
because it broke some existing user.


> + ip monitor route &
> + sleep 1
> + ip route add 2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 proto kernel table 100
> 2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 table 100 proto kernel metric 1024 pref medium
> + ip route prepend 2001:db8:104::/64 via 2001:db8:101::10 dev dummy2 proto bgp table 100
> 2001:db8:104::/64 table 100 proto bgp metric 1024 pref medium
>         nexthop via 2001:db8:101::10 dev dummy2 weight 1
>         nexthop via 2001:db8:101::10 dev dummy1 weight 1
> + ip -6 route show table 100
> 2001:db8:102::/64 metric 1024 pref medium
>         nexthop via 2001:db8:101::10 dev dummy1 weight 1
>         nexthop via 2001:db8:101::10 dev dummy2 weight 1
> local 2001:db8:103::/64 metric 1024 pref medium
>         nexthop via 2001:db8:101::10 dev dummy1 weight 1
>         nexthop via 2001:db8:101::10 dev dummy2 weight 1
> 2001:db8:104::/64 proto kernel metric 1024 pref medium
>         nexthop via 2001:db8:101::10 dev dummy1 weight 1
>         nexthop via 2001:db8:101::10 dev dummy2 weight 1
> + kill $!
> 
> Thanks
> Hangbin


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-07-26 15:57                       ` David Ahern
@ 2023-07-27  4:19                         ` Hangbin Liu
  2023-07-27 15:35                           ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-07-27  4:19 UTC (permalink / raw)
  To: David Ahern
  Cc: Stephen Hemminger, Ido Schimmel, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Wed, Jul 26, 2023 at 09:57:59AM -0600, David Ahern wrote:
> > So my questions are, should we show weight/scope for IPv4? How to deal the
> > type/proto info missing for IPv6? How to deal with the difference of merging
> > policy for IPv4/IPv6?
> > + ip route add 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy1
> > + ip route append 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy2
> 
> > + ip route add 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 1
> > + ip route append 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 2
> 
> Weight only has meaning with a multipath route. In both of these caess
> these are 2 separate entries in the FIB

Yes, we know these are 2 separate entries. The NM developers know these
are 2 separate entries. But the uses don't know, and the route daemon don't
know. If a user add these 2 entires. And kernel show them as the same. The
route daemon will store them as a same entries. But if the user delete the
entry. We actually delete one and left one in the kernel. This will make
the route daemon and user confused.

So my question is, should we export the weight/scope? Or stop user add
the second entry? Or just leave it there and ask route daemon/uses try
the new nexthop api.

> with the second one only hit under certain conditions.

Just curious, with what kind of certain conditions we will hit the second one?

> 
> > + ip route show table 200
> > default dev dummy1 scope link
> > local default dev dummy1 scope host
> > 172.16.107.0/24 via 172.16.104.100 dev dummy1
> > 172.16.107.0/24 via 172.16.104.100 dev dummy1
> > 
> > + ip addr add 2001:db8:101::1/64 dev dummy1
> > + ip addr add 2001:db8:101::2/64 dev dummy2
> > + ip route add 2001:db8:102::/64 via 2001:db8:101::10 dev dummy1 table 100
> > + ip route prepend 2001:db8:102::/64 via 2001:db8:101::10 dev dummy2 table 100
> > + ip route add local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100
> > + ip route prepend unicast 2001:db8:103::/64 via 2001:db8:101::10 dev dummy2 table 1
> Unfortunately the original IPv6 multipath implementation did not follow
> the same semantics as IPv4. Each leg in a MP route is a separate entry
> and the append and prepend work differently for v6. :-(
> 
> This difference is one of the many goals of the separate nexthop objects
> -- aligning ipv4 and ipv6 behavior which can only be done with a new
> API. There were many attempts to make the legacy route infrastructure
> more closely aligned between v4 and v6 and inevitably each was reverted
> because it broke some existing user.

Yes, I understand the difficult and risk to aligned the v4/v6 behavior.
On the other hand, changing to new nexthop api also a large work for the
routing daemons. Here is a quote from NM developers replied to me.

"If the issues (this and others) of the netlink API for route objects can be
fixed, then there seems less reason to change NetworkManager to nexthop
objects. If it cannot (won't) be fixed, then would be another argument for using
nexthop objects..."

I will check if all the issues could be fixed with new nexthop api.

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib)
  2023-07-26 10:17                     ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Hangbin Liu
  2023-07-26 15:57                       ` David Ahern
@ 2023-07-27 14:45                       ` Ido Schimmel
  2023-08-28  7:53                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
  1 sibling, 1 reply; 45+ messages in thread
From: Ido Schimmel @ 2023-07-27 14:45 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Stephen Hemminger, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Wed, Jul 26, 2023 at 06:17:05PM +0800, Hangbin Liu wrote:
> Hi Stephen, Ido, David,
> On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
> > On Mon, 24 Jul 2023 16:56:37 +0800
> > Hangbin Liu <liuhangbin@gmail.com> wrote:
> > 
> > > The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
> > > the cache becomes inconsistent. The IPv4 will not send src route delete info
> > > if it's bond to other device. While IPv6 only modify the src route instead of
> > > delete it, and also no notify. So NetworkManager developers complained and
> > > hope to have a consistent and clear notification about route modify/delete.
> > 
> > Read FRR they get it right. The routing daemons have to track kernel,
> > and the semantics have been worked out for years.
> 
> Since we are talking about whether we should fix the issues or doc them. I
> have some other route issues reported by NetworkManager developers. And want
> discuss with you.
> 
> For IPv4, we add new route instead append the nexthop to same dest(or do I
> miss something?).

The append / prepend trick to create a multipath route is an IPv6 hack.
The correct way to install a multipath route is to add it in one go like
in the IPv4 implementation (which predates the IPv6 implementation) or
use the nexthop API.

> Since the route are not merged, the nexthop weight is not shown, which
> make them look like the same for users. For IPv4, the scope is also
> not shown, which look like the same for users.

The routes are the same, but separate. They do not form a multipath
route. Weight is meaningless for a non-multipath route.

> 
> While IPv6 will append another nexthop to the route if dest is same.

Yes, that's a hack.

> But there are 2 issues here:
> 1. the *type* and *protocol* field are actally ignored
> 2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
>    use the config info from user space. When means `ip monitor` show the
>    incorrect type and protocol
> 
> So my questions are, should we show weight/scope for IPv4? How to deal the
> type/proto info missing for IPv6? How to deal with the difference of merging
> policy for IPv4/IPv6?

In my opinion, if you want consistent behavior between IPv4 and IPv6 for
multipath routes, then I suggest using the nexthop API. It was merged in
5.3 (IIRC) and FRR started using it by default a few years ago. Other
than a few bugs that were fixed, I don't remember many complaints. Also,
any nexthop-related features will only be implemented in the nexthop
API, not in the legacy API. Resilient nexthop groups is one example.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-07-27  4:19                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
@ 2023-07-27 15:35                           ` David Ahern
  0 siblings, 0 replies; 45+ messages in thread
From: David Ahern @ 2023-07-27 15:35 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Stephen Hemminger, Ido Schimmel, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On 7/26/23 10:19 PM, Hangbin Liu wrote:
> On Wed, Jul 26, 2023 at 09:57:59AM -0600, David Ahern wrote:
>>> So my questions are, should we show weight/scope for IPv4? How to deal the
>>> type/proto info missing for IPv6? How to deal with the difference of merging
>>> policy for IPv4/IPv6?
>>> + ip route add 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy1
>>> + ip route append 172.16.105.0/24 table 100 via 172.16.104.100 dev dummy2
>>
>>> + ip route add 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 1
>>> + ip route append 172.16.106.0/24 table 100 nexthop via 172.16.104.100 dev dummy1 weight 2
>>
>> Weight only has meaning with a multipath route. In both of these caess
>> these are 2 separate entries in the FIB
> 
> Yes, we know these are 2 separate entries. The NM developers know these
> are 2 separate entries. But the uses don't know, and the route daemon don't
> know. If a user add these 2 entires. And kernel show them as the same. The
> route daemon will store them as a same entries. But if the user delete the
> entry. We actually delete one and left one in the kernel. This will make
> the route daemon and user confused.
> 
> So my question is, should we export the weight/scope? Or stop user add
> the second entry? Or just leave it there and ask route daemon/uses try
> the new nexthop api.
> 
>> with the second one only hit under certain conditions.
> 
> Just curious, with what kind of certain conditions we will hit the second one?

Look at the checks in net/ipv4/fib_trie.c starting at line 1573 (comment
before is "/* Step 3: Process the leaf, if that fails fall back to
backtracing */")

> 
>>
>>> + ip route show table 200
>>> default dev dummy1 scope link
>>> local default dev dummy1 scope host
>>> 172.16.107.0/24 via 172.16.104.100 dev dummy1
>>> 172.16.107.0/24 via 172.16.104.100 dev dummy1
>>>
>>> + ip addr add 2001:db8:101::1/64 dev dummy1
>>> + ip addr add 2001:db8:101::2/64 dev dummy2
>>> + ip route add 2001:db8:102::/64 via 2001:db8:101::10 dev dummy1 table 100
>>> + ip route prepend 2001:db8:102::/64 via 2001:db8:101::10 dev dummy2 table 100
>>> + ip route add local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100
>>> + ip route prepend unicast 2001:db8:103::/64 via 2001:db8:101::10 dev dummy2 table 1
>> Unfortunately the original IPv6 multipath implementation did not follow
>> the same semantics as IPv4. Each leg in a MP route is a separate entry
>> and the append and prepend work differently for v6. :-(
>>
>> This difference is one of the many goals of the separate nexthop objects
>> -- aligning ipv4 and ipv6 behavior which can only be done with a new
>> API. There were many attempts to make the legacy route infrastructure
>> more closely aligned between v4 and v6 and inevitably each was reverted
>> because it broke some existing user.
> 
> Yes, I understand the difficult and risk to aligned the v4/v6 behavior.
> On the other hand, changing to new nexthop api also a large work for the
> routing daemons. Here is a quote from NM developers replied to me.

It is some level of work yes, but the netlink message format between old
and new was left as aligned and similar as possible - to make it easier
to move between old and new api.

> 
> "If the issues (this and others) of the netlink API for route objects can be
> fixed, then there seems less reason to change NetworkManager to nexthop
> objects. If it cannot (won't) be fixed, then would be another argument for using
> nexthop objects..."
> 
> I will check if all the issues could be fixed with new nexthop api.
> 
> Thanks
> Hangbin


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-25 16:36                       ` Stephen Hemminger
@ 2023-07-28 13:01                         ` Nicolas Dichtel
  2023-07-28 15:42                           ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Nicolas Dichtel @ 2023-07-28 13:01 UTC (permalink / raw)
  To: Stephen Hemminger, Hangbin Liu
  Cc: Ido Schimmel, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

Le 25/07/2023 à 18:36, Stephen Hemminger a écrit :
> On Tue, 25 Jul 2023 16:20:59 +0800
> Hangbin Liu <liuhangbin@gmail.com> wrote:
> 
>> On Mon, Jul 24, 2023 at 08:48:20AM -0700, Stephen Hemminger wrote:
>>> On Mon, 24 Jul 2023 16:56:37 +0800
>>> Hangbin Liu <liuhangbin@gmail.com> wrote:
>>>   
>>>> The NetworkManager keeps a cache of the routes. Missing/Wrong events mean that
>>>> the cache becomes inconsistent. The IPv4 will not send src route delete info
>>>> if it's bond to other device. While IPv6 only modify the src route instead of
>>>> delete it, and also no notify. So NetworkManager developers complained and
>>>> hope to have a consistent and clear notification about route modify/delete.  
>>>
>>> Read FRR they get it right. The routing daemons have to track kernel,
>>> and the semantics have been worked out for years.  
>>
>> Yes, normally the routing daemon need to track kernel. On the other hand,
>> the kernel also need to make a clear feedback. The userspace developers may
>> not know the kernel code very well. The unclear/inconsistent notification
>> would make them confused.
> 
> Right, that should be addressed by clearer documentation of the semantics
> and the rational.
> 
Frankly, it's quite complex, there are corner cases.

When an interface is set down, the routes associated to this interface should be
removed. This is the simple part.
But for ecmp routes, there are several cases:
 - if all nh use this interface: the routes are deleted by the kernel;
 - if only some nh uses this interface :
   + if all other nh already point to a down interface: the route are deleted by
the kernel;
   + if at least one nh points to an up interface: the nh are temporarily disabled.

Managing a cache with this is not so obvious ;-)

My two cents,
Nicolas

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-28 13:01                         ` Nicolas Dichtel
@ 2023-07-28 15:42                           ` David Ahern
  2023-08-02  9:10                             ` Thomas Haller
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-07-28 15:42 UTC (permalink / raw)
  To: nicolas.dichtel, Stephen Hemminger, Hangbin Liu
  Cc: Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On 7/28/23 7:01 AM, Nicolas Dichtel wrote:
> Frankly, it's quite complex, there are corner cases.

yes there are.
> 
> When an interface is set down, the routes associated to this interface should be
> removed. This is the simple part.
> But for ecmp routes, there are several cases:
>  - if all nh use this interface: the routes are deleted by the kernel;
>  - if only some nh uses this interface :
>    + if all other nh already point to a down interface: the route are deleted by
> the kernel;
>    + if at least one nh points to an up interface: the nh are temporarily disabled.
> 
> Managing a cache with this is not so obvious 😉


FRR works well with Linux at this point, and libnl's caching was updated
ad fixed by folks from Cumulus Networks so it should be a good too.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-23  7:38               ` Ido Schimmel
  2023-07-24  8:56                 ` Hangbin Liu
@ 2023-08-02  9:06                 ` Thomas Haller
  2023-08-04  8:09                 ` Hangbin Liu
  2 siblings, 0 replies; 45+ messages in thread
From: Thomas Haller @ 2023-08-02  9:06 UTC (permalink / raw)
  To: Ido Schimmel, Hangbin Liu
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni

On Sun, 2023-07-23 at 10:38 +0300, Ido Schimmel wrote:
> On Fri, Jul 21, 2023 at 01:46:13PM +0800, Hangbin Liu wrote:
> 
> 
> I assume NetworkManager already knows how to delete routes given
> RTM_DELLINK events. Can't it be taught to react to RTM_DELADDR events
> as
> well? Then this functionality will always work, regardless of the
> kernel
> version being used.
> 

Hi,

NetworkManager will already request a full dump of all routes, when an
address gets deleted.

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/1dff0156278594ab171b59885396cf95aff2af7f/src/libnm-platform/nm-linux-platform.c#L7437


Thomas


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-28 15:42                           ` David Ahern
@ 2023-08-02  9:10                             ` Thomas Haller
  2023-08-08  1:44                               ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Thomas Haller @ 2023-08-02  9:10 UTC (permalink / raw)
  To: David Ahern, nicolas.dichtel, Stephen Hemminger, Hangbin Liu
  Cc: Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On Fri, 2023-07-28 at 09:42 -0600, David Ahern wrote:
> On 7/28/23 7:01 AM, Nicolas Dichtel wrote:
> 
> > Managing a cache with this is not so obvious 😉
> 
> 
> FRR works well with Linux at this point, 

Interesting. Do you have a bit more information?

> and libnl's caching was updated
> ad fixed by folks from Cumulus Networks so it should be a good too.


Which "libnl" do you mean?

Route caching in libnl3 upstream is very broken (which I am to blame
for, as I am the maintainer).


Thomas


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-07-23  7:38               ` Ido Schimmel
  2023-07-24  8:56                 ` Hangbin Liu
  2023-08-02  9:06                 ` [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Thomas Haller
@ 2023-08-04  8:09                 ` Hangbin Liu
  2023-08-09  7:06                   ` Ido Schimmel
  2 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-08-04  8:09 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Sun, Jul 23, 2023 at 10:38:11AM +0300, Ido Schimmel wrote:
> > > >> Will you get a notification in this case for 198.51.100.0/24?
> > > > 
> > > > No. Do you think it is expected with this patch or not?
> > > 
> > > The intent is that notifications are sent for link events but not route
> > > events which are easily deduced from the link events.
> > 
> > Sorry, I didn't get what you mean. The link events should be notified to user
> > via rtmsg_ifinfo_event()? So I think here we ignore the route events caused by
> > link down looks reasonable.
> 
> The route in the scenario I mentioned wasn't deleted because of a link
> event, but because the source address was deleted yet no notification
> was emitted. IMO, this is wrong given the description of the patch.
> 

Hi Ido,

I reconsidered this issue this week. As we can't get the device status in
fib_table_flush(). How about adding another flag to track the deleted src
entries. e.g. RTNH_F_UNRESOLVED. Which is only used in ipmr currently.
When the src route address is deleted, the route entry also could be
considered as unresolved. With this idea, the patch could be like:

diff --git a/include/uapi/linux/rtnetlink.h b/include/uapi/linux/rtnetlink.h
index 51c13cf9c5ae..5c41d34ab447 100644
--- a/include/uapi/linux/rtnetlink.h
+++ b/include/uapi/linux/rtnetlink.h
@@ -420,7 +420,7 @@ struct rtnexthop {
 #define RTNH_F_ONLINK          4       /* Gateway is forced on link    */
 #define RTNH_F_OFFLOAD         8       /* Nexthop is offloaded */
 #define RTNH_F_LINKDOWN                16      /* carrier-down on nexthop */
-#define RTNH_F_UNRESOLVED      32      /* The entry is unresolved (ipmr) */
+#define RTNH_F_UNRESOLVED      32      /* The entry is unresolved (ipmr/dead src) */
 #define RTNH_F_TRAP            64      /* Nexthop is trapping packets */

 #define RTNH_COMPARE_MASK      (RTNH_F_DEAD | RTNH_F_LINKDOWN | \
diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
index 65ba18a91865..a7ef21a6d271 100644
--- a/net/ipv4/fib_semantics.c
+++ b/net/ipv4/fib_semantics.c
@@ -1883,7 +1883,7 @@ int fib_sync_down_addr(struct net_device *dev, __be32 local)
                    fi->fib_tb_id != tb_id)
                        continue;
                if (fi->fib_prefsrc == local) {
-                       fi->fib_flags |= RTNH_F_DEAD;
+                       fi->fib_flags |= (RTNH_F_DEAD | RTNH_F_UNRESOLVED);
                        ret++;
                }
        }
diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
index 74d403dbd2b4..88c593967063 100644
--- a/net/ipv4/fib_trie.c
+++ b/net/ipv4/fib_trie.c
@@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
 int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
 {
        struct trie *t = (struct trie *)tb->tb_data;
+       struct nl_info info = { .nl_net = net };
        struct key_vector *pn = t->kv;
        unsigned long cindex = 1;
        struct hlist_node *tmp;
@@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)

                        fib_notify_alias_delete(net, n->key, &n->leaf, fa,
                                                NULL);
+                       if (fi->fib_flags & RTNH_F_UNRESOLVED) {
+                               fi->fib_flags &= ~RTNH_F_UNRESOLVED;
+                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
+                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
+                       }
                        hlist_del_rcu(&fa->fa_list);
                        fib_release_info(fa->fa_info);
                        alias_free_mem_rcu(fa);

Thanks
Hangbin

^ permalink raw reply related	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-08-02  9:10                             ` Thomas Haller
@ 2023-08-08  1:44                               ` David Ahern
  2023-08-08 18:59                                 ` Benjamin Poirier
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-08-08  1:44 UTC (permalink / raw)
  To: Thomas Haller, nicolas.dichtel, Stephen Hemminger, Hangbin Liu
  Cc: Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On 8/2/23 3:10 AM, Thomas Haller wrote:
> On Fri, 2023-07-28 at 09:42 -0600, David Ahern wrote:
>> On 7/28/23 7:01 AM, Nicolas Dichtel wrote:
>>
>>> Managing a cache with this is not so obvious 😉
>>
>>
>> FRR works well with Linux at this point, 
> 
> Interesting. Do you have a bit more information?
> 
>> and libnl's caching was updated
>> ad fixed by folks from Cumulus Networks so it should be a good too.
> 
> 
> Which "libnl" do you mean?

yes. https://github.com/thom311/libnl.git

> 
> Route caching in libnl3 upstream is very broken (which I am to blame
> for, as I am the maintainer).
> 

as someone who sent in patches it worked for all of Cumulus' uses cases
around 2018-2019 time frame. Can't speak for the status today.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-08-08  1:44                               ` David Ahern
@ 2023-08-08 18:59                                 ` Benjamin Poirier
  2023-09-11  9:50                                   ` Thomas Haller
  0 siblings, 1 reply; 45+ messages in thread
From: Benjamin Poirier @ 2023-08-08 18:59 UTC (permalink / raw)
  To: David Ahern
  Cc: Thomas Haller, nicolas.dichtel, Stephen Hemminger, Hangbin Liu,
	Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On 2023-08-07 19:44 -0600, David Ahern wrote:
> On 8/2/23 3:10 AM, Thomas Haller wrote:
> > On Fri, 2023-07-28 at 09:42 -0600, David Ahern wrote:
> >> On 7/28/23 7:01 AM, Nicolas Dichtel wrote:
> >>
> >>> Managing a cache with this is not so obvious 😉
> >>
> >>
> >> FRR works well with Linux at this point, 
> > 
> > Interesting. Do you have a bit more information?
> > 
> >> and libnl's caching was updated
> >> ad fixed by folks from Cumulus Networks so it should be a good too.
> > 
> > 
> > Which "libnl" do you mean?
> 
> yes. https://github.com/thom311/libnl.git
> 
> > 
> > Route caching in libnl3 upstream is very broken (which I am to blame
> > for, as I am the maintainer).
> > 
> 
> as someone who sent in patches it worked for all of Cumulus' uses cases
> around 2018-2019 time frame. Can't speak for the status today.
> 

Nowadays Cumulus still relies on an OOT kernel patch almost identical to
Hangbin's.

Looking through an old ticket on the subject, I can see you had indeed
prepared patches to make Cumulus' libnl-using application (switchd)
delete route entries from the libnl cache based on link down events.
Ultimately, those changes were left on the table for two reasons:
1) This would've been the first time for Cumulus that the libnl cache
would be modified by the application instead of in response to netlink
events. Roopa was concerned that there might be race conditions.
2) There was an expectation at the time that Cumulus would move to
switchdev, which would've made switchd and libnl unnecessary.

I brought up the removal of this OOT kernel patch again a few months ago
but there was not enough interest internally. In fact, I was just asked
to add *more* notifications for a similar case, sigh.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-08-04  8:09                 ` Hangbin Liu
@ 2023-08-09  7:06                   ` Ido Schimmel
  2023-08-09 10:02                     ` Hangbin Liu
  0 siblings, 1 reply; 45+ messages in thread
From: Ido Schimmel @ 2023-08-09  7:06 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Fri, Aug 04, 2023 at 04:09:08PM +0800, Hangbin Liu wrote:
> I reconsidered this issue this week. As we can't get the device status in
> fib_table_flush(). How about adding another flag to track the deleted src
> entries. e.g. RTNH_F_UNRESOLVED. Which is only used in ipmr currently.
> When the src route address is deleted, the route entry also could be
> considered as unresolved. With this idea, the patch could be like:
> 
> diff --git a/include/uapi/linux/rtnetlink.h b/include/uapi/linux/rtnetlink.h
> index 51c13cf9c5ae..5c41d34ab447 100644
> --- a/include/uapi/linux/rtnetlink.h
> +++ b/include/uapi/linux/rtnetlink.h
> @@ -420,7 +420,7 @@ struct rtnexthop {
>  #define RTNH_F_ONLINK          4       /* Gateway is forced on link    */
>  #define RTNH_F_OFFLOAD         8       /* Nexthop is offloaded */
>  #define RTNH_F_LINKDOWN                16      /* carrier-down on nexthop */
> -#define RTNH_F_UNRESOLVED      32      /* The entry is unresolved (ipmr) */
> +#define RTNH_F_UNRESOLVED      32      /* The entry is unresolved (ipmr/dead src) */
>  #define RTNH_F_TRAP            64      /* Nexthop is trapping packets */
> 
>  #define RTNH_COMPARE_MASK      (RTNH_F_DEAD | RTNH_F_LINKDOWN | \

I'm not sure we need to reinterpret the meaning of this uAPI flag. The
FIB info structure currently looks like this:

struct fib_info {
        struct hlist_node          fib_hash;             /*     0    16 */
        struct hlist_node          fib_lhash;            /*    16    16 */
        struct list_head           nh_list;              /*    32    16 */
        struct net *               fib_net;              /*    48     8 */
        refcount_t                 fib_treeref;          /*    56     4 */
        refcount_t                 fib_clntref;          /*    60     4 */
        /* --- cacheline 1 boundary (64 bytes) --- */
        unsigned int               fib_flags;            /*    64     4 */
        unsigned char              fib_dead;             /*    68     1 */
        unsigned char              fib_protocol;         /*    69     1 */
        unsigned char              fib_scope;            /*    70     1 */
        unsigned char              fib_type;             /*    71     1 */
        __be32                     fib_prefsrc;          /*    72     4 */
        u32                        fib_tb_id;            /*    76     4 */
        u32                        fib_priority;         /*    80     4 */

        /* XXX 4 bytes hole, try to pack */

        struct dst_metrics *       fib_metrics;          /*    88     8 */
        int                        fib_nhs;              /*    96     4 */
        bool                       fib_nh_is_v6;         /*   100     1 */
        bool                       nh_updated;           /*   101     1 */

        /* XXX 2 bytes hole, try to pack */

        struct nexthop *           nh;                   /*   104     8 */
        struct callback_head       rcu __attribute__((__aligned__(8))); /*   112    16 */
        /* --- cacheline 2 boundary (128 bytes) --- */
        struct fib_nh              fib_nh[];             /*   128     0 */

        /* size: 128, cachelines: 2, members: 21 */
        /* sum members: 122, holes: 2, sum holes: 6 */
        /* forced alignments: 1 */
} __attribute__((__aligned__(8)));

We can instead represent fib_nh_is_v6 and nh_updated using a single bit:

diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h
index a378eff827c7..a91f8a28689a 100644
--- a/include/net/ip_fib.h
+++ b/include/net/ip_fib.h
@@ -152,8 +152,8 @@ struct fib_info {
 #define fib_rtt fib_metrics->metrics[RTAX_RTT-1]
 #define fib_advmss fib_metrics->metrics[RTAX_ADVMSS-1]
        int                     fib_nhs;
-       bool                    fib_nh_is_v6;
-       bool                    nh_updated;
+       u8                      fib_nh_is_v6:1,
+                               nh_updated:1;
        struct nexthop          *nh;
        struct rcu_head         rcu;
        struct fib_nh           fib_nh[];

And then add another bit there to mark a FIB info that is deleted
because of preferred source address deletion.

I suggest testing with the FIB tests in tools/testing/selftests/net/.

> diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
> index 65ba18a91865..a7ef21a6d271 100644
> --- a/net/ipv4/fib_semantics.c
> +++ b/net/ipv4/fib_semantics.c
> @@ -1883,7 +1883,7 @@ int fib_sync_down_addr(struct net_device *dev, __be32 local)
>                     fi->fib_tb_id != tb_id)
>                         continue;
>                 if (fi->fib_prefsrc == local) {
> -                       fi->fib_flags |= RTNH_F_DEAD;
> +                       fi->fib_flags |= (RTNH_F_DEAD | RTNH_F_UNRESOLVED);
>                         ret++;
>                 }
>         }
> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
> index 74d403dbd2b4..88c593967063 100644
> --- a/net/ipv4/fib_trie.c
> +++ b/net/ipv4/fib_trie.c
> @@ -2026,6 +2026,7 @@ void fib_table_flush_external(struct fib_table *tb)
>  int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
>  {
>         struct trie *t = (struct trie *)tb->tb_data;
> +       struct nl_info info = { .nl_net = net };
>         struct key_vector *pn = t->kv;
>         unsigned long cindex = 1;
>         struct hlist_node *tmp;
> @@ -2088,6 +2089,11 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all)
> 
>                         fib_notify_alias_delete(net, n->key, &n->leaf, fa,
>                                                 NULL);
> +                       if (fi->fib_flags & RTNH_F_UNRESOLVED) {
> +                               fi->fib_flags &= ~RTNH_F_UNRESOLVED;
> +                               rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa,
> +                                         KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0);
> +                       }
>                         hlist_del_rcu(&fa->fa_list);
>                         fib_release_info(fa->fa_info);
>                         alias_free_mem_rcu(fa);
> 
> Thanks
> Hangbin

^ permalink raw reply related	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-08-09  7:06                   ` Ido Schimmel
@ 2023-08-09 10:02                     ` Hangbin Liu
  0 siblings, 0 replies; 45+ messages in thread
From: Hangbin Liu @ 2023-08-09 10:02 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: David Ahern, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Wed, Aug 09, 2023 at 10:06:07AM +0300, Ido Schimmel wrote:
> We can instead represent fib_nh_is_v6 and nh_updated using a single bit:
> 
> diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h
> index a378eff827c7..a91f8a28689a 100644
> --- a/include/net/ip_fib.h
> +++ b/include/net/ip_fib.h
> @@ -152,8 +152,8 @@ struct fib_info {
>  #define fib_rtt fib_metrics->metrics[RTAX_RTT-1]
>  #define fib_advmss fib_metrics->metrics[RTAX_ADVMSS-1]
>         int                     fib_nhs;
> -       bool                    fib_nh_is_v6;
> -       bool                    nh_updated;
> +       u8                      fib_nh_is_v6:1,
> +                               nh_updated:1;
>         struct nexthop          *nh;
>         struct rcu_head         rcu;
>         struct fib_nh           fib_nh[];
> 
> And then add another bit there to mark a FIB info that is deleted
> because of preferred source address deletion.
> 
> I suggest testing with the FIB tests in tools/testing/selftests/net/.

Thanks for the suggestion. The discuss in this patch is getting too long.
Let me post the new patch and we can discuss there.

Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-07-27 14:45                       ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Ido Schimmel
@ 2023-08-28  7:53                         ` Hangbin Liu
  2023-08-28 15:06                           ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-08-28  7:53 UTC (permalink / raw)
  To: Ido Schimmel
  Cc: Stephen Hemminger, David Ahern, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

Hi Ido,

I'm back on this question again. Hope you are not too tired on this topic.

Because in you last reply you only answered that we'd better using new nexthop
API (which I'm totally agree) to resolve the consistent of IPv4 and IPv6. New
feature should also go for the new api. But, it always takes a lot years
for the end user using new API (e.g. some users are still using ifcfg).

What I'm asking is how we should deal with the bugs for old API. See my reply
below.

On Thu, Jul 27, 2023 at 05:45:02PM +0300, Ido Schimmel wrote:
> > Since the route are not merged, the nexthop weight is not shown, which
> > make them look like the same for users. For IPv4, the scope is also
> > not shown, which look like the same for users.
> 
> The routes are the same, but separate. They do not form a multipath
> route. Weight is meaningless for a non-multipath route.
> 
> > But there are 2 issues here:
> > 1. the *type* and *protocol* field are actally ignored
> > 2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
> >    use the config info from user space. When means `ip monitor` show the
> >    incorrect type and protocol
> > 
> > So my questions are, should we show weight/scope for IPv4?

Here is the first one. As the weight/scope are not shown, the two separate
routes would looks exactly the same for end user, which makes user confused.
So why not just show the weight/scope, or forbid user to add a non-multipath
route with weight/scope?

>> How to deal the type/proto info missing for IPv6?

What we should do for this bug? The type/proto info are ignored when
merge the IPv6 nexthop entries.

Thanks
Hangbin
>> How to deal with the difference of merging policy for IPv4/IPv6?
> 
> In my opinion, if you want consistent behavior between IPv4 and IPv6 for
> multipath routes, then I suggest using the nexthop API. It was merged in
> 5.3 (IIRC) and FRR started using it by default a few years ago. Other
> than a few bugs that were fixed, I don't remember many complaints. Also,
> any nexthop-related features will only be implemented in the nexthop
> API, not in the legacy API. Resilient nexthop groups is one example.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-08-28  7:53                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
@ 2023-08-28 15:06                           ` David Ahern
  2023-08-29  1:07                             ` Hangbin Liu
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-08-28 15:06 UTC (permalink / raw)
  To: Hangbin Liu, Ido Schimmel
  Cc: Stephen Hemminger, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Thomas Haller

On 8/28/23 1:53 AM, Hangbin Liu wrote:
> On Thu, Jul 27, 2023 at 05:45:02PM +0300, Ido Schimmel wrote:
>>> Since the route are not merged, the nexthop weight is not shown, which
>>> make them look like the same for users. For IPv4, the scope is also
>>> not shown, which look like the same for users.
>>
>> The routes are the same, but separate. They do not form a multipath
>> route. Weight is meaningless for a non-multipath route.
>>
>>> But there are 2 issues here:
>>> 1. the *type* and *protocol* field are actally ignored
>>> 2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
>>>    use the config info from user space. When means `ip monitor` show the
>>>    incorrect type and protocol
>>>
>>> So my questions are, should we show weight/scope for IPv4?
> 
> Here is the first one. As the weight/scope are not shown, the two separate
> routes would looks exactly the same for end user, which makes user confused.

Asked and answered many times above: Weight has no meaning on single
path routes; it is not even tracked if I recall correctly.

> So why not just show the weight/scope, or forbid user to add a non-multipath
> route with weight/scope?

That is a change to a uAPI we can not do at this point.

> 
>>> How to deal the type/proto info missing for IPv6?
> 
> What we should do for this bug? The type/proto info are ignored when
> merge the IPv6 nexthop entries.

I need more information; this thread has gone on for a long time now.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-08-28 15:06                           ` David Ahern
@ 2023-08-29  1:07                             ` Hangbin Liu
  2023-08-29  1:42                               ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-08-29  1:07 UTC (permalink / raw)
  To: David Ahern
  Cc: Ido Schimmel, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On Mon, Aug 28, 2023 at 09:06:25AM -0600, David Ahern wrote:
> >>> But there are 2 issues here:
> >>> 1. the *type* and *protocol* field are actally ignored
> >>> 2. when do `ip monitor route`, the info dumpped in fib6_add_rt2node()
> >>>    use the config info from user space. When means `ip monitor` show the
> >>>    incorrect type and protocol
> >>>
> >>> So my questions are, should we show weight/scope for IPv4?
> > 
> > Here is the first one. As the weight/scope are not shown, the two separate
> > routes would looks exactly the same for end user, which makes user confused.
> 
> Asked and answered many times above: Weight has no meaning on single
> path routes; it is not even tracked if I recall correctly.

Yes, I'm sorry that I asked this question over and over again. Because I
always got the answer that these are two different routes and weight are
meaningless for none-multipath route. But IIRC, I never got a straight answer
of what we should deal with this problem.
> 
> > So why not just show the weight/scope, or forbid user to add a non-multipath
> > route with weight/scope?
> 
> That is a change to a uAPI we can not do at this point.

Yes, that's the answers I want to receive. Either show it, forbid it, or
not change it as it would change uAPI.

> 
> > 
> >>> How to deal the type/proto info missing for IPv6?
> > 
> > What we should do for this bug? The type/proto info are ignored when
> > merge the IPv6 nexthop entries.
> 
> I need more information; this thread has gone on for a long time now.

Sure, here is the reproducer:

+ ip link add dummy1 up type dummy
+ ip link add dummy2 up type dummy
+ ip addr add 2001:db8:101::1/64 dev dummy1
+ ip addr add 2001:db8:101::2/64 dev dummy2
+ ip monitor route
+ sleep 1
+ ip route add local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100
local 2001:db8:103::/64 via 2001:db8:101::10 dev dummy1 table 100 metric 1024 pref medium
+ ip route prepend unicast 2001:db8:103::/64 via 2001:db8:101::10 dev dummy2 table 100
2001:db8:103::/64 table 100 metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
        nexthop via 2001:db8:101::10 dev dummy1 weight 1

   ^^ Here you can see the ip monitor print the route with unicast, even the
      "dev dummy1" route should be local

+ ip -6 route show table 100
local 2001:db8:103::/64 metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
        nexthop via 2001:db8:101::10 dev dummy2 weight 1

    ^^ But the final route still keep using local. Which is different with
       what `ip monitor` print

+ ip route add 2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 proto kernel table 200
2001:db8:104::/64 via 2001:db8:101::10 dev dummy1 table 200 proto kernel metric 1024 pref medium
+ ip route append 2001:db8:104::/64 via 2001:db8:101::10 dev dummy2 proto bgp table 200
2001:db8:104::/64 table 200 proto bgp metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy2 weight 1
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
+ ip -6 route show table 200
2001:db8:104::/64 proto kernel metric 1024 pref medium
        nexthop via 2001:db8:101::10 dev dummy1 weight 1
        nexthop via 2001:db8:101::10 dev dummy2 weight 1

        ^^ Same here, ip monitor print protocol bgp, but the actual protocol
           is still kernel. We just merged them together and ignored the
           protocol field.

+ kill $!

As I asked, The type/proto info are ignored and dropped when merge the IPv6
nexthop entries. How should we deal with this bug? Fix it or ignore it?

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [Questions] Some issues about IPv4/IPv6 nexthop route
  2023-08-29  1:07                             ` Hangbin Liu
@ 2023-08-29  1:42                               ` David Ahern
  0 siblings, 0 replies; 45+ messages in thread
From: David Ahern @ 2023-08-29  1:42 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Ido Schimmel, Stephen Hemminger, netdev, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Thomas Haller

On 8/28/23 7:07 PM, Hangbin Liu wrote:
> As I asked, The type/proto info are ignored and dropped when merge the IPv6
> nexthop entries. How should we deal with this bug? Fix it or ignore it?

ok, yes, that is a bug to me since information passed in is silently
dropped. Please send a patch to fix it.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-08-08 18:59                                 ` Benjamin Poirier
@ 2023-09-11  9:50                                   ` Thomas Haller
  2023-09-13  7:58                                     ` Nicolas Dichtel
  0 siblings, 1 reply; 45+ messages in thread
From: Thomas Haller @ 2023-09-11  9:50 UTC (permalink / raw)
  To: Benjamin Poirier, David Ahern
  Cc: nicolas.dichtel, Stephen Hemminger, Hangbin Liu, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

On Tue, 2023-08-08 at 14:59 -0400, Benjamin Poirier wrote:
> On 2023-08-07 19:44 -0600, David Ahern wrote:
> > On 8/2/23 3:10 AM, Thomas Haller wrote:
> > > On Fri, 2023-07-28 at 09:42 -0600, David Ahern wrote:
> > > > On 7/28/23 7:01 AM, Nicolas Dichtel wrote:
> > > > 
> > > > > Managing a cache with this is not so obvious 😉
> > > > 
> > > > 
> > > > FRR works well with Linux at this point, 
> > > 
> > > Interesting. Do you have a bit more information?
> > > 
> > > > and libnl's caching was updated
> > > > ad fixed by folks from Cumulus Networks so it should be a good
> > > > too.
> > > 
> > > 
> > > Which "libnl" do you mean?
> > 
> > yes. https://github.com/thom311/libnl.git
> > 
> > > 
> > > Route caching in libnl3 upstream is very broken (which I am to
> > > blame
> > > for, as I am the maintainer).
> > > 
> > 
> > as someone who sent in patches it worked for all of Cumulus' uses
> > cases
> > around 2018-2019 time frame. Can't speak for the status today.
> > 
> 
> Nowadays Cumulus still relies on an OOT kernel patch almost identical
> to
> Hangbin's.
> 
> Looking through an old ticket on the subject, I can see you had
> indeed
> prepared patches to make Cumulus' libnl-using application (switchd)
> delete route entries from the libnl cache based on link down events.
> Ultimately, those changes were left on the table for two reasons:
> 1) This would've been the first time for Cumulus that the libnl cache
> would be modified by the application instead of in response to
> netlink
> events. Roopa was concerned that there might be race conditions.
> 2) There was an expectation at the time that Cumulus would move to
> switchdev, which would've made switchd and libnl unnecessary.
> 
> I brought up the removal of this OOT kernel patch again a few months
> ago
> but there was not enough interest internally. In fact, I was just
> asked
> to add *more* notifications for a similar case, sigh.


Hi,

Those patches were sent to me directly, and never hit the mailing list
(due to technical problems with the list). More importantly, the
changes were complicated, combined with having no tests. I hesitated to
merge them. Nowadays, the unit test setup for libnl3 improved, and it
would be great to fix this.

This is all entirely my fault as maintainer, but two points:

- libnl3 upstream still does *not* handle route caching correctly (at
all).

- the fact that it isn't fixed in more than a decade, shows IMO that
getting caching right for routes is very hard. Patches that improve the
behavior should not be rejected with "look at libnl3 or FRR".


If FRR gets this right, it's honestly an impressive accomplishment. I'd
still be curious about the details.


Thomas


^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-11  9:50                                   ` Thomas Haller
@ 2023-09-13  7:58                                     ` Nicolas Dichtel
  2023-09-13  9:54                                       ` Hangbin Liu
  2023-09-13 14:41                                       ` David Ahern
  0 siblings, 2 replies; 45+ messages in thread
From: Nicolas Dichtel @ 2023-09-13  7:58 UTC (permalink / raw)
  To: Thomas Haller, Benjamin Poirier, David Ahern
  Cc: Stephen Hemminger, Hangbin Liu, Ido Schimmel, netdev,
	David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni

Le 11/09/2023 à 11:50, Thomas Haller a écrit :
[snip]
> - the fact that it isn't fixed in more than a decade, shows IMO that
> getting caching right for routes is very hard. Patches that improve the
> behavior should not be rejected with "look at libnl3 or FRR".
+1

I just hit another corner case:

ip link set ntfp2 up
ip address add 10.125.0.1/24 dev ntfp2
ip nexthop add id 1234 via 10.125.0.2 dev ntfp2
ip route add 10.200.0.0/24 nhid 1234

Check the config:
$ ip route
<snip>
10.200.0.0/24 nhid 1234 via 10.125.0.2 dev ntfp2
$ ip nexthop
id 1234 via 10.125.0.2 dev ntfp2 scope link


Set the carrier off on ntfp2:
ip monitor label link route nexthop&
ip link set ntfp2 carrier off

$ ip link set ntfp2 carrier off
$ [LINK]4: ntfp2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state
DOWN group default
    link/ether de:ed:02:67:61:1f brd ff:ff:ff:ff:ff:ff

=> No nexthop event nor route event (net.ipv4.nexthop_compat_mode = 1)

'ip nexthop' and 'ip route' show that the nexthop and the route have been deleted.

If the nexthop infra is not used (ip route add 10.200.0.0/24 via 10.125.0.2 dev
ntfp2), the route entry is not deleted.

I wondering if it is expected to not have a nexthop event when one is removed
due to a carrier lost.
At least, a route event should be generated when the compat_mode is enabled.


Regards,
Nicolas

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13  7:58                                     ` Nicolas Dichtel
@ 2023-09-13  9:54                                       ` Hangbin Liu
  2023-09-13 14:11                                         ` Nicolas Dichtel
  2023-09-13 14:41                                       ` David Ahern
  1 sibling, 1 reply; 45+ messages in thread
From: Hangbin Liu @ 2023-09-13  9:54 UTC (permalink / raw)
  To: Nicolas Dichtel
  Cc: Thomas Haller, Benjamin Poirier, David Ahern, Stephen Hemminger,
	Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On Wed, Sep 13, 2023 at 09:58:08AM +0200, Nicolas Dichtel wrote:
> Le 11/09/2023 à 11:50, Thomas Haller a écrit :
> [snip]
> > - the fact that it isn't fixed in more than a decade, shows IMO that
> > getting caching right for routes is very hard. Patches that improve the
> > behavior should not be rejected with "look at libnl3 or FRR".
> +1
> 
> I just hit another corner case:
> 
> ip link set ntfp2 up
> ip address add 10.125.0.1/24 dev ntfp2
> ip nexthop add id 1234 via 10.125.0.2 dev ntfp2
> ip route add 10.200.0.0/24 nhid 1234
> 
> Check the config:
> $ ip route
> <snip>
> 10.200.0.0/24 nhid 1234 via 10.125.0.2 dev ntfp2
> $ ip nexthop
> id 1234 via 10.125.0.2 dev ntfp2 scope link
> 
> 
> Set the carrier off on ntfp2:
> ip monitor label link route nexthop&
> ip link set ntfp2 carrier off
> 
> $ ip link set ntfp2 carrier off
> $ [LINK]4: ntfp2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state
> DOWN group default
>     link/ether de:ed:02:67:61:1f brd ff:ff:ff:ff:ff:ff
> 
> => No nexthop event nor route event (net.ipv4.nexthop_compat_mode = 1)
> 
> 'ip nexthop' and 'ip route' show that the nexthop and the route have been deleted.
> 
> If the nexthop infra is not used (ip route add 10.200.0.0/24 via 10.125.0.2 dev
> ntfp2), the route entry is not deleted.
> 
> I wondering if it is expected to not have a nexthop event when one is removed
> due to a carrier lost.
> At least, a route event should be generated when the compat_mode is enabled.

This thread goes to a long discussion.

Ido has bringing up this issue[1]. In my patchv2[2] we skipped to send the
notification as it is deliberate.

BTW, I'm still looking into the questions you asked in my IPv6 patch[3]. Sorry
for the late response. I was busy with some other stuff recently.

[1] https://lore.kernel.org/netdev/ZLlE5of1Sw1pMPlM@shredder/
[2] https://lore.kernel.org/netdev/20230809140234.3879929-3-liuhangbin@gmail.com/
[3] https://lore.kernel.org/netdev/bf3bb290-25b7-e327-851a-d6a036daab03@6wind.com/

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13  9:54                                       ` Hangbin Liu
@ 2023-09-13 14:11                                         ` Nicolas Dichtel
  2023-09-13 14:43                                           ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Nicolas Dichtel @ 2023-09-13 14:11 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, David Ahern, Stephen Hemminger,
	Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

Le 13/09/2023 à 11:54, Hangbin Liu a écrit :
> On Wed, Sep 13, 2023 at 09:58:08AM +0200, Nicolas Dichtel wrote:
>> Le 11/09/2023 à 11:50, Thomas Haller a écrit :
>> [snip]
>>> - the fact that it isn't fixed in more than a decade, shows IMO that
>>> getting caching right for routes is very hard. Patches that improve the
>>> behavior should not be rejected with "look at libnl3 or FRR".
>> +1
>>
>> I just hit another corner case:
>>
>> ip link set ntfp2 up
>> ip address add 10.125.0.1/24 dev ntfp2
>> ip nexthop add id 1234 via 10.125.0.2 dev ntfp2
>> ip route add 10.200.0.0/24 nhid 1234
>>
>> Check the config:
>> $ ip route
>> <snip>
>> 10.200.0.0/24 nhid 1234 via 10.125.0.2 dev ntfp2
>> $ ip nexthop
>> id 1234 via 10.125.0.2 dev ntfp2 scope link
>>
>>
>> Set the carrier off on ntfp2:
>> ip monitor label link route nexthop&
>> ip link set ntfp2 carrier off
>>
>> $ ip link set ntfp2 carrier off
>> $ [LINK]4: ntfp2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state
>> DOWN group default
>>     link/ether de:ed:02:67:61:1f brd ff:ff:ff:ff:ff:ff
>>
>> => No nexthop event nor route event (net.ipv4.nexthop_compat_mode = 1)
>>
>> 'ip nexthop' and 'ip route' show that the nexthop and the route have been deleted.
>>
>> If the nexthop infra is not used (ip route add 10.200.0.0/24 via 10.125.0.2 dev
>> ntfp2), the route entry is not deleted.
>>
>> I wondering if it is expected to not have a nexthop event when one is removed
>> due to a carrier lost.
>> At least, a route event should be generated when the compat_mode is enabled.
> 
> This thread goes to a long discussion.
> 
> Ido has bringing up this issue[1]. In my patchv2[2] we skipped to send the
> notification as it is deliberate.
The compat_mode was introduced for daemons that doesn't support the nexthop
framework. There must be a notification (RTM_DELROUTE) when a route is deleted
due to a carrier down event. Right now, the backward compat is broken.

> 
> BTW, I'm still looking into the questions you asked in my IPv6 patch[3]. Sorry
> for the late response. I was busy with some other stuff recently.
> 
> [1] https://lore.kernel.org/netdev/ZLlE5of1Sw1pMPlM@shredder/
> [2] https://lore.kernel.org/netdev/20230809140234.3879929-3-liuhangbin@gmail.com/
> [3] https://lore.kernel.org/netdev/bf3bb290-25b7-e327-851a-d6a036daab03@6wind.com/
Thank you for the pointers.


Regards,
Nicolas

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13  7:58                                     ` Nicolas Dichtel
  2023-09-13  9:54                                       ` Hangbin Liu
@ 2023-09-13 14:41                                       ` David Ahern
  2023-09-15 16:59                                         ` Stephen Hemminger
  1 sibling, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-09-13 14:41 UTC (permalink / raw)
  To: nicolas.dichtel, Thomas Haller, Benjamin Poirier
  Cc: Stephen Hemminger, Hangbin Liu, Ido Schimmel, netdev,
	David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni

On 9/13/23 1:58 AM, Nicolas Dichtel wrote:
> Le 11/09/2023 à 11:50, Thomas Haller a écrit :
> [snip]
>> - the fact that it isn't fixed in more than a decade, shows IMO that
>> getting caching right for routes is very hard. Patches that improve the
>> behavior should not be rejected with "look at libnl3 or FRR".
> +1
> 
> I just hit another corner case:
> 
> ip link set ntfp2 up
> ip address add 10.125.0.1/24 dev ntfp2
> ip nexthop add id 1234 via 10.125.0.2 dev ntfp2
> ip route add 10.200.0.0/24 nhid 1234
> 
> Check the config:
> $ ip route
> <snip>
> 10.200.0.0/24 nhid 1234 via 10.125.0.2 dev ntfp2
> $ ip nexthop
> id 1234 via 10.125.0.2 dev ntfp2 scope link
> 
> 
> Set the carrier off on ntfp2:
> ip monitor label link route nexthop&
> ip link set ntfp2 carrier off
> 
> $ ip link set ntfp2 carrier off
> $ [LINK]4: ntfp2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state
> DOWN group default
>     link/ether de:ed:02:67:61:1f brd ff:ff:ff:ff:ff:ff
> 
> => No nexthop event nor route event (net.ipv4.nexthop_compat_mode = 1)

carrier down is a link event and as you show here, link events are sent.

> 
> 'ip nexthop' and 'ip route' show that the nexthop and the route have been deleted.

nexthop objects are removed on the link event; any routes referencing
those nexthops are removed.

> 
> If the nexthop infra is not used (ip route add 10.200.0.0/24 via 10.125.0.2 dev
> ntfp2), the route entry is not deleted.
> 
> I wondering if it is expected to not have a nexthop event when one is removed
> due to a carrier lost.
> At least, a route event should be generated when the compat_mode is enabled.

compat_mode is about expanding nhid into the full, legacy route
attributes. See 4f80116d3df3b

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13 14:11                                         ` Nicolas Dichtel
@ 2023-09-13 14:43                                           ` David Ahern
  2023-09-13 14:53                                             ` Nicolas Dichtel
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-09-13 14:43 UTC (permalink / raw)
  To: nicolas.dichtel, Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, Stephen Hemminger, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

On 9/13/23 8:11 AM, Nicolas Dichtel wrote:
> The compat_mode was introduced for daemons that doesn't support the nexthop
> framework. There must be a notification (RTM_DELROUTE) when a route is deleted
> due to a carrier down event. Right now, the backward compat is broken.

The compat_mode is for daemons that do not understand the nexthop id
attribute, and need the legacy set of attributes for the route - i.e,
expand the nexthop information when sending messages to userspace.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13 14:43                                           ` David Ahern
@ 2023-09-13 14:53                                             ` Nicolas Dichtel
  2023-09-14 15:43                                               ` Nicolas Dichtel
  0 siblings, 1 reply; 45+ messages in thread
From: Nicolas Dichtel @ 2023-09-13 14:53 UTC (permalink / raw)
  To: David Ahern, Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, Stephen Hemminger, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

Le 13/09/2023 à 16:43, David Ahern a écrit :
> On 9/13/23 8:11 AM, Nicolas Dichtel wrote:
>> The compat_mode was introduced for daemons that doesn't support the nexthop
>> framework. There must be a notification (RTM_DELROUTE) when a route is deleted
>> due to a carrier down event. Right now, the backward compat is broken.
> 
> The compat_mode is for daemons that do not understand the nexthop id
> attribute, and need the legacy set of attributes for the route - i.e,
Yes, it's my point.
On my system, one daemon understands and configures nexthop id and another one
doesn't understand nexthop id. This last daemon removes routes when an interface
is put down but not when the carrier is lost.
The kernel doc [1] says:
	Further, updates or deletes of a nexthop configuration generate route
	notifications for each fib entry using the nexthop.
So, my understanding is that a RTM_DELROUTE msg should be sent when a nexthop is
removed due to a carrier lost event.

[1]
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/ip-sysctl.rst#n2116


Regards,
Nicolas

> expand the nexthop information when sending messages to userspace.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13 14:53                                             ` Nicolas Dichtel
@ 2023-09-14 15:43                                               ` Nicolas Dichtel
  2023-09-15  3:07                                                 ` David Ahern
  0 siblings, 1 reply; 45+ messages in thread
From: Nicolas Dichtel @ 2023-09-14 15:43 UTC (permalink / raw)
  To: David Ahern, Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, Stephen Hemminger, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

Le 13/09/2023 à 16:53, Nicolas Dichtel a écrit :
> Le 13/09/2023 à 16:43, David Ahern a écrit :
>> On 9/13/23 8:11 AM, Nicolas Dichtel wrote:
>>> The compat_mode was introduced for daemons that doesn't support the nexthop
>>> framework. There must be a notification (RTM_DELROUTE) when a route is deleted
>>> due to a carrier down event. Right now, the backward compat is broken.
>>
>> The compat_mode is for daemons that do not understand the nexthop id
>> attribute, and need the legacy set of attributes for the route - i.e,
> Yes, it's my point.
> On my system, one daemon understands and configures nexthop id and another one
> doesn't understand nexthop id. This last daemon removes routes when an interface
> is put down but not when the carrier is lost.
> The kernel doc [1] says:
> 	Further, updates or deletes of a nexthop configuration generate route
> 	notifications for each fib entry using the nexthop.
> So, my understanding is that a RTM_DELROUTE msg should be sent when a nexthop is
> removed due to a carrier lost event.
> 
> [1]
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/ip-sysctl.rst#n2116

I dug a bit more about these (missing) notifications. I will try to describe
what should be done for cases where there is no notification:

When an interface is set down:
 - the single (!multipath) routes associated with this interface should be
   removed;
 - for multipath routes:
   + if all nh use this interface: the routes are deleted;
   + if only some nh uses this interface :
     ~ if all other nh already point to a down interface: the routes are deleted;
     ~ if at least one nh points to an up interface:
       o the nh are *temporarily* disabled if it's a plain nexthop;
       o the nh is *definitely* removed if it's a nexthop object;
When the interface is set up later, disabled nh are restored (ie only plain
nexthop of multipath routes).

When an interface loses its carrier:
 - for routes using plain nexthop: nothing happens;
 - for routes using nexthop objects:
   + for single routes: they are deleted;
   + for multipath routes, the nh is definitely removed if it's a nexthop
     object (ie the route is deleted if there is no other nexthop in the group);
When an interface recovers its carrier, there is nothing to do.

When the last ipv4 address of an interface is removed:
 - for routes using nexthop objects: nothing happens;
 - for routes using plain nexthop: the same rules as 'interface down' applies.
When an ipv4 address is added again on the interface, disabled nh are restored
(ie only plain nexthop of multipath routes).

I bet I miss some cases.

Conclusions:
 - legacy applications (that are not aware of nexthop objects) cannot maintain a
   routing cache (even with compat_mode enabled);
 - fixing only the legacy applications (aka compat_mode) seems too
   complex;
 - even if an application is aware of nexthop objects, the rules to maintain a
   cache are far from obvious.

I don't understand why there is so much reluctance to not send a notification
when a route is deleted. This would fix all cases.
I understand that the goal was to save netlink traffic, but in this case, the
daemons that are interested in maintaining a routing cache have to fully parse
their cache to mark/remove routes. For big routing tables, this will cost a lot
of cpu, so I wonder if it's really a gain for the system. On such systems, there
is probably more than one daemon in this case, so even more cpu to spend for
these operations.

As Thomas said, this discussion has come up for more than a decade. And with the
nexthop objects support, it's even more complex. There is obviously something to do.

At least, I would have expected an RTM_DELNEXTHOP msg for each deleted nexthop.
But this wouldn't solve the routing cache sync for legacy applications.


Regards,
Nicolas

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-14 15:43                                               ` Nicolas Dichtel
@ 2023-09-15  3:07                                                 ` David Ahern
  2023-09-15 15:54                                                   ` Nicolas Dichtel
  0 siblings, 1 reply; 45+ messages in thread
From: David Ahern @ 2023-09-15  3:07 UTC (permalink / raw)
  To: nicolas.dichtel, Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, Stephen Hemminger, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

On 9/14/23 9:43 AM, Nicolas Dichtel wrote:
> Le 13/09/2023 à 16:53, Nicolas Dichtel a écrit :
>> Le 13/09/2023 à 16:43, David Ahern a écrit :
>>> On 9/13/23 8:11 AM, Nicolas Dichtel wrote:
>>>> The compat_mode was introduced for daemons that doesn't support the nexthop
>>>> framework. There must be a notification (RTM_DELROUTE) when a route is deleted
>>>> due to a carrier down event. Right now, the backward compat is broken.
>>>
>>> The compat_mode is for daemons that do not understand the nexthop id
>>> attribute, and need the legacy set of attributes for the route - i.e,
>> Yes, it's my point.
>> On my system, one daemon understands and configures nexthop id and another one
>> doesn't understand nexthop id. This last daemon removes routes when an interface
>> is put down but not when the carrier is lost.
>> The kernel doc [1] says:
>> 	Further, updates or deletes of a nexthop configuration generate route
>> 	notifications for each fib entry using the nexthop.
>> So, my understanding is that a RTM_DELROUTE msg should be sent when a nexthop is
>> removed due to a carrier lost event.
>>
>> [1]
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/ip-sysctl.rst#n2116
> 
> I dug a bit more about these (missing) notifications. I will try to describe
> what should be done for cases where there is no notification:
> 
> When an interface is set down:
>  - the single (!multipath) routes associated with this interface should be
>    removed;
>  - for multipath routes:
>    + if all nh use this interface: the routes are deleted;
>    + if only some nh uses this interface :
>      ~ if all other nh already point to a down interface: the routes are deleted;
>      ~ if at least one nh points to an up interface:
>        o the nh are *temporarily* disabled if it's a plain nexthop;
>        o the nh is *definitely* removed if it's a nexthop object;
> When the interface is set up later, disabled nh are restored (ie only plain
> nexthop of multipath routes).
> 
> When an interface loses its carrier:
>  - for routes using plain nexthop: nothing happens;
>  - for routes using nexthop objects:
>    + for single routes: they are deleted;
>    + for multipath routes, the nh is definitely removed if it's a nexthop
>      object (ie the route is deleted if there is no other nexthop in the group);
> When an interface recovers its carrier, there is nothing to do.
> 
> When the last ipv4 address of an interface is removed:
>  - for routes using nexthop objects: nothing happens;
>  - for routes using plain nexthop: the same rules as 'interface down' applies.
> When an ipv4 address is added again on the interface, disabled nh are restored
> (ie only plain nexthop of multipath routes).
> 
> I bet I miss some cases.
> 
> Conclusions:
>  - legacy applications (that are not aware of nexthop objects) cannot maintain a
>    routing cache (even with compat_mode enabled);
>  - fixing only the legacy applications (aka compat_mode) seems too
>    complex;
>  - even if an application is aware of nexthop objects, the rules to maintain a
>    cache are far from obvious.
> 
> I don't understand why there is so much reluctance to not send a notification
> when a route is deleted. This would fix all cases.
> I understand that the goal was to save netlink traffic, but in this case, the
> daemons that are interested in maintaining a routing cache have to fully parse
> their cache to mark/remove routes. For big routing tables, this will cost a lot
> of cpu, so I wonder if it's really a gain for the system. On such systems, there
> is probably more than one daemon in this case, so even more cpu to spend for
> these operations.
> 
> As Thomas said, this discussion has come up for more than a decade. And with the
> nexthop objects support, it's even more complex. There is obviously something to do.
> 
> At least, I would have expected an RTM_DELNEXTHOP msg for each deleted nexthop.
> But this wouldn't solve the routing cache sync for legacy applications.
> 

The split nexthop API is about efficiency. Do not send route
notifications when they are easily derived from other events -- e.g.,
link down or carrier down. The first commit for the nexthop code:

commit ab84be7e54fc3d9b248285f1a14067558d858819
Author: David Ahern <dsahern@gmail.com>
Date:   Fri May 24 14:43:04 2019 -0700

    net: Initial nexthop code

    Barebones start point for nexthops. Implementation for RTM commands,
    notifications, management of rbtree for holding nexthops by id, and
    kernel side data structures for nexthops and nexthop config.

    Nexthops are maintained in an rbtree sorted by id. Similar to routes,
    nexthops are configured per namespace using netns_nexthop struct added
    to struct net.

    Nexthop notifications are sent when a nexthop is added or deleted,
    but NOT if the delete is due to a device event or network namespace
    teardown (which also involves device events). Applications are
    expected to use the device down event to flush nexthops and any
    routes used by the nexthops.

Intent is stated.

The only compatibility with legacy API is around expanding the nhid to a
full set of nexthop attributes to aid a transition to the new API.

This new API also gave an opportunity to bring equivalency between IPv4
and IPv6.

Let's not weaken that model at all.

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-15  3:07                                                 ` David Ahern
@ 2023-09-15 15:54                                                   ` Nicolas Dichtel
  0 siblings, 0 replies; 45+ messages in thread
From: Nicolas Dichtel @ 2023-09-15 15:54 UTC (permalink / raw)
  To: David Ahern, Hangbin Liu
  Cc: Thomas Haller, Benjamin Poirier, Stephen Hemminger, Ido Schimmel,
	netdev, David S . Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni

Le 15/09/2023 à 05:07, David Ahern a écrit :
> On 9/14/23 9:43 AM, Nicolas Dichtel wrote:
>> Le 13/09/2023 à 16:53, Nicolas Dichtel a écrit :
>>> Le 13/09/2023 à 16:43, David Ahern a écrit :
>>>> On 9/13/23 8:11 AM, Nicolas Dichtel wrote:
>>>>> The compat_mode was introduced for daemons that doesn't support the nexthop
>>>>> framework. There must be a notification (RTM_DELROUTE) when a route is deleted
>>>>> due to a carrier down event. Right now, the backward compat is broken.
>>>>
>>>> The compat_mode is for daemons that do not understand the nexthop id
>>>> attribute, and need the legacy set of attributes for the route - i.e,
>>> Yes, it's my point.
>>> On my system, one daemon understands and configures nexthop id and another one
>>> doesn't understand nexthop id. This last daemon removes routes when an interface
>>> is put down but not when the carrier is lost.
>>> The kernel doc [1] says:
>>> 	Further, updates or deletes of a nexthop configuration generate route
>>> 	notifications for each fib entry using the nexthop.
>>> So, my understanding is that a RTM_DELROUTE msg should be sent when a nexthop is
>>> removed due to a carrier lost event.
>>>
>>> [1]
>>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/ip-sysctl.rst#n2116
>>
>> I dug a bit more about these (missing) notifications. I will try to describe
>> what should be done for cases where there is no notification:
>>
>> When an interface is set down:
>>  - the single (!multipath) routes associated with this interface should be
>>    removed;
>>  - for multipath routes:
>>    + if all nh use this interface: the routes are deleted;
>>    + if only some nh uses this interface :
>>      ~ if all other nh already point to a down interface: the routes are deleted;
>>      ~ if at least one nh points to an up interface:
>>        o the nh are *temporarily* disabled if it's a plain nexthop;
>>        o the nh is *definitely* removed if it's a nexthop object;
>> When the interface is set up later, disabled nh are restored (ie only plain
>> nexthop of multipath routes).
>>
>> When an interface loses its carrier:
>>  - for routes using plain nexthop: nothing happens;
>>  - for routes using nexthop objects:
>>    + for single routes: they are deleted;
>>    + for multipath routes, the nh is definitely removed if it's a nexthop
>>      object (ie the route is deleted if there is no other nexthop in the group);
>> When an interface recovers its carrier, there is nothing to do.
>>
>> When the last ipv4 address of an interface is removed:
>>  - for routes using nexthop objects: nothing happens;
>>  - for routes using plain nexthop: the same rules as 'interface down' applies.
>> When an ipv4 address is added again on the interface, disabled nh are restored
>> (ie only plain nexthop of multipath routes).
>>
>> I bet I miss some cases.
>>
>> Conclusions:
>>  - legacy applications (that are not aware of nexthop objects) cannot maintain a
>>    routing cache (even with compat_mode enabled);
>>  - fixing only the legacy applications (aka compat_mode) seems too
>>    complex;
>>  - even if an application is aware of nexthop objects, the rules to maintain a
>>    cache are far from obvious.
>>
>> I don't understand why there is so much reluctance to not send a notification
>> when a route is deleted. This would fix all cases.
>> I understand that the goal was to save netlink traffic, but in this case, the
>> daemons that are interested in maintaining a routing cache have to fully parse
>> their cache to mark/remove routes. For big routing tables, this will cost a lot
>> of cpu, so I wonder if it's really a gain for the system. On such systems, there
>> is probably more than one daemon in this case, so even more cpu to spend for
>> these operations.
>>
>> As Thomas said, this discussion has come up for more than a decade. And with the
>> nexthop objects support, it's even more complex. There is obviously something to do.
>>
>> At least, I would have expected an RTM_DELNEXTHOP msg for each deleted nexthop.
>> But this wouldn't solve the routing cache sync for legacy applications.
>>
> 
> The split nexthop API is about efficiency. Do not send route
Efficiency for the kernel, but complexity for userspace daemons. I'm not sure
the system wins something when several daemons implement the same complex logic.

> notifications when they are easily derived from other events -- e.g.,
> link down or carrier down. The first commit for the nexthop code:
> 
> commit ab84be7e54fc3d9b248285f1a14067558d858819
> Author: David Ahern <dsahern@gmail.com>
> Date:   Fri May 24 14:43:04 2019 -0700
> 
>     net: Initial nexthop code
> 
>     Barebones start point for nexthops. Implementation for RTM commands,
>     notifications, management of rbtree for holding nexthops by id, and
>     kernel side data structures for nexthops and nexthop config.
> 
>     Nexthops are maintained in an rbtree sorted by id. Similar to routes,
>     nexthops are configured per namespace using netns_nexthop struct added
>     to struct net.
> 
>     Nexthop notifications are sent when a nexthop is added or deleted,
>     but NOT if the delete is due to a device event or network namespace
>     teardown (which also involves device events). Applications are
>     expected to use the device down event to flush nexthops and any
>     routes used by the nexthops.
> 
> Intent is stated.
I understand, but are there numbers of the gain? In terms of cpu? memory? Some
systems could have a lot of routes (~900k for an ipv4 full route), but they
usually have a small number of nexthop. If you look at the big picture, is it
really worth saving some netlink messages and putting the load/complexity in the
userspace daemons?

It was the initial intent, no problem. But if people complain, maybe it could be
improved to fit everybody's use case.

> 
> The only compatibility with legacy API is around expanding the nhid to a
> full set of nexthop attributes to aid a transition to the new API.
As I said in another reply, the kernel doc [1] seems also to explain this:
	Further, updates or deletes of a nexthop configuration generate route
	notifications for each fib entry using the nexthop.

Without this, legacy daemons are broken. The compat_mode only hides some
behavior changes if these updates are not notified.

[1]
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/ip-sysctl.rst#n2116


Regards,
Nicolas

^ permalink raw reply	[flat|nested] 45+ messages in thread

* Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib
  2023-09-13 14:41                                       ` David Ahern
@ 2023-09-15 16:59                                         ` Stephen Hemminger
  0 siblings, 0 replies; 45+ messages in thread
From: Stephen Hemminger @ 2023-09-15 16:59 UTC (permalink / raw)
  To: David Ahern
  Cc: nicolas.dichtel, Thomas Haller, Benjamin Poirier, Hangbin Liu,
	Ido Schimmel, netdev, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni

On Wed, 13 Sep 2023 08:41:05 -0600
David Ahern <dsahern@kernel.org> wrote:

> On 9/13/23 1:58 AM, Nicolas Dichtel wrote:
> > Le 11/09/2023 à 11:50, Thomas Haller a écrit :
> > [snip]  
> >> - the fact that it isn't fixed in more than a decade, shows IMO that
> >> getting caching right for routes is very hard. Patches that improve the
> >> behavior should not be rejected with "look at libnl3 or FRR".  
> > +1
> > 
> > I just hit another corner case:
> > 
> > ip link set ntfp2 up
> > ip address add 10.125.0.1/24 dev ntfp2
> > ip nexthop add id 1234 via 10.125.0.2 dev ntfp2
> > ip route add 10.200.0.0/24 nhid 1234
> > 
> > Check the config:
> > $ ip route
> > <snip>
> > 10.200.0.0/24 nhid 1234 via 10.125.0.2 dev ntfp2
> > $ ip nexthop
> > id 1234 via 10.125.0.2 dev ntfp2 scope link
> > 
> > 
> > Set the carrier off on ntfp2:
> > ip monitor label link route nexthop&
> > ip link set ntfp2 carrier off
> > 
> > $ ip link set ntfp2 carrier off
> > $ [LINK]4: ntfp2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state
> > DOWN group default
> >     link/ether de:ed:02:67:61:1f brd ff:ff:ff:ff:ff:ff
> >   
> > => No nexthop event nor route event (net.ipv4.nexthop_compat_mode = 1)  
> 
> carrier down is a link event and as you show here, link events are sent.
> 
> > 
> > 'ip nexthop' and 'ip route' show that the nexthop and the route have been deleted.  
> 
> nexthop objects are removed on the link event; any routes referencing
> those nexthops are removed.

The netlink notification path can and does not have any flow control.
The problem with what is propoosed is that if there are 1M route entries
and a link event happens, some of the RTM_DELROUTE events will be dropped
when the netlink queue overruns. Therefore daemons can not depend on RTM_DELROUTE
for tracking, and instead should look for the link event and do bulk
cleanup then.

^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2023-09-15 17:00 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-18  8:00 [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Hangbin Liu
2023-07-18 10:19 ` Ido Schimmel
2023-07-18 10:32   ` Ido Schimmel
2023-07-18 14:45     ` David Ahern
2023-07-18 15:58   ` Stephen Hemminger
2023-07-20  7:51     ` Hangbin Liu
2023-07-20 14:29       ` Ido Schimmel
2023-07-21  1:34         ` Hangbin Liu
2023-07-21  4:01           ` David Ahern
2023-07-21  5:46             ` Hangbin Liu
2023-07-23  7:38               ` Ido Schimmel
2023-07-24  8:56                 ` Hangbin Liu
2023-07-24 15:48                   ` Stephen Hemminger
2023-07-25  8:20                     ` Hangbin Liu
2023-07-25 16:36                       ` Stephen Hemminger
2023-07-28 13:01                         ` Nicolas Dichtel
2023-07-28 15:42                           ` David Ahern
2023-08-02  9:10                             ` Thomas Haller
2023-08-08  1:44                               ` David Ahern
2023-08-08 18:59                                 ` Benjamin Poirier
2023-09-11  9:50                                   ` Thomas Haller
2023-09-13  7:58                                     ` Nicolas Dichtel
2023-09-13  9:54                                       ` Hangbin Liu
2023-09-13 14:11                                         ` Nicolas Dichtel
2023-09-13 14:43                                           ` David Ahern
2023-09-13 14:53                                             ` Nicolas Dichtel
2023-09-14 15:43                                               ` Nicolas Dichtel
2023-09-15  3:07                                                 ` David Ahern
2023-09-15 15:54                                                   ` Nicolas Dichtel
2023-09-13 14:41                                       ` David Ahern
2023-09-15 16:59                                         ` Stephen Hemminger
2023-07-26 10:17                     ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Hangbin Liu
2023-07-26 15:57                       ` David Ahern
2023-07-27  4:19                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
2023-07-27 15:35                           ` David Ahern
2023-07-27 14:45                       ` [Questions] Some issues about IPv4/IPv6 nexthop route (was Re: [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib) Ido Schimmel
2023-08-28  7:53                         ` [Questions] Some issues about IPv4/IPv6 nexthop route Hangbin Liu
2023-08-28 15:06                           ` David Ahern
2023-08-29  1:07                             ` Hangbin Liu
2023-08-29  1:42                               ` David Ahern
2023-08-02  9:06                 ` [PATCH net-next] ipv4/fib: send RTM_DELROUTE notify when flush fib Thomas Haller
2023-08-04  8:09                 ` Hangbin Liu
2023-08-09  7:06                   ` Ido Schimmel
2023-08-09 10:02                     ` Hangbin Liu
2023-07-25 14:13 ` kernel test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.