From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A532C433E4 for ; Fri, 19 Mar 2021 19:06:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 05EB261993 for ; Fri, 19 Mar 2021 19:06:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229912AbhCSTGC (ORCPT ); Fri, 19 Mar 2021 15:06:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58746 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230218AbhCSTFr (ORCPT ); Fri, 19 Mar 2021 15:05:47 -0400 X-Greylist: delayed 3463 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 19 Mar 2021 12:05:46 PDT Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BFB38C06174A for ; Fri, 19 Mar 2021 12:05:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Type:MIME-Version: References:Message-ID:In-Reply-To:Subject:cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=qVZuZEyZBAS/ZgAMPEp7JyONmLh5M9RY5PXbkJLE8m0=; b=XLXLK8zZRT9V/6koOVD1foe6jE uuj+c6QAkeX8KkWg+jAASxyGFpAMOKaNb+2Qol5C3U1HonK5LYEns4EPApR+4TBPb7i2CYTbIySi6 quBjuwU5uhBVzZSiuhRL0siaVa5JmCqz2pilOlrPBff/WU9E5qFbicBBBKIJRq3FP6s9O9rjioAdI xaP8/7JZpzk8vgFiIKS3yQEtaQ/1ddMZvXlfamG11MvUFAYePhClBbhSqhFE7ApPVzxwYpaDez/YY rMAqlAw6al5k9eA2BqxW/9yo7L1LWAWW6et39kh6572k9YxIfm7+hUjDYBla3phDr9q5aRb2kJvR/ nM4RbcnQ==; Received: from rdunlap (helo=localhost) by bombadil.infradead.org with local-esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lNJXU-001RdU-Hv; Fri, 19 Mar 2021 18:08:01 +0000 Date: Fri, 19 Mar 2021 11:08:00 -0700 (PDT) From: Randy Dunlap To: Bhaskar Chowdhury cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] sch_red: Fix a typo In-Reply-To: <20210319044623.20396-1-unixbhaskar@gmail.com> Message-ID: References: <20210319044623.20396-1-unixbhaskar@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Sender: Randy Dunlap X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210319_110800_615482_E7D0A2CA X-CRM114-Status: GOOD ( 12.98 ) Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Fri, 19 Mar 2021, Bhaskar Chowdhury wrote: > > s/recalcultion/recalculation/ > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap > --- > include/net/red.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/net/red.h b/include/net/red.h > index 932f0d79d60c..6b418b69dc48 100644 > --- a/include/net/red.h > +++ b/include/net/red.h > @@ -287,7 +287,7 @@ static inline unsigned long red_calc_qavg_from_idle_time(const struct red_parms > int shift; > > /* > - * The problem: ideally, average length queue recalcultion should > + * The problem: ideally, average length queue recalculation should > * be done over constant clock intervals. This is too expensive, so > * that the calculation is driven by outgoing packets. > * When the queue is idle we have to model this clock by hand. > -- > 2.26.2 > >