All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net v2 1/1] net: tcp: Increase TCP_MIB_OUTRSTS even though fail to alloc skb
@ 2017-04-06 15:05 gfree.wind
  2017-04-08 15:30 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: gfree.wind @ 2017-04-06 15:05 UTC (permalink / raw)
  To: davem, kuznet, jmorris, kaber, ncardwell, netdev; +Cc: Gao Feng

From: Gao Feng <fgao@ikuai8.com>

Because TCP_MIB_OUTRSTS is an important count, so always increase it
whatever send it successfully or not.

Now move the increment of TCP_MIB_OUTRSTS to the top of
tcp_send_active_reset to make sure it is increased always even though
fail to alloc skb.

Signed-off-by: Gao Feng <fgao@ikuai8.com>
---
 v2: Always increase TCP_MIB_OUTRSTS, per Neal
 v1: initial version

 net/ipv4/tcp_output.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index 22548b5..c3c082e 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -2999,6 +2999,8 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority)
 {
 	struct sk_buff *skb;
 
+	TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);
+
 	/* NOTE: No TCP options attached and we never retransmit this. */
 	skb = alloc_skb(MAX_TCP_HEADER, priority);
 	if (!skb) {
@@ -3014,8 +3016,6 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority)
 	/* Send it off. */
 	if (tcp_transmit_skb(sk, skb, 0, priority))
 		NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
-
-	TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);
 }
 
 /* Send a crossed SYN-ACK during socket establishment.
-- 
1.9.1



.

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

* Re: [PATCH net v2 1/1] net: tcp: Increase TCP_MIB_OUTRSTS even though fail to alloc skb
  2017-04-06 15:05 [PATCH net v2 1/1] net: tcp: Increase TCP_MIB_OUTRSTS even though fail to alloc skb gfree.wind
@ 2017-04-08 15:30 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2017-04-08 15:30 UTC (permalink / raw)
  To: gfree.wind; +Cc: kuznet, jmorris, kaber, ncardwell, netdev, fgao

From: gfree.wind@foxmail.com
Date: Thu,  6 Apr 2017 23:05:49 +0800

> From: Gao Feng <fgao@ikuai8.com>
> 
> Because TCP_MIB_OUTRSTS is an important count, so always increase it
> whatever send it successfully or not.
> 
> Now move the increment of TCP_MIB_OUTRSTS to the top of
> tcp_send_active_reset to make sure it is increased always even though
> fail to alloc skb.
> 
> Signed-off-by: Gao Feng <fgao@ikuai8.com>

Applied, thank you.

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

end of thread, other threads:[~2017-04-08 15:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06 15:05 [PATCH net v2 1/1] net: tcp: Increase TCP_MIB_OUTRSTS even though fail to alloc skb gfree.wind
2017-04-08 15:30 ` David Miller

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.