Revert "netfilter: nf_tables: set element extended ACK reporting support"
This reverts commit 466cd07e9a
.
This commit is contained in:
parent
73844bf19d
commit
17917ff85a
1 changed files with 4 additions and 9 deletions
|
@ -5354,10 +5354,8 @@ static int nf_tables_getsetelem(struct net *net, struct sock *nlsk,
|
|||
|
||||
nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
|
||||
err = nft_get_set_elem(&ctx, set, attr);
|
||||
if (err < 0) {
|
||||
NL_SET_BAD_ATTR(extack, attr);
|
||||
if (err < 0)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return err;
|
||||
|
@ -5850,10 +5848,8 @@ static int nf_tables_newsetelem(struct net *net, struct sock *nlsk,
|
|||
|
||||
nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
|
||||
err = nft_add_set_elem(&ctx, set, attr, nlh->nlmsg_flags);
|
||||
if (err < 0) {
|
||||
NL_SET_BAD_ATTR(extack, attr);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
if (nft_net->validate_state == NFT_VALIDATE_DO)
|
||||
|
@ -6062,10 +6058,9 @@ static int nf_tables_delsetelem(struct net *net, struct sock *nlsk,
|
|||
|
||||
nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
|
||||
err = nft_del_setelem(&ctx, set, attr);
|
||||
if (err < 0) {
|
||||
NL_SET_BAD_ATTR(extack, attr);
|
||||
if (err < 0)
|
||||
break;
|
||||
}
|
||||
|
||||
set->ndeact++;
|
||||
}
|
||||
return err;
|
||||
|
|
Loading…
Reference in a new issue