mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-05 05:44:43 +00:00
tcp: metrics: Delete all entries matching a certain destination
As we now can have multiple entries per destination-IP, the "ip tcp_metrics delete address ADDRESS" command deletes all of them. Signed-off-by: Christoph Paasch <christoph.paasch@uclouvain.be> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8a59359cb8
commit
bbf852b96e
1 changed files with 11 additions and 6 deletions
|
@ -982,7 +982,7 @@ static int tcp_metrics_flush_all(struct net *net)
|
||||||
static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
|
static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
|
||||||
{
|
{
|
||||||
struct tcpm_hash_bucket *hb;
|
struct tcpm_hash_bucket *hb;
|
||||||
struct tcp_metrics_block *tm;
|
struct tcp_metrics_block *tm, *tmlist = NULL;
|
||||||
struct tcp_metrics_block __rcu **pp;
|
struct tcp_metrics_block __rcu **pp;
|
||||||
struct inetpeer_addr daddr;
|
struct inetpeer_addr daddr;
|
||||||
unsigned int hash;
|
unsigned int hash;
|
||||||
|
@ -999,17 +999,22 @@ static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
|
||||||
hb = net->ipv4.tcp_metrics_hash + hash;
|
hb = net->ipv4.tcp_metrics_hash + hash;
|
||||||
pp = &hb->chain;
|
pp = &hb->chain;
|
||||||
spin_lock_bh(&tcp_metrics_lock);
|
spin_lock_bh(&tcp_metrics_lock);
|
||||||
for (tm = deref_locked_genl(*pp); tm;
|
for (tm = deref_locked_genl(*pp); tm; tm = deref_locked_genl(*pp)) {
|
||||||
pp = &tm->tcpm_next, tm = deref_locked_genl(*pp)) {
|
|
||||||
if (addr_same(&tm->tcpm_daddr, &daddr)) {
|
if (addr_same(&tm->tcpm_daddr, &daddr)) {
|
||||||
*pp = tm->tcpm_next;
|
*pp = tm->tcpm_next;
|
||||||
break;
|
tm->tcpm_next = tmlist;
|
||||||
|
tmlist = tm;
|
||||||
|
} else {
|
||||||
|
pp = &tm->tcpm_next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spin_unlock_bh(&tcp_metrics_lock);
|
spin_unlock_bh(&tcp_metrics_lock);
|
||||||
if (!tm)
|
if (!tmlist)
|
||||||
return -ESRCH;
|
return -ESRCH;
|
||||||
kfree_rcu(tm, rcu_head);
|
for (tm = tmlist; tm; tm = tmlist) {
|
||||||
|
tmlist = tm->tcpm_next;
|
||||||
|
kfree_rcu(tm, rcu_head);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue