diff for duplicates of <alpine.DEB.2.20.1703021618120.3414@hadrien> diff --git a/a/1.txt b/N1/1.txt index e9226ce..cba1515 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -15,59 +15,59 @@ On Thu, 2 Mar 2017, SIMRAN SINGHAL wrote: > Lawall wrote: > > > > -> > On Thu, 2 Mar 2017, simran singhal wrote: +> > ᅵ ᅵ ᅵ On Thu, 2 Mar 2017, simran singhal wrote: > > -> > > Resolve strict checkpatch USLEEP_RANGE checks by +> > ᅵ ᅵ ᅵ > Resolve strict checkpatch USLEEP_RANGE checks by > converting -> > delays and -> > > sleeps as described in -> > ./Documentation/timers/timers-howto.txt. -> > > -> > > CHECK: usleep_range is preferred over udelay; see -> > Documentation/ -> > > timers/timers-howto.txt -> > > -> > > Signed-off-by: simran singhal <singhal...@gmail.com> -> > > --- -> > > drivers/staging/nvec/nvec.c | 4 ++-- -> > > 1 file changed, 2 insertions(+), 2 deletions(-) -> > > -> > > diff --git a/drivers/staging/nvec/nvec.c -> > b/drivers/staging/nvec/nvec.c -> > > index c1feccf..cd35e64 100644 -> > > --- a/drivers/staging/nvec/nvec.c -> > > +++ b/drivers/staging/nvec/nvec.c -> > > @@ -631,7 +631,7 @@ static irqreturn_t +> > ᅵ ᅵ ᅵ delays and +> > ᅵ ᅵ ᅵ > sleeps as described in +> > ᅵ ᅵ ᅵ ./Documentation/timers/timers-howto.txt. +> > ᅵ ᅵ ᅵ > +> > ᅵ ᅵ ᅵ > CHECK: usleep_range is preferred over udelay; see +> > ᅵ ᅵ ᅵ Documentation/ +> > ᅵ ᅵ ᅵ > timers/timers-howto.txt +> > ᅵ ᅵ ᅵ > +> > ᅵ ᅵ ᅵ > Signed-off-by: simran singhal <singhal...@gmail.com> +> > ᅵ ᅵ ᅵ > --- +> > ᅵ ᅵ ᅵ > ᅵdrivers/staging/nvec/nvec.c | 4 ++-- +> > ᅵ ᅵ ᅵ > ᅵ1 file changed, 2 insertions(+), 2 deletions(-) +> > ᅵ ᅵ ᅵ > +> > ᅵ ᅵ ᅵ > diff --git a/drivers/staging/nvec/nvec.c +> > ᅵ ᅵ ᅵ b/drivers/staging/nvec/nvec.c +> > ᅵ ᅵ ᅵ > index c1feccf..cd35e64 100644 +> > ᅵ ᅵ ᅵ > --- a/drivers/staging/nvec/nvec.c +> > ᅵ ᅵ ᅵ > +++ b/drivers/staging/nvec/nvec.c +> > ᅵ ᅵ ᅵ > @@ -631,7 +631,7 @@ static irqreturn_t > nvec_interrupt(int irq, -> > void *dev) -> > > break; -> > > case 2: /* first byte after +> > ᅵ ᅵ ᅵ void *dev) +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵbreak; +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵcase 2:ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ/* first byte after > command */ -> > > if (status == (I2C_SL_IRQ | RNW | +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵif (status == (I2C_SL_IRQ | RNW | > RCVD)) { -> > > - udelay(33); -> > > + usleep_range(33, 100); +> > ᅵ ᅵ ᅵ > -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵudelay(33); +> > ᅵ ᅵ ᅵ > +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵusleep_range(33, 100); > > -> > How did you choose the upper limit. +> > ᅵ ᅵ ᅵ How did you choose the upper limit. > > -> > I believe that Greg previously suggested not to make +> > ᅵ ᅵ ᅵ I believe that Greg previously suggested not to make > these -> > changes if you -> > have no way to test them. +> > ᅵ ᅵ ᅵ changes if you +> > ᅵ ᅵ ᅵ have no way to test them. > > -> > Julia, After going through the reply given by Nicholas Mc -> Guire +> > Julia, After going through the reply given byᅵNicholas Mc +> Guireᅵ > > > https://www.mail-archive.com/kernelnewbies@kernelnewbies.org/msg16464.html > > in this reply he has mentioned that even the range of 10 > microsecond is > > enough, -> > so I prefer to take 100 as upper limit. +> > so I prefer to take 100 as upper limit. ᅵ > > Than you for the link. > > It looks like he suggests to change 33 to 30-40, not to 33-100. -> In any +> ᅵIn any > case, you have three choices for this kind of issue: > 1. Don't make the change, because you can't test the result > 2. Make the change, and explain the commit log what your @@ -78,14 +78,14 @@ On Thu, 2 Mar 2017, SIMRAN SINGHAL wrote: > concrete > to start a discussion. > -> But your preference is not a suitable justification. The +> But your preference is not a suitable justification. ᅵThe > hardware does > something, and the choice can only really be made by the person > who knows > what it does. > -> -> Thanks, +> ᅵ +> Thanks,ᅵ > Julia I'll keep this in mind from next time. > > I choose the range from 33 to 100 for being on more safer side. @@ -99,50 +99,50 @@ julia > > julia > -> > +> > ᅵ > > Simran > > -> > julia +> > ᅵ ᅵ ᅵ julia > > > > -> > > if (nvec->rx->data[0] != +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵif (nvec->rx->data[0] != > 0x01) { -> > > dev_err(nvec->dev, -> > > "Read without +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵdev_err(nvec->dev, +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ"Read without > prior -> > read command\n"); -> > > @@ -718,7 +718,7 @@ static irqreturn_t +> > ᅵ ᅵ ᅵ read command\n"); +> > ᅵ ᅵ ᅵ > @@ -718,7 +718,7 @@ static irqreturn_t > nvec_interrupt(int irq, -> > void *dev) -> > > * We experience less incomplete messages +> > ᅵ ᅵ ᅵ void *dev) +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵ * We experience less incomplete messages > with this -> > delay than without -> > > * it, but we don't know why. Help is +> > ᅵ ᅵ ᅵ delay than without +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵ * it, but we don't know why. Help is > appreciated. -> > > */ -> > > - udelay(100); -> > > + usleep_range(100, 200); -> > > -> > > return IRQ_HANDLED; -> > > } -> > > -- -> > > 2.7.4 -> > > -> > > -- -> > > You received this message because you are subscribed +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵ */ +> > ᅵ ᅵ ᅵ > -ᅵᅵᅵᅵᅵᅵᅵᅵudelay(100); +> > ᅵ ᅵ ᅵ > +ᅵᅵᅵᅵᅵᅵᅵᅵusleep_range(100, 200); +> > ᅵ ᅵ ᅵ > +> > ᅵ ᅵ ᅵ > ᅵᅵᅵᅵᅵᅵᅵᅵᅵreturn IRQ_HANDLED; +> > ᅵ ᅵ ᅵ > ᅵ} +> > ᅵ ᅵ ᅵ > -- +> > ᅵ ᅵ ᅵ > 2.7.4 +> > ᅵ ᅵ ᅵ > +> > ᅵ ᅵ ᅵ > -- +> > ᅵ ᅵ ᅵ > You received this message because you are subscribed > to the -> > Google Groups "outreachy-kernel" group. -> > > To unsubscribe from this group and stop receiving +> > ᅵ ᅵ ᅵ Google Groups "outreachy-kernel" group. +> > ᅵ ᅵ ᅵ > To unsubscribe from this group and stop receiving > emails from -> > it, send an email to outreachy-kern...@googlegroups.com. -> > > To post to this group, send email to -> > outreach...@googlegroups.com. -> > > To view this discussion on the webvisithttps://groups.google.com/d/msgid/outreachy-kernel/20170302142418.GA16 +> > ᅵ ᅵ ᅵ it, send an email to outreachy-kern...@googlegroups.com. +> > ᅵ ᅵ ᅵ > To post to this group, send email to +> > ᅵ ᅵ ᅵ outreach...@googlegroups.com. +> > ᅵ ᅵ ᅵ > To view this discussion on the webvisithttps://groups.google.com/d/msgid/outreachy-kernel/20170302142418.GA16 > 773%4 -> > 0singhal-Inspiron-5558. -> > > For more options, visit +> > ᅵ ᅵ ᅵ 0singhal-Inspiron-5558. +> > ᅵ ᅵ ᅵ > For more options, visit > https://groups.google.com/d/optout. -> > > +> > ᅵ ᅵ ᅵ > > > > > -- > > You received this message because you are subscribed to the diff --git a/a/2.hdr b/a/2.hdr deleted file mode 100644 index 4b86001..0000000 --- a/a/2.hdr +++ /dev/null @@ -1,4 +0,0 @@ -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Content-Disposition: inline diff --git a/a/2.txt b/a/2.txt deleted file mode 100644 index 8d97bc0..0000000 --- a/a/2.txt +++ /dev/null @@ -1,4 +0,0 @@ -_______________________________________________ -devel mailing list -devel@linuxdriverproject.org -http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel diff --git a/a/content_digest b/N1/content_digest index 60c316c..dc6ff60 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -7,12 +7,13 @@ "Subject\0Re: [Outreachy kernel] [PATCH] staging: nvec: cleanup USLEEP_RANGE checkpatch checks\0" "Date\0Thu, 2 Mar 2017 16:18:56 +0100 (CET)\0" "To\0SIMRAN SINGHAL <singhalsimran0@gmail.com>\0" - "Cc\0devel@driverdev.osuosl.org" + "Cc\0outreachy-kernel <outreachy-kernel@googlegroups.com>" + marvin24@gmx.de gregkh@linuxfoundation.org - linux-kernel@vger.kernel.org - outreachy-kernel <outreachy-kernel@googlegroups.com> + ac100@lists.launchpad.net linux-tegra@vger.kernel.org - " ac100@lists.launchpad.net\0" + devel@driverdev.osuosl.org + " linux-kernel@vger.kernel.org\0" "\01:1\0" "b\0" "\n" @@ -32,59 +33,59 @@ "> Lawall wrote:\n" "> >\n" "> >\n" - "> > \302\240 \302\240 \302\240 On Thu, 2 Mar 2017, simran singhal wrote:\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 On Thu, 2 Mar 2017, simran singhal wrote:\n" "> >\n" - "> > \302\240 \302\240 \302\240 > Resolve strict checkpatch USLEEP_RANGE checks by\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > Resolve strict checkpatch USLEEP_RANGE checks by\n" "> converting\n" - "> > \302\240 \302\240 \302\240 delays and\n" - "> > \302\240 \302\240 \302\240 > sleeps as described in\n" - "> > \302\240 \302\240 \302\240 ./Documentation/timers/timers-howto.txt.\n" - "> > \302\240 \302\240 \302\240 >\n" - "> > \302\240 \302\240 \302\240 > CHECK: usleep_range is preferred over udelay; see\n" - "> > \302\240 \302\240 \302\240 Documentation/\n" - "> > \302\240 \302\240 \302\240 > timers/timers-howto.txt\n" - "> > \302\240 \302\240 \302\240 >\n" - "> > \302\240 \302\240 \302\240 > Signed-off-by: simran singhal <singhal...@gmail.com>\n" - "> > \302\240 \302\240 \302\240 > ---\n" - "> > \302\240 \302\240 \302\240 > \302\240drivers/staging/nvec/nvec.c | 4 ++--\n" - "> > \302\240 \302\240 \302\240 > \302\2401 file changed, 2 insertions(+), 2 deletions(-)\n" - "> > \302\240 \302\240 \302\240 >\n" - "> > \302\240 \302\240 \302\240 > diff --git a/drivers/staging/nvec/nvec.c\n" - "> > \302\240 \302\240 \302\240 b/drivers/staging/nvec/nvec.c\n" - "> > \302\240 \302\240 \302\240 > index c1feccf..cd35e64 100644\n" - "> > \302\240 \302\240 \302\240 > --- a/drivers/staging/nvec/nvec.c\n" - "> > \302\240 \302\240 \302\240 > +++ b/drivers/staging/nvec/nvec.c\n" - "> > \302\240 \302\240 \302\240 > @@ -631,7 +631,7 @@ static irqreturn_t\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 delays and\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > sleeps as described in\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 ./Documentation/timers/timers-howto.txt.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > CHECK: usleep_range is preferred over udelay; see\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 Documentation/\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > timers/timers-howto.txt\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > Signed-off-by: simran singhal <singhal...@gmail.com>\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > ---\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223drivers/staging/nvec/nvec.c | 4 ++--\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\2231 file changed, 2 insertions(+), 2 deletions(-)\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > diff --git a/drivers/staging/nvec/nvec.c\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 b/drivers/staging/nvec/nvec.c\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > index c1feccf..cd35e64 100644\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > --- a/drivers/staging/nvec/nvec.c\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > +++ b/drivers/staging/nvec/nvec.c\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > @@ -631,7 +631,7 @@ static irqreturn_t\n" "> nvec_interrupt(int irq,\n" - "> > \302\240 \302\240 \302\240 void *dev)\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240break;\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240case 2:\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240/* first byte after\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 void *dev)\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223break;\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223case 2:\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223/* first byte after\n" "> command */\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (status == (I2C_SL_IRQ | RNW |\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223if (status == (I2C_SL_IRQ | RNW |\n" "> RCVD)) {\n" - "> > \302\240 \302\240 \302\240 > -\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240udelay(33);\n" - "> > \302\240 \302\240 \302\240 > +\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240usleep_range(33, 100);\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > -\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223udelay(33);\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > +\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223usleep_range(33, 100);\n" "> >\n" - "> > \302\240 \302\240 \302\240 How did you choose the upper limit.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 How did you choose the upper limit.\n" "> >\n" - "> > \302\240 \302\240 \302\240 I believe that Greg previously suggested not to make\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 I believe that Greg previously suggested not to make\n" "> these\n" - "> > \302\240 \302\240 \302\240 changes if you\n" - "> > \302\240 \302\240 \302\240 have no way to test them.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 changes if you\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 have no way to test them.\n" "> >\n" - "> > Julia, After going through the reply given by\302\240Nicholas Mc\n" - "> Guire\302\240\n" + "> > Julia, After going through the reply given by\303\257\302\277\305\223Nicholas Mc\n" + "> Guire\303\257\302\277\305\223\n" "> >\n" "> https://www.mail-archive.com/kernelnewbies@kernelnewbies.org/msg16464.html\n" "> > in this reply he has mentioned that even the range of 10\n" "> microsecond is\n" "> > enough,\n" - "> > so I prefer to take 100 as upper limit. \302\240\n" + "> > so I prefer to take 100 as upper limit. \303\257\302\277\305\223\n" ">\n" "> Than you for the link.\n" ">\n" "> It looks like he suggests to change 33 to 30-40, not to 33-100.\n" - "> \302\240In any\n" + "> \303\257\302\277\305\223In any\n" "> case, you have three choices for this kind of issue:\n" "> 1. Don't make the change, because you can't test the result\n" "> 2. Make the change, and explain the commit log what your\n" @@ -95,14 +96,14 @@ "> concrete\n" "> to start a discussion.\n" ">\n" - "> But your preference is not a suitable justification. \302\240The\n" + "> But your preference is not a suitable justification. \303\257\302\277\305\223The\n" "> hardware does\n" "> something, and the choice can only really be made by the person\n" "> who knows\n" "> what it does.\n" ">\n" - "> \302\240\n" - "> Thanks,\302\240\n" + "> \303\257\302\277\305\223\n" + "> Thanks,\303\257\302\277\305\223\n" "> Julia I'll keep this in mind from next time.\n" ">\n" "> I choose the range from 33 to 100 for being on more safer side.\n" @@ -116,50 +117,50 @@ ">\n" "> julia\n" ">\n" - "> > \302\240\n" + "> > \303\257\302\277\305\223\n" "> > Simran\n" "> >\n" - "> > \302\240 \302\240 \302\240 julia\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 julia\n" "> >\n" "> >\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (nvec->rx->data[0] !=\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223if (nvec->rx->data[0] !=\n" "> 0x01) {\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240dev_err(nvec->dev,\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\"Read without\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223dev_err(nvec->dev,\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\"Read without\n" "> prior\n" - "> > \302\240 \302\240 \302\240 read command\\n\");\n" - "> > \302\240 \302\240 \302\240 > @@ -718,7 +718,7 @@ static irqreturn_t\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 read command\\n\");\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > @@ -718,7 +718,7 @@ static irqreturn_t\n" "> nvec_interrupt(int irq,\n" - "> > \302\240 \302\240 \302\240 void *dev)\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240 * We experience less incomplete messages\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 void *dev)\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223 * We experience less incomplete messages\n" "> with this\n" - "> > \302\240 \302\240 \302\240 delay than without\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240 * it, but we don't know why. Help is\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 delay than without\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223 * it, but we don't know why. Help is\n" "> appreciated.\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240 */\n" - "> > \302\240 \302\240 \302\240 > -\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240udelay(100);\n" - "> > \302\240 \302\240 \302\240 > +\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240usleep_range(100, 200);\n" - "> > \302\240 \302\240 \302\240 >\n" - "> > \302\240 \302\240 \302\240 > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240return IRQ_HANDLED;\n" - "> > \302\240 \302\240 \302\240 > \302\240}\n" - "> > \302\240 \302\240 \302\240 > --\n" - "> > \302\240 \302\240 \302\240 > 2.7.4\n" - "> > \302\240 \302\240 \302\240 >\n" - "> > \302\240 \302\240 \302\240 > --\n" - "> > \302\240 \302\240 \302\240 > You received this message because you are subscribed\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223 */\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > -\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223udelay(100);\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > +\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223usleep_range(100, 200);\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223\303\257\302\277\305\223return IRQ_HANDLED;\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > \303\257\302\277\305\223}\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > --\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > 2.7.4\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > --\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > You received this message because you are subscribed\n" "> to the\n" - "> > \302\240 \302\240 \302\240 Google Groups \"outreachy-kernel\" group.\n" - "> > \302\240 \302\240 \302\240 > To unsubscribe from this group and stop receiving\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 Google Groups \"outreachy-kernel\" group.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > To unsubscribe from this group and stop receiving\n" "> emails from\n" - "> > \302\240 \302\240 \302\240 it, send an email to outreachy-kern...@googlegroups.com.\n" - "> > \302\240 \302\240 \302\240 > To post to this group, send email to\n" - "> > \302\240 \302\240 \302\240 outreach...@googlegroups.com.\n" - "> > \302\240 \302\240 \302\240 > To view this discussion on the webvisithttps://groups.google.com/d/msgid/outreachy-kernel/20170302142418.GA16\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 it, send an email to outreachy-kern...@googlegroups.com.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > To post to this group, send email to\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 outreach...@googlegroups.com.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > To view this discussion on the webvisithttps://groups.google.com/d/msgid/outreachy-kernel/20170302142418.GA16\n" "> 773%4\n" - "> > \302\240 \302\240 \302\240 0singhal-Inspiron-5558.\n" - "> > \302\240 \302\240 \302\240 > For more options, visit\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 0singhal-Inspiron-5558.\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 > For more options, visit\n" "> https://groups.google.com/d/optout.\n" - "> > \302\240 \302\240 \302\240 >\n" + "> > \303\257\302\277\305\223 \303\257\302\277\305\223 \303\257\302\277\305\223 >\n" "> >\n" "> > --\n" "> > You received this message because you are subscribed to the\n" @@ -188,11 +189,5 @@ "> For more options, visit https://groups.google.com/d/optout.\n" ">\n" > - "\01:2\0" - "b\0" - "_______________________________________________\n" - "devel mailing list\n" - "devel@linuxdriverproject.org\n" - http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel -c1e64772c1aa22e5119696e6d8418107a7729ba42029f163c7d7c5470bdd0369 +654e702e94a43621f0b4c8bc75170c6cd1946014f355d9093ee432a48489dd4b
diff --git a/a/2.hdr b/a/2.hdr deleted file mode 100644 index 4b86001..0000000 --- a/a/2.hdr +++ /dev/null @@ -1,4 +0,0 @@ -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Content-Disposition: inline diff --git a/a/2.txt b/a/2.txt deleted file mode 100644 index 8d97bc0..0000000 --- a/a/2.txt +++ /dev/null @@ -1,4 +0,0 @@ -_______________________________________________ -devel mailing list -devel@linuxdriverproject.org -http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel diff --git a/a/content_digest b/N2/content_digest index 60c316c..3af8800 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -7,12 +7,13 @@ "Subject\0Re: [Outreachy kernel] [PATCH] staging: nvec: cleanup USLEEP_RANGE checkpatch checks\0" "Date\0Thu, 2 Mar 2017 16:18:56 +0100 (CET)\0" "To\0SIMRAN SINGHAL <singhalsimran0@gmail.com>\0" - "Cc\0devel@driverdev.osuosl.org" + "Cc\0outreachy-kernel <outreachy-kernel@googlegroups.com>" + marvin24@gmx.de gregkh@linuxfoundation.org - linux-kernel@vger.kernel.org - outreachy-kernel <outreachy-kernel@googlegroups.com> + ac100@lists.launchpad.net linux-tegra@vger.kernel.org - " ac100@lists.launchpad.net\0" + devel@driverdev.osuosl.org + " linux-kernel@vger.kernel.org\0" "\01:1\0" "b\0" "\n" @@ -188,11 +189,5 @@ "> For more options, visit https://groups.google.com/d/optout.\n" ">\n" > - "\01:2\0" - "b\0" - "_______________________________________________\n" - "devel mailing list\n" - "devel@linuxdriverproject.org\n" - http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel -c1e64772c1aa22e5119696e6d8418107a7729ba42029f163c7d7c5470bdd0369 +58e5aa4a8e1d5211279492d2a6f21a0398742400d576f0e7267cb30e75b281b9
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.