All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Coccinelle: memdup: Fix typo in warning messages
@ 2018-02-27 21:59 Dafna Hirschfeld
  2018-02-27 22:52 ` Nicolas Palix (LIG)
  2018-02-28  7:58 ` Julia Lawall
  0 siblings, 2 replies; 11+ messages in thread
From: Dafna Hirschfeld @ 2018-02-27 21:59 UTC (permalink / raw)
  To: Julia.Lawall, Gilles.Muller, nicolas.palix, michal.lkml; +Cc: outreachy-kernel

Replace 'kmemdep' with 'kmemdup' in warning messages.

Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
---
 scripts/coccinelle/api/memdup.cocci | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
index 1249b72..8fd6437 100644
--- a/scripts/coccinelle/api/memdup.cocci
+++ b/scripts/coccinelle/api/memdup.cocci
@@ -56,10 +56,10 @@ statement S;
 p << r.p;
 @@
 
-coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
+coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
 
 @script:python depends on report@
 p << r.p;
 @@
 
-coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
+coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-02-27 21:59 Dafna Hirschfeld
@ 2018-02-27 22:52 ` Nicolas Palix (LIG)
  2018-02-28  7:58 ` Julia Lawall
  1 sibling, 0 replies; 11+ messages in thread
From: Nicolas Palix (LIG) @ 2018-02-27 22:52 UTC (permalink / raw)
  To: Dafna Hirschfeld, Julia.Lawall, Gilles.Muller, michal.lkml
  Cc: outreachy-kernel

