Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1588369 > unrolled thread
| Started by | Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> |
|---|---|
| First post | 2017-02-26 19:00 +0100 |
| Last post | 2017-02-27 01:50 +0100 |
| Articles | 12 — 6 participants |
Back to article view | Back to linux.kernel
[PATCH] staging: bcm2835-audio: Fixed spacing around '&' Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> - 2017-02-26 19:00 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Julia Lawall <julia.lawall@lip6.fr> - 2017-02-26 19:30 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Joe Perches <joe@perches.com> - 2017-02-26 19:40 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Joe Perches <joe@perches.com> - 2017-02-26 20:40 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Julia Lawall <julia.lawall@lip6.fr> - 2017-02-26 21:50 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Joe Perches <joe@perches.com> - 2017-02-26 23:00 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Scott Branden <scott.branden@broadcom.com> - 2017-02-27 01:10 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Julia Lawall <julia.lawall@lip6.fr> - 2017-02-27 07:50 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Dan Carpenter <dan.carpenter@oracle.com> - 2017-02-27 15:50 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Scott Branden <scott.branden@broadcom.com> - 2017-02-27 21:50 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Michael Zoran <mzoran@crowfest.net> - 2017-02-27 23:10 +0100
Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' Julia Lawall <julia.lawall@lip6.fr> - 2017-02-27 01:50 +0100
| From | Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> |
|---|---|
| Date | 2017-02-26 19:00 +0100 |
| Subject | [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfbgZ-1B3-5@gated-at.bofh.it> |
This was reported by checkpatch.pl
Signed-off-by: Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com>
---
drivers/staging/bcm2835-audio/bcm2835-pcm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/bcm2835-audio/bcm2835-pcm.c
index 9e79236..328bee4a 100644
--- a/drivers/staging/bcm2835-audio/bcm2835-pcm.c
+++ b/drivers/staging/bcm2835-audio/bcm2835-pcm.c
@@ -91,7 +91,7 @@ void bcm2835_playback_fifo(struct bcm2835_alsa_stream *alsa_stream)
frames_to_bytes(alsa_stream->substream->runtime, alsa_stream->substream->runtime->status->hw_ptr),
new_period);
if (alsa_stream->buffer_size) {
- alsa_stream->pos += consumed &~(1 << 30);
+ alsa_stream->pos += consumed & ~(1 << 30);
alsa_stream->pos %= alsa_stream->buffer_size;
}
--
1.9.1
[toc] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2017-02-26 19:30 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfbK2-20f-3@gated-at.bofh.it> |
| In reply to | #1588369 |
On Sun, 26 Feb 2017, Narcisa Ana Maria Vasile wrote:
> This was reported by checkpatch.pl
>
> Signed-off-by: Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Actually, the outreachy tutorial says not to send patches to mailing
lists, only to people (except in the case of IIO, where the maintainers
asked for patches to be sent to mailing lists as well). The
get_maintainer command to use is shown here:
https://kernelnewbies.org/FirstKernelPatch#submit_a_patch
> ---
> drivers/staging/bcm2835-audio/bcm2835-pcm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/bcm2835-audio/bcm2835-pcm.c
> index 9e79236..328bee4a 100644
> --- a/drivers/staging/bcm2835-audio/bcm2835-pcm.c
> +++ b/drivers/staging/bcm2835-audio/bcm2835-pcm.c
> @@ -91,7 +91,7 @@ void bcm2835_playback_fifo(struct bcm2835_alsa_stream *alsa_stream)
> frames_to_bytes(alsa_stream->substream->runtime, alsa_stream->substream->runtime->status->hw_ptr),
> new_period);
> if (alsa_stream->buffer_size) {
> - alsa_stream->pos += consumed &~(1 << 30);
> + alsa_stream->pos += consumed & ~(1 << 30);
> alsa_stream->pos %= alsa_stream->buffer_size;
> }
>
> --
> 1.9.1
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/1488131271-2908-1-git-send-email-narcisaanamaria12%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-02-26 19:40 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfbTJ-23I-37@gated-at.bofh.it> |
| In reply to | #1588371 |
On Sun, 2017-02-26 at 19:03 +0100, Julia Lawall wrote: > > On Sun, 26 Feb 2017, Narcisa Ana Maria Vasile wrote: > > > This was reported by checkpatch.pl > > > > Signed-off-by: Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> > > Acked-by: Julia Lawall <julia.lawall@lip6.fr> > > Actually, the outreachy tutorial says not to send patches to mailing > lists, only to people (except in the case of IIO, where the maintainers > asked for patches to be sent to mailing lists as well). The > get_maintainer command to use is shown here: > > https://kernelnewbies.org/FirstKernelPatch#submit_a_patch That doesn't make any sense to me. Mailing lists _should_ be copied on patch submissions. And the displayed output of that command-line does not match the actual behavior. The command-line is: $ perl scripts/get_maintainer.pl --separator , --nokeywords --nogit --nogit-fallback --norolestats --nol -f drivers/staging/most/aim-sound/sound.c And the output shown is: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,devel@driverdev.osuosl.org,linux-kernel@vger.kernel.org That's not what's actually output by that command-line as it would not show the mailing list. $ perl scripts/get_maintainer.pl --separator , --nokeywords --nogit --nogit-fallback --norolestats --nol -f drivers/staging/most/aim-sound/sound.c Greg Kroah-Hartman <gregkh@linuxfoundation.org>
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-02-26 20:40 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfcPM-2J6-21@gated-at.bofh.it> |
| In reply to | #1588376 |
On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > On Sun, 26 Feb 2017, Joe Perches wrote: > > Mailing lists _should_ be copied on patch submissions. > > The idea of outreachy is that it should be a place for people to get > started without too much criticism from the outside. Originally, only the > outreachy mailing list received patches. But staging maintainers were > confused to have their drivers receiving patches that they had not seen. > So we expanded it to maintainers. That also doesn't make much sense as patches should not be applied that have not reached a mailing list for review. As long as initial outreachy patches are not applied and are just for internal review by any outside person but the outreachy list and are not be applied by maintainers, then perhaps it's best if neither maintainers nor lists are cc'd on the patches. And the link you sent is for newbies, not for outreachy. The "don't cc lists" --nol use is inappropriate there.
[toc] | [prev] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2017-02-26 21:50 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfdVw-3rU-7@gated-at.bofh.it> |
| In reply to | #1588382 |
On Sun, 26 Feb 2017, Joe Perches wrote: > On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > > On Sun, 26 Feb 2017, Joe Perches wrote: > > > Mailing lists _should_ be copied on patch submissions. > > > > The idea of outreachy is that it should be a place for people to get > > started without too much criticism from the outside. Originally, only the > > outreachy mailing list received patches. But staging maintainers were > > confused to have their drivers receiving patches that they had not seen. > > So we expanded it to maintainers. > > That also doesn't make much sense as patches > should not be applied that have not reached > a mailing list for review. > > As long as initial outreachy patches are not > applied and are just for internal review by > any outside person but the outreachy list and > are not be applied by maintainers, then perhaps > it's best if neither maintainers nor lists are > cc'd on the patches. The patches are applied by Greg. Greg suggested the policy of adding maintainers but not including mailing lists. I'll let him consider whether the policy should be changed. > And the link you sent is for newbies, not for > outreachy. The link is part of the outreachy tutorial, which is hosted by the kernelnewbies website. julia > > The "don't cc lists" --nol use is inappropriate > there. > >
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-02-26 23:00 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tff1f-4dm-3@gated-at.bofh.it> |
| In reply to | #1588396 |
On Sun, 2017-02-26 at 20:40 +0100, Julia Lawall wrote: > On Sun, 26 Feb 2017, Joe Perches wrote: > > On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > > > On Sun, 26 Feb 2017, Joe Perches wrot > > > > Mailing lists _should_ be copied on patch submissions. > > > The idea of outreachy is that it should be a place for people to get > > > started without too much criticism from the outside. Originally, only the > > > outreachy mailing list received patches. But staging maintainers were > > > confused to have their drivers receiving patches that they had not seen. > > > So we expanded it to maintainers. > > > > That also doesn't make much sense as patches > > should not be applied that have not reached > > a mailing list for review. > > > > As long as initial outreachy patches are not > > applied and are just for internal review by > > any outside person but the outreachy list and > > are not be applied by maintainers, then perhaps > > it's best if neither maintainers nor lists are > > cc'd on the patches. > > The patches are applied by Greg. Greg suggested the policy of adding > maintainers but not including mailing lists. I'll let him consider > whether the policy should be changed. Well, I will comment on patches sent to the kernel list. I'm not subscribed to outreachy and I don't want to be subscribed to that list either.
[toc] | [prev] | [next] | [standalone]
| From | Scott Branden <scott.branden@broadcom.com> |
|---|---|
| Date | 2017-02-27 01:10 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfh33-5RS-5@gated-at.bofh.it> |
| In reply to | #1588406 |
On 17-02-26 01:56 PM, Joe Perches wrote: > On Sun, 2017-02-26 at 20:40 +0100, Julia Lawall wrote: >> On Sun, 26 Feb 2017, Joe Perches wrote: >>> On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: >>>> On Sun, 26 Feb 2017, Joe Perches wrot >>>>> Mailing lists _should_ be copied on patch submissions. >>>> The idea of outreachy is that it should be a place for people to get >>>> started without too much criticism from the outside. Originally, only the >>>> outreachy mailing list received patches. But staging maintainers were >>>> confused to have their drivers receiving patches that they had not seen. >>>> So we expanded it to maintainers. >>> >>> That also doesn't make much sense as patches >>> should not be applied that have not reached >>> a mailing list for review. >>> >>> As long as initial outreachy patches are not >>> applied and are just for internal review by >>> any outside person but the outreachy list and >>> are not be applied by maintainers, then perhaps >>> it's best if neither maintainers nor lists are >>> cc'd on the patches. >> >> The patches are applied by Greg. Greg suggested the policy of adding >> maintainers but not including mailing lists. I'll let him consider >> whether the policy should be changed. > > Well, I will comment on patches sent to the kernel list. > > I'm not subscribed to outreachy and I don't want to be > subscribed to that list either. > I would prefer this outreachy work uses their own mailing list and reviews their patches first. Then once they have everything sorted out they send out the patch series to the proper maintainers/mailing lists. That way we're not spammed with all these emails of people as they are learning how to format and send out proper patches. Thanks, Scott
[toc] | [prev] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2017-02-27 07:50 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfni9-1BB-1@gated-at.bofh.it> |
| In reply to | #1588423 |
On Sun, 26 Feb 2017, Scott Branden wrote: > > > On 17-02-26 01:56 PM, Joe Perches wrote: > > On Sun, 2017-02-26 at 20:40 +0100, Julia Lawall wrote: > > > On Sun, 26 Feb 2017, Joe Perches wrote: > > > > On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > > > > > On Sun, 26 Feb 2017, Joe Perches wrot > > > > > > Mailing lists _should_ be copied on patch submissions. > > > > > The idea of outreachy is that it should be a place for people to get > > > > > started without too much criticism from the outside. Originally, only > > > > > the > > > > > outreachy mailing list received patches. But staging maintainers were > > > > > confused to have their drivers receiving patches that they had not > > > > > seen. > > > > > So we expanded it to maintainers. > > > > > > > > That also doesn't make much sense as patches > > > > should not be applied that have not reached > > > > a mailing list for review. > > > > > > > > As long as initial outreachy patches are not > > > > applied and are just for internal review by > > > > any outside person but the outreachy list and > > > > are not be applied by maintainers, then perhaps > > > > it's best if neither maintainers nor lists are > > > > cc'd on the patches. > > > > > > The patches are applied by Greg. Greg suggested the policy of adding > > > maintainers but not including mailing lists. I'll let him consider > > > whether the policy should be changed. > > > > Well, I will comment on patches sent to the kernel list. > > > > I'm not subscribed to outreachy and I don't want to be > > subscribed to that list either. > > > I would prefer this outreachy work uses their own mailing list and reviews > their patches first. Then once they have everything sorted out they send out > the patch series to the proper maintainers/mailing lists. That way we're not > spammed with all these emails of people as they are learning how to format and > send out proper patches. If you consider that you are getting too much outreachy mail at the moment, just let me know what subsystem you want me to add an exception for. thanks, julia
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2017-02-27 15:50 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfuMG-6Wf-7@gated-at.bofh.it> |
| In reply to | #1588522 |
On Mon, Feb 27, 2017 at 07:25:30AM +0100, Julia Lawall wrote: > > > On Sun, 26 Feb 2017, Scott Branden wrote: > > > > > > > On 17-02-26 01:56 PM, Joe Perches wrote: > > > On Sun, 2017-02-26 at 20:40 +0100, Julia Lawall wrote: > > > > On Sun, 26 Feb 2017, Joe Perches wrote: > > > > > On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > > > > > > On Sun, 26 Feb 2017, Joe Perches wrot > > > > > > > Mailing lists _should_ be copied on patch submissions. > > > > > > The idea of outreachy is that it should be a place for people to get > > > > > > started without too much criticism from the outside. Originally, only > > > > > > the > > > > > > outreachy mailing list received patches. But staging maintainers were > > > > > > confused to have their drivers receiving patches that they had not > > > > > > seen. > > > > > > So we expanded it to maintainers. > > > > > It was mostly me being annoyed because outreachy reviews are not that good frankly. We just were just looking at outreachy code from 2013 where they "fixed" sparse endian notations by removing the endian conversions. It was so obviously wrong just from reading the changelog before you even got to the patch itself... > > > > > That also doesn't make much sense as patches > > > > > should not be applied that have not reached > > > > > a mailing list for review. > > > > > > > > > > As long as initial outreachy patches are not > > > > > applied and are just for internal review by > > > > > any outside person but the outreachy list and > > > > > are not be applied by maintainers, then perhaps > > > > > it's best if neither maintainers nor lists are > > > > > cc'd on the patches. > > > > > > > > The patches are applied by Greg. Greg suggested the policy of adding > > > > maintainers but not including mailing lists. I'll let him consider > > > > whether the policy should be changed. > > > > > > Well, I will comment on patches sent to the kernel list. > > > > > > I'm not subscribed to outreachy and I don't want to be > > > subscribed to that list either. > > > > > I would prefer this outreachy work uses their own mailing list and reviews > > their patches first. Then once they have everything sorted out they send out > > the patch series to the proper maintainers/mailing lists. That way we're not > > spammed with all these emails of people as they are learning how to format and > > send out proper patches. > Outreachy emails are not really worse than normal staging patches so I don't mind the spam. But it would be good if driver-devel were always CC'd on the final patch. I know Greg feels differently. regards, dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | Scott Branden <scott.branden@broadcom.com> |
|---|---|
| Date | 2017-02-27 21:50 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfAp3-2r5-7@gated-at.bofh.it> |
| In reply to | #1588522 |
Hi Julia, On 17-02-26 10:25 PM, Julia Lawall wrote: > > > On Sun, 26 Feb 2017, Scott Branden wrote: > >> >> >> On 17-02-26 01:56 PM, Joe Perches wrote: >>> On Sun, 2017-02-26 at 20:40 +0100, Julia Lawall wrote: >>>> On Sun, 26 Feb 2017, Joe Perches wrote: >>>>> On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: >>>>>> On Sun, 26 Feb 2017, Joe Perches wrot >>>>>>> Mailing lists _should_ be copied on patch submissions. >>>>>> The idea of outreachy is that it should be a place for people to get >>>>>> started without too much criticism from the outside. Originally, only >>>>>> the >>>>>> outreachy mailing list received patches. But staging maintainers were >>>>>> confused to have their drivers receiving patches that they had not >>>>>> seen. >>>>>> So we expanded it to maintainers. >>>>> >>>>> That also doesn't make much sense as patches >>>>> should not be applied that have not reached >>>>> a mailing list for review. >>>>> >>>>> As long as initial outreachy patches are not >>>>> applied and are just for internal review by >>>>> any outside person but the outreachy list and >>>>> are not be applied by maintainers, then perhaps >>>>> it's best if neither maintainers nor lists are >>>>> cc'd on the patches. >>>> >>>> The patches are applied by Greg. Greg suggested the policy of adding >>>> maintainers but not including mailing lists. I'll let him consider >>>> whether the policy should be changed. >>> >>> Well, I will comment on patches sent to the kernel list. >>> >>> I'm not subscribed to outreachy and I don't want to be >>> subscribed to that list either. >>> >> I would prefer this outreachy work uses their own mailing list and reviews >> their patches first. Then once they have everything sorted out they send out >> the patch series to the proper maintainers/mailing lists. That way we're not >> spammed with all these emails of people as they are learning how to format and >> send out proper patches. > > If you consider that you are getting too much outreachy mail at the > moment, just let me know what subsystem you want me to add an exception > for. The emails seem to mostly be coming with bcm2835-audio. > > thanks, > julia Thanks, Scott >
[toc] | [prev] | [next] | [standalone]
| From | Michael Zoran <mzoran@crowfest.net> |
|---|---|
| Date | 2017-02-27 23:10 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfBEt-3tq-5@gated-at.bofh.it> |
| In reply to | #1588932 |
On Mon, 2017-02-27 at 12:35 -0800, Scott Branden wrote: > > > Hi Julia, > > On 17-02-26 10:25 PM, Julia Lawall wrote: > > > > If you consider that you are getting too much outreachy mail at the > > moment, just let me know what subsystem you want me to add an > > exception > > for. > > The emails seem to mostly be coming with bcm2835-audio. > > > > thanks, > > julia > > Thanks, > Scott I submitted the driver to stagging, so I feel a bit responsible for this. I personally don't mind e-mails like this since people have to get started somehow, and e-mail is rather easy to ignore or delete... Perhaps it would make sense to either update the maintainer list for this driver or move the driver somewhere else in staging? I was looking at the maintainer list for bcm2835, and it already marks vc04_services as part of the bcm2835 files. Perhaps another mark should be added or the driver moved under vc04_services?
[toc] | [prev] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2017-02-27 01:50 +0100 |
| Subject | Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&' |
| Message-ID | <tfcPM-2J6-23@gated-at.bofh.it> |
| In reply to | #1588376 |
On Sun, 26 Feb 2017, Joe Perches wrote: > On Sun, 2017-02-26 at 19:03 +0100, Julia Lawall wrote: > > > > On Sun, 26 Feb 2017, Narcisa Ana Maria Vasile wrote: > > > > > This was reported by checkpatch.pl > > > > > > Signed-off-by: Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> > > > > Acked-by: Julia Lawall <julia.lawall@lip6.fr> > > > > Actually, the outreachy tutorial says not to send patches to mailing > > lists, only to people (except in the case of IIO, where the maintainers > > asked for patches to be sent to mailing lists as well). The > > get_maintainer command to use is shown here: > > > > https://kernelnewbies.org/FirstKernelPatch#submit_a_patch > > That doesn't make any sense to me. > Mailing lists _should_ be copied on patch submissions. The idea of outreachy is that it should be a place for people to get started without too much criticism from the outside. Originally, only the outreachy mailing list received patches. But staging maintainers were confused to have their drivers receiving patches that they had not seen. So we expanded it to maintainers. > > And the displayed output of that command-line does not match > the actual behavior. > > The command-line is: > $ perl scripts/get_maintainer.pl --separator , --nokeywords --nogit --nogit-fallback --norolestats --nol -f drivers/staging/most/aim-sound/sound.c > > And the output shown is: > Greg Kroah-Hartman <gregkh@linuxfoundation.org>,devel@driverdev.osuosl.org,linux-kernel@vger.kernel.org > > That's not what's actually output by that command-line > as it would not show the mailing list. > > $ perl scripts/get_maintainer.pl --separator , --nokeywords --nogit --nogit-fallback --norolestats --nol -f drivers/staging/most/aim-sound/sound.c > Greg Kroah-Hartman <gregkh@linuxfoundation.org> Thanks for the report, I will fix the output. julia > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/1488134072.9188.3.camel%40perches.com. > For more options, visit https://groups.google.com/d/optout. >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web