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=-9.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 B97AFC4727C for ; Tue, 29 Sep 2020 22:22:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7B1A12075F for ; Tue, 29 Sep 2020 22:22:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728192AbgI2WWS (ORCPT ); Tue, 29 Sep 2020 18:22:18 -0400 Received: from smtprelay0147.hostedemail.com ([216.40.44.147]:40100 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729143AbgI2WWC (ORCPT ); Tue, 29 Sep 2020 18:22:02 -0400 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay02.hostedemail.com (Postfix) with ESMTP id A21001730861; Tue, 29 Sep 2020 22:22:00 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: year47_3509c192718d X-Filterd-Recvd-Size: 3389 Received: from XPS-9350 (047-006-102-041.res.spectrum.com [47.6.102.41]) (Authenticated sender: joe@perches.com) by omf05.hostedemail.com (Postfix) with ESMTPA; Tue, 29 Sep 2020 22:21:58 +0000 (UTC) Message-ID: <3b7457e4efd04865115152636ca65b5dc9cfe0e4.camel@perches.com> Subject: Re: [PATCH 10/20] media: lmedm04: use semicolons rather than commas to separate statements From: Joe Perches To: Julia Lawall Cc: Christophe JAILLET , Malcolm Priestley , Valdis =?UTF-8?Q?Kl=C4=93tnieks?= , Thomas Gleixner , kernel-janitors@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 29 Sep 2020 15:21:57 -0700 In-Reply-To: References: <1601385283-26144-1-git-send-email-Julia.Lawall@inria.fr> <1601385283-26144-11-git-send-email-Julia.Lawall@inria.fr> <8d73748e-be82-4c30-4550-b5f4eecb3055@wanadoo.fr> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.36.4-0ubuntu1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2020-09-29 at 18:44 +0200, Julia Lawall wrote: > On Tue, 29 Sep 2020, Joe Perches wrote: > > On 2020-09-29 09:00, Christophe JAILLET wrote: > > > Le 29/09/2020 à 15:14, Julia Lawall a écrit : > > > > Replace commas with semicolons. Commas introduce unnecessary > > > > variability in the code structure and are hard to see. What is done > > > > is essentially described by the following Coccinelle semantic patch > > > > (http://coccinelle.lip6.fr/): > > > > > > > > // > > > > @@ expression e1,e2; @@ > > > > e1 > > > > -, > > > > +; > > > > e2 > > > > ... when any > > > > // > > > > > > > > Signed-off-by: Julia Lawall > > > > > > > > --- > > > > drivers/media/usb/dvb-usb-v2/lmedm04.c | 2 +- > > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > > > diff --git a/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > b/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > index 5a7a9522d46d..9ddda8d68ee0 100644 > > > > --- a/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > +++ b/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > @@ -391,7 +391,7 @@ static int lme2510_int_read(struct dvb_usb_adapter > > > > *adap) > > > > ep = usb_pipe_endpoint(d->udev, lme_int->lme_urb->pipe); > > > > if (usb_endpoint_type(&ep->desc) == USB_ENDPOINT_XFER_BULK) > > > > - lme_int->lme_urb->pipe = usb_rcvbulkpipe(d->udev, 0xa), > > > > + lme_int->lme_urb->pipe = usb_rcvbulkpipe(d->udev, 0xa); > > > > usb_submit_urb(lme_int->lme_urb, GFP_ATOMIC); > > > > info("INT Interrupt Service Started"); > > > > > > > > > > > Ouch! > > > > > > This one looks like a real issue! > > > > Julia? Did you do this one by hand? This actually changes logic which I did > > not expectthe cocci script to do. > > No, I didn't do it by hand. Did you already send this one? Maybe I > should resend it with a more informative log message. I did not send a patch for this one. Yes, I think you should say you are fixing a likely defect here. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Tue, 29 Sep 2020 22:21:57 +0000 Subject: Re: [PATCH 10/20] media: lmedm04: use semicolons rather than commas to separate statements Message-Id: <3b7457e4efd04865115152636ca65b5dc9cfe0e4.camel@perches.com> List-Id: References: <1601385283-26144-1-git-send-email-Julia.Lawall@inria.fr> <1601385283-26144-11-git-send-email-Julia.Lawall@inria.fr> <8d73748e-be82-4c30-4550-b5f4eecb3055@wanadoo.fr> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable To: Julia Lawall Cc: Christophe JAILLET , Malcolm Priestley , Valdis =?UTF-8?Q?Kl=C4=93tnieks?= , Thomas Gleixner , kernel-janitors@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org On Tue, 2020-09-29 at 18:44 +0200, Julia Lawall wrote: > On Tue, 29 Sep 2020, Joe Perches wrote: > > On 2020-09-29 09:00, Christophe JAILLET wrote: > > > Le 29/09/2020 =E0 15:14, Julia Lawall a =E9crit : > > > > Replace commas with semicolons. Commas introduce unnecessary > > > > variability in the code structure and are hard to see. What is done > > > > is essentially described by the following Coccinelle semantic patch > > > > (http://coccinelle.lip6.fr/): > > > >=20 > > > > // > > > > @@ expression e1,e2; @@ > > > > e1 > > > > -, > > > > +; > > > > e2 > > > > ... when any > > > > // > > > >=20 > > > > Signed-off-by: Julia Lawall > > > >=20 > > > > --- > > > > drivers/media/usb/dvb-usb-v2/lmedm04.c | 2 +- > > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > >=20 > > > > diff --git a/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > b/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > index 5a7a9522d46d..9ddda8d68ee0 100644 > > > > --- a/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > +++ b/drivers/media/usb/dvb-usb-v2/lmedm04.c > > > > @@ -391,7 +391,7 @@ static int lme2510_int_read(struct dvb_usb_adap= ter > > > > *adap) > > > > ep =3D usb_pipe_endpoint(d->udev, lme_int->lme_urb->pipe); > > > > if (usb_endpoint_type(&ep->desc) =3D USB_ENDPOINT_XFER_BULK) > > > > - lme_int->lme_urb->pipe =3D usb_rcvbulkpipe(d->udev, 0xa), > > > > + lme_int->lme_urb->pipe =3D usb_rcvbulkpipe(d->udev, 0xa); > > > > usb_submit_urb(lme_int->lme_urb, GFP_ATOMIC); > > > > info("INT Interrupt Service Started"); > > > >=20 > > > >=20 > > > Ouch! > > >=20 > > > This one looks like a real issue! > >=20 > > Julia? Did you do this one by hand? This actually changes logic which= I did > > not expectthe cocci script to do. >=20 > No, I didn't do it by hand. Did you already send this one? Maybe I > should resend it with a more informative log message. I did not send a patch for this one. Yes, I think you should say you are fixing a likely defect here.