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=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 C98BDC3A5A3 for ; Tue, 27 Aug 2019 23:12:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9A3A520856 for ; Tue, 27 Aug 2019 23:12:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726252AbfH0XM3 (ORCPT ); Tue, 27 Aug 2019 19:12:29 -0400 Received: from Galois.linutronix.de ([193.142.43.55]:45358 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726065AbfH0XM3 (ORCPT ); Tue, 27 Aug 2019 19:12:29 -0400 Received: from p5de0b6c5.dip0.t-ipconnect.de ([93.224.182.197] helo=nanos) by Galois.linutronix.de with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1i2kdD-0005dr-Ja; Wed, 28 Aug 2019 01:12:07 +0200 Date: Wed, 28 Aug 2019 01:12:06 +0200 (CEST) From: Thomas Gleixner To: Ming Lei cc: LKML , Long Li , Ingo Molnar , Peter Zijlstra , Keith Busch , Jens Axboe , Christoph Hellwig , Sagi Grimberg , John Garry , Hannes Reinecke , linux-nvme@lists.infradead.org, linux-scsi@vger.kernel.org, Daniel Lezcano Subject: Re: [PATCH 1/4] softirq: implement IRQ flood detection mechanism In-Reply-To: <20190827230451.GB5263@ming.t460p> Message-ID: References: <20190827085344.30799-1-ming.lei@redhat.com> <20190827085344.30799-2-ming.lei@redhat.com> <20190827230451.GB5263@ming.t460p> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-scsi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org On Wed, 28 Aug 2019, Ming Lei wrote: > On Tue, Aug 27, 2019 at 06:19:00PM +0200, Thomas Gleixner wrote: > > > We definitely are not going to have a 64bit multiplication and division on > > > every interrupt. Asided of that this breaks 32bit builds all over the place. > > > > That said, we already have infrastructure for something like this in the > > core interrupt code which is optimized to be lightweight in the fast path. > > > > kernel/irq/timings.c > > irq/timings.c is much more complicated, especially it applies EWMA to > compute each irq's average interval. However, we only need it for > do_IRQ() to cover all interrupt & softirq handler. That does not justify yet another ad hoc thingy. > Also CONFIG_IRQ_TIMINGS is usually disabled on distributions. That's not an argument at all. Thanks, tglx