[-- Attachment #1: Type: text/plain, Size: 1035 bytes --]

Le 27/02/2018 à 22:59, Dafna Hirschfeld a écrit :
> Replace 'kmemdep' with 'kmemdup' in warning messages.
> 
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
Acked-by: Nicolas Palix <nicolas.palix@imag.fr>
> ---
>   scripts/coccinelle/api/memdup.cocci | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>   p << r.p;
>   @@
>   
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>   
>   @script:python depends on report@
>   p << r.p;
>   @@
>   
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> 


-- 
Nicolas Palix
http://lig-membres.imag.fr/palix/


[-- Attachment #2: Signature cryptographique S/MIME --]
[-- Type: application/pkcs7-signature, Size: 2959 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-02-27 21:59 Dafna Hirschfeld
  2018-02-27 22:52 ` Nicolas Palix (LIG)
@ 2018-02-28  7:58 ` Julia Lawall
  2018-03-01  5:25   ` yamada.masahiro
  1 sibling, 1 reply; 11+ messages in thread
From: Julia Lawall @ 2018-02-28  7:58 UTC (permalink / raw)
  To: Dafna Hirschfeld
  Cc: Gilles Muller, nicolas.palix, michal.lkml, Masahiro Yamada,
	outreachy-kernel



On Tue, 27 Feb 2018, Dafna Hirschfeld wrote:

> Replace 'kmemdep' with 'kmemdup' in warning messages.

Thanks for the detailed commit log.  Because I stared and stared at it and
couldn't see the difference :)

>
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>

Acked-by: Julia Lawall <julia.lawall@lip6.fr>

> ---
>  scripts/coccinelle/api/memdup.cocci | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>  p << r.p;
>  @@
>
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>
>  @script:python depends on report@
>  p << r.p;
>  @@
>
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> --
> 2.7.4
>
>


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-02-28  7:58 ` Julia Lawall
@ 2018-03-01  5:25   ` yamada.masahiro
  2018-03-01  6:44     ` Julia Lawall
  0 siblings, 1 reply; 11+ messages in thread
From: yamada.masahiro @ 2018-03-01  5:25 UTC (permalink / raw)
  To: julia.lawall, dafna3
  Cc: Gilles.Muller, nicolas.palix, michal.lkml, outreachy-kernel

Hi Dafna

> -----Original Message-----
> From: Julia Lawall [mailto:julia.lawall@lip6.fr]
> Sent: Wednesday, February 28, 2018 4:58 PM
> To: Dafna Hirschfeld <dafna3@gmail.com>
> Cc: Gilles Muller <Gilles.Muller@lip6.fr>; nicolas.palix@imag.fr;
> michal.lkml@markovi.net; Yamada, Masahiro/山田 真弘
> <yamada.masahiro@socionext.com>; outreachy-kernel@googlegroups.com
> Subject: Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
> 
> 
> 
> On Tue, 27 Feb 2018, Dafna Hirschfeld wrote:
> 
> > Replace 'kmemdep' with 'kmemdup' in warning messages.
> 
> Thanks for the detailed commit log.  Because I stared and stared at it and
> couldn't see the difference :)


I could not find this patch in ML.

Please repost it with the following ML in To or CC.

linux-kernel@vger.kernel.org
linux-kbuild@vger.kernel.org


That will be helpful because I usually pick up patches
from patchwork.

Thanks!





> >
> > Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> 
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
> 
> > ---
> >  scripts/coccinelle/api/memdup.cocci | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/scripts/coccinelle/api/memdup.cocci
> b/scripts/coccinelle/api/memdup.cocci
> > index 1249b72..8fd6437 100644
> > --- a/scripts/coccinelle/api/memdup.cocci
> > +++ b/scripts/coccinelle/api/memdup.cocci
> > @@ -56,10 +56,10 @@ statement S;
> >  p << r.p;
> >  @@
> >
> > -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> > +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
> >
> >  @script:python depends on report@
> >  p << r.p;
> >  @@
> >
> > -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> > +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> > --
> > 2.7.4
> >
> >

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-03-01  5:25   ` yamada.masahiro
@ 2018-03-01  6:44     ` Julia Lawall
  0 siblings, 0 replies; 11+ messages in thread
From: Julia Lawall @ 2018-03-01  6:44 UTC (permalink / raw)
  To: yamada.masahiro
  Cc: dafna3, Gilles Muller, nicolas.palix, michal.lkml,
	outreachy-kernel

[-- Attachment #1: Type: text/plain, Size: 2054 bytes --]



On Thu, 1 Mar 2018, yamada.masahiro@socionext.com wrote:

> Hi Dafna
>
> > -----Original Message-----
> > From: Julia Lawall [mailto:julia.lawall@lip6.fr]
> > Sent: Wednesday, February 28, 2018 4:58 PM
> > To: Dafna Hirschfeld <dafna3@gmail.com>
> > Cc: Gilles Muller <Gilles.Muller@lip6.fr>; nicolas.palix@imag.fr;
> > michal.lkml@markovi.net; Yamada, Masahiro/山田 真弘
> > <yamada.masahiro@socionext.com>; outreachy-kernel@googlegroups.com
> > Subject: Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
> >
> >
> >
> > On Tue, 27 Feb 2018, Dafna Hirschfeld wrote:
> >
> > > Replace 'kmemdep' with 'kmemdup' in warning messages.
> >
> > Thanks for the detailed commit log.  Because I stared and stared at it and
> > couldn't see the difference :)
>
>
> I could not find this patch in ML.
>
> Please repost it with the following ML in To or CC.

Dafna,

When you repost, please add my ack.

thanks,
julia

>
> linux-kernel@vger.kernel.org
> linux-kbuild@vger.kernel.org
>
>
> That will be helpful because I usually pick up patches
> from patchwork.
>
> Thanks!
>
>
>
>
>
> > >
> > > Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> >
> > Acked-by: Julia Lawall <julia.lawall@lip6.fr>
> >
> > > ---
> > >  scripts/coccinelle/api/memdup.cocci | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/scripts/coccinelle/api/memdup.cocci
> > b/scripts/coccinelle/api/memdup.cocci
> > > index 1249b72..8fd6437 100644
> > > --- a/scripts/coccinelle/api/memdup.cocci
> > > +++ b/scripts/coccinelle/api/memdup.cocci
> > > @@ -56,10 +56,10 @@ statement S;
> > >  p << r.p;
> > >  @@
> > >
> > > -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> > > +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
> > >
> > >  @script:python depends on report@
> > >  p << r.p;
> > >  @@
> > >
> > > -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> > > +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> > > --
> > > 2.7.4
> > >
> > >
>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] Coccinelle: memdup: Fix typo in warning messages
@ 2018-03-01  8:57 ` Dafna Hirschfeld
  0 siblings, 0 replies; 11+ messages in thread
From: Dafna Hirschfeld @ 2018-03-01  8:57 UTC (permalink / raw)
  To: Julia.Lawall, Gilles.Muller, nicolas.palix, michal.lkml,
	linux-kernel, linux-kbuild
  Cc: outreachy-kernel

Replace 'kmemdep' with 'kmemdup' in warning messages.

Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
---
 scripts/coccinelle/api/memdup.cocci | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
index 1249b72..8fd6437 100644
--- a/scripts/coccinelle/api/memdup.cocci
+++ b/scripts/coccinelle/api/memdup.cocci
@@ -56,10 +56,10 @@ statement S;
 p << r.p;
 @@
 
-coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
+coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
 
 @script:python depends on report@
 p << r.p;
 @@
 
-coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
+coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Outreachy kernel] [PATCH] Coccinelle: memdup: Fix typo in warning messages
@ 2018-03-01  8:57 ` Dafna Hirschfeld
  0 siblings, 0 replies; 11+ messages in thread
From: Dafna Hirschfeld @ 2018-03-01  8:57 UTC (permalink / raw)
  To: Julia.Lawall, Gilles.Muller, nicolas.palix, michal.lkml,
	linux-kernel, linux-kbuild
  Cc: outreachy-kernel

Replace 'kmemdep' with 'kmemdup' in warning messages.

Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
---
 scripts/coccinelle/api/memdup.cocci | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
index 1249b72..8fd6437 100644
--- a/scripts/coccinelle/api/memdup.cocci
+++ b/scripts/coccinelle/api/memdup.cocci
@@ -56,10 +56,10 @@ statement S;
 p << r.p;
 @@
 
-coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
+coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
 
 @script:python depends on report@
 p << r.p;
 @@
 
-coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
+coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
-- 
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 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/20180301085717.GA4508%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-03-01  8:57 ` [Outreachy kernel] " Dafna Hirschfeld
@ 2018-03-01 15:14   ` Masahiro Yamada
  -1 siblings, 0 replies; 11+ messages in thread
From: Masahiro Yamada @ 2018-03-01 15:14 UTC (permalink / raw)
  To: Dafna Hirschfeld
  Cc: Julia Lawall, Gilles Muller, Nicolas Palix, Michal Marek,
	Linux Kernel Mailing List, Linux Kbuild mailing list,
	outreachy-kernel

2018-03-01 17:57 GMT+09:00 Dafna Hirschfeld <dafna3@gmail.com>:
> Replace 'kmemdep' with 'kmemdup' in warning messages.
>
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
> ---

Applied to linux-kbuild/fixes.  Thanks!


>  scripts/coccinelle/api/memdup.cocci | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>  p << r.p;
>  @@
>
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>
>  @script:python depends on report@
>  p << r.p;
>  @@
>
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> --
> 2.7.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Outreachy kernel] Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
@ 2018-03-01 15:14   ` Masahiro Yamada
  0 siblings, 0 replies; 11+ messages in thread
From: Masahiro Yamada @ 2018-03-01 15:14 UTC (permalink / raw)
  To: Dafna Hirschfeld
  Cc: Julia Lawall, Gilles Muller, Nicolas Palix, Michal Marek,
	Linux Kernel Mailing List, Linux Kbuild mailing list,
	outreachy-kernel

2018-03-01 17:57 GMT+09:00 Dafna Hirschfeld <dafna3@gmail.com>:
> Replace 'kmemdep' with 'kmemdup' in warning messages.
>
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
> ---

Applied to linux-kbuild/fixes.  Thanks!


>  scripts/coccinelle/api/memdup.cocci | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>  p << r.p;
>  @@
>
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>
>  @script:python depends on report@
>  p << r.p;
>  @@
>
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> --
> 2.7.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Best Regards
Masahiro Yamada

-- 
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/CAK7LNASZo27PwwbhMPV%2BKPv1u%3D933Vkt0-ve1HG1E2gxmnCUhA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
  2018-03-01  8:57 ` [Outreachy kernel] " Dafna Hirschfeld
@ 2018-03-01 19:45   ` Nicolas Palix (LIG)
  -1 siblings, 0 replies; 11+ messages in thread
From: Nicolas Palix (LIG) @ 2018-03-01 19:45 UTC (permalink / raw)
  To: Dafna Hirschfeld, Julia.Lawall, Gilles.Muller, michal.lkml,
	linux-kernel, linux-kbuild
  Cc: outreachy-kernel

Le 01/03/2018 à 09:57, Dafna Hirschfeld a écrit :
> Replace 'kmemdep' with 'kmemdup' in warning messages.
> 
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Acked-by: Nicolas Palix <nicolas.palix@imag.fr>
> ---
>   scripts/coccinelle/api/memdup.cocci | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>   p << r.p;
>   @@
>   
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>   
>   @script:python depends on report@
>   p << r.p;
>   @@
>   
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> 


-- 
Nicolas Palix
http://lig-membres.imag.fr/palix/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Outreachy kernel] Re: [PATCH] Coccinelle: memdup: Fix typo in warning messages
@ 2018-03-01 19:45   ` Nicolas Palix (LIG)
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Palix (LIG) @ 2018-03-01 19:45 UTC (permalink / raw)
  To: Dafna Hirschfeld, Julia.Lawall, Gilles.Muller, michal.lkml,
	linux-kernel, linux-kbuild
  Cc: outreachy-kernel

Le 01/03/2018 à 09:57, Dafna Hirschfeld a écrit :
> Replace 'kmemdep' with 'kmemdup' in warning messages.
> 
> Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
> Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Acked-by: Nicolas Palix <nicolas.palix@imag.fr>
> ---
>   scripts/coccinelle/api/memdup.cocci | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/coccinelle/api/memdup.cocci b/scripts/coccinelle/api/memdup.cocci
> index 1249b72..8fd6437 100644
> --- a/scripts/coccinelle/api/memdup.cocci
> +++ b/scripts/coccinelle/api/memdup.cocci
> @@ -56,10 +56,10 @@ statement S;
>   p << r.p;
>   @@
>   
> -coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
> +coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
>   
>   @script:python depends on report@
>   p << r.p;
>   @@
>   
> -coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
> +coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")
> 


-- 
Nicolas Palix
http://lig-membres.imag.fr/palix/

-- 
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/8cc75580-b29a-a599-4af1-6bb3783bc705%40imag.fr.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-03-02  4:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-01  8:57 [PATCH] Coccinelle: memdup: Fix typo in warning messages Dafna Hirschfeld
2018-03-01  8:57 ` [Outreachy kernel] " Dafna Hirschfeld
2018-03-01 15:14 ` Masahiro Yamada
2018-03-01 15:14   ` [Outreachy kernel] " Masahiro Yamada
2018-03-01 19:45 ` Nicolas Palix (LIG)
2018-03-01 19:45   ` [Outreachy kernel] " Nicolas Palix (LIG)
  -- strict thread matches above, loose matches on Subject: below --
2018-02-27 21:59 Dafna Hirschfeld
2018-02-27 22:52 ` Nicolas Palix (LIG)
2018-02-28  7:58 ` Julia Lawall
2018-03-01  5:25   ` yamada.masahiro
2018-03-01  6:44     ` Julia Lawall

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.