From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dumazet Subject: Re: [PATCH net-next] tcp: switch pacing timer to softirq based hrtimer Date: Thu, 10 May 2018 13:55:00 -0700 Message-ID: <604c253d-a6d9-99ff-317b-b2ca2ffff54a@gmail.com> References: <20180510194909.216521-1-edumazet@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: netdev To: Eric Dumazet , "David S . Miller" Return-path: Received: from mail-pl0-f68.google.com ([209.85.160.68]:42401 "EHLO mail-pl0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751989AbeEJUzC (ORCPT ); Thu, 10 May 2018 16:55:02 -0400 Received: by mail-pl0-f68.google.com with SMTP id u6-v6so1970623pls.9 for ; Thu, 10 May 2018 13:55:02 -0700 (PDT) In-Reply-To: <20180510194909.216521-1-edumazet@google.com> Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: On 05/10/2018 12:49 PM, Eric Dumazet wrote: > linux-4.16 got support for softirq based hrtimers. > TCP can switch its pacing hrtimer to this variant, since this > avoids going through a tasklet and some atomic operations. > I need to send a V2, adding a test of hrtimer_cancel() return value in tcp_clear_xmit_timers() to eventually release the socket reference.