linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/1] *** Make licence explicit for ssdd ***
@ 2019-06-14 11:37 John Kacur
  2019-06-14 11:37 ` [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd John Kacur
  2019-06-14 13:53 ` [PATCH 0/1] *** Make licence explicit for ssdd *** Joe Korty
  0 siblings, 2 replies; 5+ messages in thread
From: John Kacur @ 2019-06-14 11:37 UTC (permalink / raw)
  To: Joe Korty; +Cc: rt-users, Clark Williams, John Kacur

The default license for programs in the rt-tests suite is GPL version 2

Joe, I would like to get your signed-off-by for this, or please let us
know if this was not your intention.

thanks

John Kacur (1):
  rt-tests: ssdd: Add Licence information to ssdd

 src/ssdd/ssdd.c | 7 +++++++
 1 file changed, 7 insertions(+)

-- 
2.20.1


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

* [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd
  2019-06-14 11:37 [PATCH 0/1] *** Make licence explicit for ssdd *** John Kacur
@ 2019-06-14 11:37 ` John Kacur
  2019-06-14 19:34   ` Sebastian Andrzej Siewior
  2019-06-14 13:53 ` [PATCH 0/1] *** Make licence explicit for ssdd *** Joe Korty
  1 sibling, 1 reply; 5+ messages in thread
From: John Kacur @ 2019-06-14 11:37 UTC (permalink / raw)
  To: Joe Korty; +Cc: rt-users, Clark Williams, John Kacur

Add License Information to ssdd

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 src/ssdd/ssdd.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/ssdd/ssdd.c b/src/ssdd/ssdd.c
index 4e293586526e..2c3a779be9f1 100644
--- a/src/ssdd/ssdd.c
+++ b/src/ssdd/ssdd.c
@@ -15,6 +15,13 @@
  *
  * The tracer waits on each PTRACE_SINGLESTEP with a waitpid(2)
  * and checks that waitpid's return values for correctness.
+ *
+ * This program was originally written by
+ * Joe Korty <joe.korty@concurrent-rt.com>
+ * This program is free software; you can redistribute it and / or modify
+ * it under the terms of the GNU General Public License Version 2
+ * of the licence, or (at your option) any later version
+ * see COPYING for more information
  */
 #include <stdio.h>
 #include <stdlib.h>
-- 
2.20.1


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

* Re: [PATCH 0/1] *** Make licence explicit for ssdd ***
  2019-06-14 11:37 [PATCH 0/1] *** Make licence explicit for ssdd *** John Kacur
  2019-06-14 11:37 ` [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd John Kacur
@ 2019-06-14 13:53 ` Joe Korty
  1 sibling, 0 replies; 5+ messages in thread
From: Joe Korty @ 2019-06-14 13:53 UTC (permalink / raw)
  To: John Kacur; +Cc: rt-users, Clark Williams

On Fri, Jun 14, 2019 at 01:37:46PM +0200, John Kacur wrote:
> The default license for programs in the rt-tests suite is GPL version 2
> 
> Joe, I would like to get your signed-off-by for this, or please let us
> know if this was not your intention.
> 
> thanks
> 
> John Kacur (1):
>   rt-tests: ssdd: Add Licence information to ssdd
> 
>  src/ssdd/ssdd.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> -- 
> 2.20.1

Signed-off-by: Joe Korty <joe.korty@concurrent-rt.com>


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

* Re: [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd
  2019-06-14 11:37 ` [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd John Kacur
@ 2019-06-14 19:34   ` Sebastian Andrzej Siewior
  2019-06-17 15:05     ` John Kacur
  0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Andrzej Siewior @ 2019-06-14 19:34 UTC (permalink / raw)
  To: John Kacur; +Cc: Joe Korty, rt-users, Clark Williams

On 2019-06-14 13:37:47 [+0200], John Kacur wrote:
> Add License Information to ssdd

> Signed-off-by: John Kacur <jkacur@redhat.com>
> ---
>  src/ssdd/ssdd.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/src/ssdd/ssdd.c b/src/ssdd/ssdd.c
> index 4e293586526e..2c3a779be9f1 100644
> --- a/src/ssdd/ssdd.c
> +++ b/src/ssdd/ssdd.c
> @@ -15,6 +15,13 @@
>   *
>   * The tracer waits on each PTRACE_SINGLESTEP with a waitpid(2)
>   * and checks that waitpid's return values for correctness.
> + *
> + * This program was originally written by
> + * Joe Korty <joe.korty@concurrent-rt.com>
> + * This program is free software; you can redistribute it and / or modify
> + * it under the terms of the GNU General Public License Version 2
> + * of the licence, or (at your option) any later version
> + * see COPYING for more information

SPDX tags is not something that you have in rt-tests, right? Because a
standard tag would be kind of better than having yet another unique
version of text saying that it is GPLv2-or-later.

So you could reduce this to two lines:
- // SPDX-License-Identifier: GPL-2.0-or-later
  top

- Author: Joe Korty <joe.korty@concurrent-rt.com>
  Somewhere at top where the comment starts.

>   */
>  #include <stdio.h>
>  #include <stdlib.h>

Sebastian

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

* Re: [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd
  2019-06-14 19:34   ` Sebastian Andrzej Siewior
@ 2019-06-17 15:05     ` John Kacur
  0 siblings, 0 replies; 5+ messages in thread
From: John Kacur @ 2019-06-17 15:05 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior; +Cc: Joe Korty, rt-users, Clark Williams



On Fri, 14 Jun 2019, Sebastian Andrzej Siewior wrote:

> On 2019-06-14 13:37:47 [+0200], John Kacur wrote:
> > Add License Information to ssdd
> 
> > Signed-off-by: John Kacur <jkacur@redhat.com>
> > ---
> >  src/ssdd/ssdd.c | 7 +++++++
> >  1 file changed, 7 insertions(+)
> > 
> > diff --git a/src/ssdd/ssdd.c b/src/ssdd/ssdd.c
> > index 4e293586526e..2c3a779be9f1 100644
> > --- a/src/ssdd/ssdd.c
> > +++ b/src/ssdd/ssdd.c
> > @@ -15,6 +15,13 @@
> >   *
> >   * The tracer waits on each PTRACE_SINGLESTEP with a waitpid(2)
> >   * and checks that waitpid's return values for correctness.
> > + *
> > + * This program was originally written by
> > + * Joe Korty <joe.korty@concurrent-rt.com>
> > + * This program is free software; you can redistribute it and / or modify
> > + * it under the terms of the GNU General Public License Version 2
> > + * of the licence, or (at your option) any later version
> > + * see COPYING for more information
> 
> SPDX tags is not something that you have in rt-tests, right? Because a
> standard tag would be kind of better than having yet another unique
> version of text saying that it is GPLv2-or-later.
> 
> So you could reduce this to two lines:
> - // SPDX-License-Identifier: GPL-2.0-or-later
>   top
> 
> - Author: Joe Korty <joe.korty@concurrent-rt.com>
>   Somewhere at top where the comment starts.
> 
> >   */
> >  #include <stdio.h>
> >  #include <stdlib.h>
> 
> Sebastian
> 

Thanks for the tip Sebastian, looks good to me,
I'm looking into doing this.

John

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

end of thread, other threads:[~2019-06-17 15:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-14 11:37 [PATCH 0/1] *** Make licence explicit for ssdd *** John Kacur
2019-06-14 11:37 ` [PATCH 1/1] rt-tests: ssdd: Add Licence information to ssdd John Kacur
2019-06-14 19:34   ` Sebastian Andrzej Siewior
2019-06-17 15:05     ` John Kacur
2019-06-14 13:53 ` [PATCH 0/1] *** Make licence explicit for ssdd *** Joe Korty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).