Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp6787762pxb; Wed, 17 Feb 2021 13:30:36 -0800 (PST) X-Google-Smtp-Source: ABdhPJyyARf7LEFfvYDGODvLSgVj81CgpA14QRK7p6LbSkZjmWiWMDyC3FoKjVLWwROeZan3CyCU X-Received: by 2002:a05:6402:d0a:: with SMTP id eb10mr762071edb.249.1613597436123; Wed, 17 Feb 2021 13:30:36 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1613597436; cv=none; d=google.com; s=arc-20160816; b=GvfNVbpUkkg5BFsYq2OjZ+omeheV0b4PfLma+TggG50dvTVS3ElQ3MBGJhW4TxGDsa i6Ozm4jaTBC+KytmgPUVeqI+TJmD/suKmyOE1fmcedIfWXRWBdevhlZia+yL6zpExaiT BKd+fjV/c1gBOZoDalfVA66de3xPtdfmtTD3bEvSECV/4jmcpoV0489teeXHHSEavoy/ lPff439RCpEBgsLnpBKbPtfjDnxR9j6Ytu390KBbjWhjgBq6Nma9DZftBBwuoKoJR4J2 u9el3KiOBzh6SMxbLbC0HePYhPFN75hIn6PRz3suKrQxnHgObJsa2lOn8lxkM/Ku+rdB VGJQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:user-agent:references:message-id :in-reply-to:subject:cc:to:from:date; bh=ZCWDjmj2OVuFezk0U6kmDvbSC/pdFCvZ/UH275j6W+s=; b=VMrqbAZvbpHdRjgIuqus/HGzcI+CL3gLr555LevqZaFHczQAmSni56HMM0snbWdjug 04Vf0jhyxWNPw9/GYii9rv2jjMqEzNvZrqor+lS3EVQko1+JnbnJknhvr4eNyhoUJiFp pE/4zrLhkbHWowghAfzYis33/XCPh/UG60HT8BxMCePPv0c482Fqlv8gbJ+gprSaRBu6 0uxvwGUbhqE7FpxJSECFSlBaVGTFYYKV9XrPOAhIk+emzKpUr6t0ZdDRt0RdDfGgqB7t dFtzefuCIJdYmJo1wfmy/Cw0lY7NZv9FfQJ7uOe/69X/cr3DwaZfD0NeZK2x+iTyLsyC V4hg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p24si2304158ejy.672.2021.02.17.13.30.06; Wed, 17 Feb 2021 13:30:36 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232763AbhBQVSu (ORCPT + 99 others); Wed, 17 Feb 2021 16:18:50 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:57059 "EHLO mail3-relais-sop.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230292AbhBQVSk (ORCPT ); Wed, 17 Feb 2021 16:18:40 -0500 X-IronPort-AV: E=Sophos;i="5.81,185,1610406000"; d="scan'208";a="373371849" Received: from 173.121.68.85.rev.sfr.net (HELO hadrien) ([85.68.121.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Feb 2021 22:17:56 +0100 Date: Wed, 17 Feb 2021 22:17:56 +0100 (CET) From: Julia Lawall X-X-Sender: jll@hadrien To: Denis Efremov cc: Julia Lawall , cocci@systeme.lip6.fr, linux-kernel@vger.kernel.org Subject: Re: [PATCH] coccinelle: misc: add minmax script In-Reply-To: <20210216160326.1341741-1-efremov@linux.com> Message-ID: References: <20210216160326.1341741-1-efremov@linux.com> User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 16 Feb 2021, Denis Efremov wrote: > Check for opencoded min(), max() implementations. Some cases that could be improved: diff -u -p a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c @@ -1195,7 +1195,7 @@ static ssize_t ls_level_store(struct dev if (rv < 0) return rv; - value = (0 < value) ? ((15 < value) ? 15 : value) : 0; + value = (0 < value) ? (min(15, value)) : 0; /* 0 <= value <= 15 */ asus_als_level(asus, value); diff -u -p a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c --- a/sound/pci/ctxfi/ctatc.c +++ b/sound/pci/ctxfi/ctatc.c @@ -382,7 +382,7 @@ static int atc_pcm_playback_start(struct apcm->started = 1; max_cisz = src->multi * src->rsc.msr; - max_cisz = 0x80 * (max_cisz < 8 ? max_cisz : 8); + max_cisz = 0x80 * (min(max_cisz, 8)); > +func(...) > +{ > + ... when any > +* (x cmp y) ?@p x : y > + ... when any > +} In all cases, this would be more efficient as: func(...) { <... * (x cmp y) ?@p x : y ...> } There is an optimization that causes this to be just a search through the nodes of the control-flow graph, rather than following the actual control flow from the beginning of the function to the end. > +@script:python depends on report@ > +p << rmax.p; > +@@ > + > +coccilib.report.print_report(p[0], "WARNING opportunity for max()") > + > +@script:python depends on org@ > +p << rmax.p; > +@@ > + > +coccilib.report.print_todo(p[0], "WARNING opportunity for max()") All of the org cases should be coccilib.org, not coccilib.report. julia