File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1601,20 +1601,20 @@ static int __has_nftables_concat(void *arg)
1601
1601
if (!nft )
1602
1602
return 1 ;
1603
1603
1604
- if (NFT_RUN_CMD (nft , "create table inet CRIU" )) {
1604
+ if (NFT_RUN_CMD (nft , "create table ip CRIU" )) {
1605
1605
pr_warn ("Can't create nftables table\n" );
1606
1606
* has = false; /* kdat.has_nftables_concat = false */
1607
1607
ret = 0 ;
1608
1608
goto nft_ctx_free_out ;
1609
1609
}
1610
1610
1611
- if (NFT_RUN_CMD (nft , "add set inet CRIU conn { type ipv4_addr . inet_service ;}" ))
1611
+ if (NFT_RUN_CMD (nft , "add set ip CRIU conn { type ipv4_addr . inet_service ;}" ))
1612
1612
* has = false; /* kdat.has_nftables_concat = false */
1613
1613
else
1614
1614
* has = true; /* kdat.has_nftables_concat = true */
1615
1615
1616
1616
/* Clean up */
1617
- NFT_RUN_CMD (nft , "delete table inet CRIU" );
1617
+ NFT_RUN_CMD (nft , "delete table ip CRIU" );
1618
1618
1619
1619
ret = 0 ;
1620
1620
nft_ctx_free_out :
You can’t perform that action at this time.
0 commit comments