* [PATCH V2] staging: unisys: visorhba - style fix @ 2017-06-17 3:12 Derek Robson 2017-06-19 15:28 ` Kershner, David A 0 siblings, 1 reply; 3+ messages in thread From: Derek Robson @ 2017-06-17 3:12 UTC (permalink / raw) To: david.kershner, gregkh, timothy.sell, david.binder, sameer.wadgaonkar, marcos.souza.org, robsonde Cc: sparmaintainer, devel, linux-kernel Fixed style of permissions to octal. Found using checkpatch Signed-off-by: Derek Robson <robsonde@gmail.com> V1 has vauge subject --- drivers/staging/unisys/visorhba/visorhba_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b/drivers/staging/unisys/visorhba/visorhba_main.c index 2fd31c9762c6..a6e7a6bbc428 100644 --- a/drivers/staging/unisys/visorhba/visorhba_main.c +++ b/drivers/staging/unisys/visorhba/visorhba_main.c @@ -1090,7 +1090,7 @@ static int visorhba_probe(struct visor_device *dev) goto err_scsi_remove_host; } devdata->debugfs_info = - debugfs_create_file("info", S_IRUSR | S_IRGRP, + debugfs_create_file("info", 0440, devdata->debugfs_dir, devdata, &info_debugfs_fops); if (!devdata->debugfs_info) { -- 2.13.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH V2] staging: unisys: visorhba - style fix 2017-06-17 3:12 [PATCH V2] staging: unisys: visorhba - style fix Derek Robson @ 2017-06-19 15:28 ` Kershner, David A 2017-06-19 22:01 ` Tobin C. Harding 0 siblings, 1 reply; 3+ messages in thread From: Kershner, David A @ 2017-06-19 15:28 UTC (permalink / raw) To: Derek Robson, gregkh@linuxfoundation.org, Sell, Timothy C, Binder, David Anthony, Wadgaonkar, Sameer Laxmikant, marcos.souza.org@gmail.com Cc: *S-Par-Maintainer, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org > -----Original Message----- > From: Derek Robson [mailto:robsonde@gmail.com] > Sent: Friday, June 16, 2017 11:13 PM > To: Kershner, David A <David.Kershner@unisys.com>; > gregkh@linuxfoundation.org; Sell, Timothy C <Timothy.Sell@unisys.com>; > Binder, David Anthony <David.Binder@unisys.com>; Wadgaonkar, Sameer > Laxmikant <Sameer.Wadgaonkar@unisys.com>; > marcos.souza.org@gmail.com; robsonde@gmail.com > Cc: *S-Par-Maintainer <SParMaintainer@unisys.com>; > devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org > Subject: [PATCH V2] staging: unisys: visorhba - style fix > > Fixed style of permissions to octal. > Found using checkpatch > > Signed-off-by: Derek Robson <robsonde@gmail.com> I applied it and tested it. Though when I applied it, the V1 comment was included in the patch commit. > > V1 has vauge subject > --- > drivers/staging/unisys/visorhba/visorhba_main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c > b/drivers/staging/unisys/visorhba/visorhba_main.c > index 2fd31c9762c6..a6e7a6bbc428 100644 > --- a/drivers/staging/unisys/visorhba/visorhba_main.c > +++ b/drivers/staging/unisys/visorhba/visorhba_main.c > @@ -1090,7 +1090,7 @@ static int visorhba_probe(struct visor_device *dev) > goto err_scsi_remove_host; > } > devdata->debugfs_info = > - debugfs_create_file("info", S_IRUSR | S_IRGRP, > + debugfs_create_file("info", 0440, > devdata->debugfs_dir, devdata, > &info_debugfs_fops); > if (!devdata->debugfs_info) { > -- > 2.13.0 ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH V2] staging: unisys: visorhba - style fix 2017-06-19 15:28 ` Kershner, David A @ 2017-06-19 22:01 ` Tobin C. Harding 0 siblings, 0 replies; 3+ messages in thread From: Tobin C. Harding @ 2017-06-19 22:01 UTC (permalink / raw) To: Kershner, David A Cc: Derek Robson, gregkh@linuxfoundation.org, Sell, Timothy C, Binder, David Anthony, Wadgaonkar, Sameer Laxmikant, marcos.souza.org@gmail.com, devel@driverdev.osuosl.org, *S-Par-Maintainer, linux-kernel@vger.kernel.org On Mon, Jun 19, 2017 at 03:28:19PM +0000, Kershner, David A wrote: > > > -----Original Message----- > > From: Derek Robson [mailto:robsonde@gmail.com] > > Sent: Friday, June 16, 2017 11:13 PM > > To: Kershner, David A <David.Kershner@unisys.com>; > > gregkh@linuxfoundation.org; Sell, Timothy C <Timothy.Sell@unisys.com>; > > Binder, David Anthony <David.Binder@unisys.com>; Wadgaonkar, Sameer > > Laxmikant <Sameer.Wadgaonkar@unisys.com>; > > marcos.souza.org@gmail.com; robsonde@gmail.com > > Cc: *S-Par-Maintainer <SParMaintainer@unisys.com>; > > devel@driverdev.osuosl.org; linux-kernel@vger.kernel.org > > Subject: [PATCH V2] staging: unisys: visorhba - style fix > > > > Fixed style of permissions to octal. > > Found using checkpatch > > > > Signed-off-by: Derek Robson <robsonde@gmail.com> > > I applied it and tested it. Though when I applied it, the V1 comment was included in the patch commit. Derek, for clarification what David means is that the version notes should go below the dotted line so as not to be included in the patch commit. You may also like to read Documentation/process/submitting-patches.rst for tips on writing your commit log (specifically section 2). > > > > > > V1 has vauge subject > > --- v1 -> v2 - fix vague subject > > drivers/staging/unisys/visorhba/visorhba_main.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c > > b/drivers/staging/unisys/visorhba/visorhba_main.c > > index 2fd31c9762c6..a6e7a6bbc428 100644 > > --- a/drivers/staging/unisys/visorhba/visorhba_main.c > > +++ b/drivers/staging/unisys/visorhba/visorhba_main.c > > @@ -1090,7 +1090,7 @@ static int visorhba_probe(struct visor_device *dev) > > goto err_scsi_remove_host; > > } > > devdata->debugfs_info = > > - debugfs_create_file("info", S_IRUSR | S_IRGRP, > > + debugfs_create_file("info", 0440, > > devdata->debugfs_dir, devdata, > > &info_debugfs_fops); > > if (!devdata->debugfs_info) { > > -- > > 2.13.0 > > _______________________________________________ > devel mailing list > devel@linuxdriverproject.org > http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel Good luck, Tobin. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-06-19 22:01 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-06-17 3:12 [PATCH V2] staging: unisys: visorhba - style fix Derek Robson 2017-06-19 15:28 ` Kershner, David A 2017-06-19 22:01 ` Tobin C. Harding
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox