linux-spdx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: linux-spdx@vger.kernel.org
Subject: [Batch 13 patch 20/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321
Date: Wed, 29 May 2019 16:57:36 -0700	[thread overview]
Message-ID: <20190530000435.345978407@linutronix.de> (raw)
In-Reply-To: 20190529235716.581218785@linutronix.de

From: Thomas Gleixner tglx@linutronix.de

Based on 1 normalized pattern(s):

  this program is free software you can redistribute it and or modify
  it under the terms of the gnu general public license as published by
  the free software foundation version 2 and no later version this
  program is distributed in the hope that it will be useful but
  without any warranty without even the implied warranty of
  merchantability or fitness for a particular purpose see the gnu
  general public license for more details

extracted by the scancode license scanner the SPDX license identifier

  GPL-2.0-only

has been chosen to replace the boilerplate/reference in 33 file(s).

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
https://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-spdx.git/commit/?h=batch13&id=a76fa9d89502
---
 drivers/misc/vmw_vmci/vmci_context.c         |   10 +---------
 drivers/misc/vmw_vmci/vmci_context.h         |   10 +---------
 drivers/misc/vmw_vmci/vmci_datagram.c        |   10 +---------
 drivers/misc/vmw_vmci/vmci_datagram.h        |   10 +---------
 drivers/misc/vmw_vmci/vmci_doorbell.c        |   10 +---------
 drivers/misc/vmw_vmci/vmci_doorbell.h        |   10 +---------
 drivers/misc/vmw_vmci/vmci_driver.c          |   10 +---------
 drivers/misc/vmw_vmci/vmci_driver.h          |   10 +---------
 drivers/misc/vmw_vmci/vmci_event.c           |   10 +---------
 drivers/misc/vmw_vmci/vmci_event.h           |   10 +---------
 drivers/misc/vmw_vmci/vmci_guest.c           |   10 +---------
 drivers/misc/vmw_vmci/vmci_handle_array.c    |   10 +---------
 drivers/misc/vmw_vmci/vmci_handle_array.h    |   10 +---------
 drivers/misc/vmw_vmci/vmci_host.c            |   10 +---------
 drivers/misc/vmw_vmci/vmci_queue_pair.c      |   10 +---------
 drivers/misc/vmw_vmci/vmci_queue_pair.h      |   10 +---------
 drivers/misc/vmw_vmci/vmci_resource.c        |   10 +---------
 drivers/misc/vmw_vmci/vmci_resource.h        |   10 +---------
 drivers/misc/vmw_vmci/vmci_route.c           |   10 +---------
 drivers/misc/vmw_vmci/vmci_route.h           |   10 +---------
 include/linux/vm_sockets.h                   |   10 +---------
 include/linux/vmw_vmci_api.h                 |   10 +---------
 include/linux/vmw_vmci_defs.h                |   10 +---------
 include/net/af_vsock.h                       |   10 +---------
 include/net/vsock_addr.h                     |   10 +---------
 net/vmw_vsock/af_vsock.c                     |   10 +---------
 net/vmw_vsock/diag.c                         |   10 +---------
 net/vmw_vsock/vmci_transport.c               |   10 +---------
 net/vmw_vsock/vmci_transport.h               |   10 +---------
 net/vmw_vsock/vmci_transport_notify.c        |   10 +---------
 net/vmw_vsock/vmci_transport_notify.h        |   10 +---------
 net/vmw_vsock/vmci_transport_notify_qstate.c |   10 +---------
 net/vmw_vsock/vsock_addr.c                   |   10 +---------
 33 files changed, 33 insertions(+), 297 deletions(-)

--- a/drivers/misc/vmw_vmci/vmci_context.c
+++ b/drivers/misc/vmw_vmci/vmci_context.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_context.h
+++ b/drivers/misc/vmw_vmci/vmci_context.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI driver (vmciContext.h)
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_CONTEXT_H_
--- a/drivers/misc/vmw_vmci/vmci_datagram.c
+++ b/drivers/misc/vmw_vmci/vmci_datagram.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_datagram.h
+++ b/drivers/misc/vmw_vmci/vmci_datagram.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_DATAGRAM_H_
--- a/drivers/misc/vmw_vmci/vmci_doorbell.c
+++ b/drivers/misc/vmw_vmci/vmci_doorbell.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_doorbell.h
+++ b/drivers/misc/vmw_vmci/vmci_doorbell.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef VMCI_DOORBELL_H
--- a/drivers/misc/vmw_vmci/vmci_driver.c
+++ b/drivers/misc/vmw_vmci/vmci_driver.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_driver.h
+++ b/drivers/misc/vmw_vmci/vmci_driver.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_DRIVER_H_
--- a/drivers/misc/vmw_vmci/vmci_event.c
+++ b/drivers/misc/vmw_vmci/vmci_event.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_event.h
+++ b/drivers/misc/vmw_vmci/vmci_event.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef __VMCI_EVENT_H__
--- a/drivers/misc/vmw_vmci/vmci_guest.c
+++ b/drivers/misc/vmw_vmci/vmci_guest.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_handle_array.c
+++ b/drivers/misc/vmw_vmci/vmci_handle_array.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/slab.h>
--- a/drivers/misc/vmw_vmci/vmci_handle_array.h
+++ b/drivers/misc/vmw_vmci/vmci_handle_array.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_HANDLE_ARRAY_H_
--- a/drivers/misc/vmw_vmci/vmci_host.c
+++ b/drivers/misc/vmw_vmci/vmci_host.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_queue_pair.c
+++ b/drivers/misc/vmw_vmci/vmci_queue_pair.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_queue_pair.h
+++ b/drivers/misc/vmw_vmci/vmci_queue_pair.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_QUEUE_PAIR_H_
--- a/drivers/misc/vmw_vmci/vmci_resource.c
+++ b/drivers/misc/vmw_vmci/vmci_resource.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_resource.h
+++ b/drivers/misc/vmw_vmci/vmci_resource.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_RESOURCE_H_
--- a/drivers/misc/vmw_vmci/vmci_route.c
+++ b/drivers/misc/vmw_vmci/vmci_route.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #include <linux/vmw_vmci_defs.h>
--- a/drivers/misc/vmw_vmci/vmci_route.h
+++ b/drivers/misc/vmw_vmci/vmci_route.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMCI_ROUTE_H_
--- a/include/linux/vm_sockets.h
+++ b/include/linux/vm_sockets.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #ifndef _VM_SOCKETS_H
--- a/include/linux/vmw_vmci_api.h
+++ b/include/linux/vmw_vmci_api.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef __VMW_VMCI_API_H__
--- a/include/linux/vmw_vmci_defs.h
+++ b/include/linux/vmw_vmci_defs.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware VMCI Driver
  *
  * Copyright (C) 2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
  */
 
 #ifndef _VMW_VMCI_DEF_H_
--- a/include/net/af_vsock.h
+++ b/include/net/af_vsock.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #ifndef __AF_VSOCK_H__
--- a/include/net/vsock_addr.h
+++ b/include/net/vsock_addr.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #ifndef _VSOCK_ADDR_H_
--- a/net/vmw_vsock/af_vsock.c
+++ b/net/vmw_vsock/af_vsock.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 /* Implementation notes:
--- a/net/vmw_vsock/diag.c
+++ b/net/vmw_vsock/diag.c
@@ -1,17 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * vsock sock_diag(7) module
  *
  * Copyright (C) 2017 Red Hat, Inc.
  * Author: Stefan Hajnoczi <stefanha@redhat.com>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #include <linux/module.h>
--- a/net/vmw_vsock/vmci_transport.c
+++ b/net/vmw_vsock/vmci_transport.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #include <linux/types.h>
--- a/net/vmw_vsock/vmci_transport.h
+++ b/net/vmw_vsock/vmci_transport.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #ifndef _VMCI_TRANSPORT_H_
--- a/net/vmw_vsock/vmci_transport_notify.c
+++ b/net/vmw_vsock/vmci_transport_notify.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2009-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #include <linux/types.h>
--- a/net/vmw_vsock/vmci_transport_notify.h
+++ b/net/vmw_vsock/vmci_transport_notify.h
@@ -1,16 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2009-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #ifndef __VMCI_TRANSPORT_NOTIFY_H__
--- a/net/vmw_vsock/vmci_transport_notify_qstate.c
+++ b/net/vmw_vsock/vmci_transport_notify_qstate.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2009-2013 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #include <linux/types.h>
--- a/net/vmw_vsock/vsock_addr.c
+++ b/net/vmw_vsock/vsock_addr.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * VMware vSockets Driver
  *
  * Copyright (C) 2007-2012 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation version 2 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
  */
 
 #include <linux/types.h>



  parent reply	other threads:[~2019-05-30 11:40 UTC|newest]

Thread overview: 220+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-29 23:57 [Batch 13 patch 00/48] Batch 13 of random GPL notices/references Thomas Gleixner
2019-05-29 23:57 ` [Batch 13 patch 01/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 301 Thomas Gleixner
2019-05-30 11:41   ` Kate Stewart
2019-05-30 13:01   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 13:46   ` Zavras, Alexios
2019-06-02 17:30   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 02/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 302 Thomas Gleixner
2019-05-30 13:02   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:53   ` Kate Stewart
2019-05-31 13:48   ` Zavras, Alexios
2019-06-02 17:33   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 03/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 303 Thomas Gleixner
2019-05-30 11:43   ` Kate Stewart
2019-05-30 13:03   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-06-02 17:34   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 04/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 304 Thomas Gleixner
2019-05-30 11:47   ` Kate Stewart
2019-05-30 13:37     ` Armijn Hemel - Tjaldur Software Governance Solutions
     [not found]     ` <d65ea4b4-5c3a-3fb4-2868-3b6b3bbf0fa1@tjaldur.nl>
2019-05-30 17:41       ` Thomas Gleixner
2019-05-31 13:50   ` Zavras, Alexios
2019-06-02 17:35   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 05/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 305 Thomas Gleixner
2019-05-30 11:44   ` Kate Stewart
2019-05-30 13:04   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 13:57   ` Zavras, Alexios
2019-06-02 17:36   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 06/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 307 Thomas Gleixner
2019-05-30 11:44   ` Kate Stewart
2019-05-30 13:06   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 13:58   ` Zavras, Alexios
2019-06-02 17:36   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 07/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 308 Thomas Gleixner
2019-05-30 11:49   ` Kate Stewart
2019-05-31 14:08   ` Zavras, Alexios
2019-06-02 17:37   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 08/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 309 Thomas Gleixner
2019-05-31 14:11   ` Zavras, Alexios
2019-06-02 17:38   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 09/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 310 Thomas Gleixner
2019-05-30 11:42   ` Kate Stewart
2019-05-30 13:06   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:12   ` Zavras, Alexios
2019-06-02 17:38   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 10/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 311 Thomas Gleixner
2019-05-30 12:36   ` Kate Stewart
2019-05-30 13:07   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:12   ` Zavras, Alexios
2019-06-02 17:39   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 11/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 312 Thomas Gleixner
2019-05-30 12:37   ` Kate Stewart
2019-05-30 13:07   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:13   ` Zavras, Alexios
2019-06-02 17:40   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 12/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 313 Thomas Gleixner
2019-05-30 12:37   ` Kate Stewart
2019-05-30 13:08   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:14   ` Zavras, Alexios
2019-06-02 17:41   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 13/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 314 Thomas Gleixner
2019-05-30 12:41   ` Kate Stewart
2019-05-30 13:08   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:15   ` Zavras, Alexios
2019-06-02 17:42   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 14/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 315 Thomas Gleixner
2019-05-30 12:43   ` Kate Stewart
2019-05-30 13:21   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:17   ` Zavras, Alexios
2019-06-02 17:43   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 15/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 316 Thomas Gleixner
2019-05-30 12:44   ` Kate Stewart
2019-05-30 13:22   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:17   ` Zavras, Alexios
2019-06-02 17:45   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 16/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 317 Thomas Gleixner
2019-05-30 12:44   ` Kate Stewart
2019-05-31 14:20   ` Zavras, Alexios
2019-06-02 17:46   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 17/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 318 Thomas Gleixner
2019-05-30 12:47   ` Kate Stewart
2019-05-31 14:21   ` Zavras, Alexios
2019-06-02 17:46   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 18/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 319 Thomas Gleixner
2019-05-31 14:36   ` Zavras, Alexios
2019-05-31 15:00     ` Zavras, Alexios
2019-06-02 17:47   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 19/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 320 Thomas Gleixner
2019-05-30 18:16   ` Kate Stewart
2019-05-31 14:37   ` Zavras, Alexios
2019-05-31 15:00     ` Zavras, Alexios
2019-06-02 17:49   ` Allison Randal
2019-05-29 23:57 ` Thomas Gleixner [this message]
2019-05-30 12:59   ` [Batch 13 patch 20/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321 Kate Stewart
2019-05-31 14:39   ` Zavras, Alexios
2019-05-31 14:59     ` Zavras, Alexios
2019-06-02 18:16   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 21/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 322 Thomas Gleixner
2019-05-30 13:01   ` Kate Stewart
2019-05-31 14:40   ` Zavras, Alexios
2019-05-31 14:59     ` Zavras, Alexios
2019-06-02 18:17   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 22/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 323 Thomas Gleixner
2019-05-30 13:02   ` Kate Stewart
2019-05-31 14:41   ` Zavras, Alexios
2019-05-31 14:58     ` Zavras, Alexios
2019-06-02 18:18   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 23/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 324 Thomas Gleixner
2019-05-30 13:07   ` Kate Stewart
2019-05-30 13:26   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:43   ` Zavras, Alexios
2019-05-31 14:58     ` Zavras, Alexios
2019-06-02 18:22   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 24/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 325 Thomas Gleixner
2019-05-30 13:07   ` Kate Stewart
2019-05-30 13:27   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:44   ` Zavras, Alexios
2019-05-31 14:57     ` Zavras, Alexios
2019-06-02 18:40   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 25/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 326 Thomas Gleixner
2019-05-30 13:11   ` Kate Stewart
2019-05-31 14:45   ` Zavras, Alexios
2019-05-31 14:56     ` Zavras, Alexios
2019-06-02 18:42   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 26/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 328 Thomas Gleixner
2019-05-30 13:11   ` Kate Stewart
2019-05-30 13:28   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:46   ` Zavras, Alexios
2019-05-31 14:56     ` Zavras, Alexios
2019-06-02 18:43   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 27/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 329 Thomas Gleixner
2019-05-30 13:14   ` Kate Stewart
2019-05-30 13:30   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-31 14:49   ` Zavras, Alexios
2019-06-02 18:45   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 28/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 330 Thomas Gleixner
2019-05-30 13:27   ` Kate Stewart
2019-05-31 14:50   ` Zavras, Alexios
2019-05-31 14:55     ` Zavras, Alexios
2019-06-02 18:47   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 29/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 331 Thomas Gleixner
2019-05-30 13:15   ` Kate Stewart
2019-05-31 14:52   ` Zavras, Alexios
2019-06-02 18:51   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 30/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 332 Thomas Gleixner
2019-05-30 13:45   ` Kate Stewart
2019-05-31 14:54   ` Zavras, Alexios
2019-06-02 18:54   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 31/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 333 Thomas Gleixner
2019-05-31 15:06   ` Zavras, Alexios
2019-06-02 18:55   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 32/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 334 Thomas Gleixner
2019-05-30 13:30   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 13:54   ` Kate Stewart
2019-05-31 15:06   ` Zavras, Alexios
2019-06-02 18:56   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 33/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 335 Thomas Gleixner
2019-05-31 15:07   ` Zavras, Alexios
2019-06-02 18:57   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 34/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 336 Thomas Gleixner
2019-05-31 15:09   ` Zavras, Alexios
2019-06-02 18:58   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 35/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 337 Thomas Gleixner
2019-05-30 13:47   ` Kate Stewart
2019-05-30 13:50   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:46     ` Kate Stewart
2019-05-29 23:57 ` [Batch 13 patch 36/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 338 Thomas Gleixner
2019-05-31 15:10   ` Zavras, Alexios
2019-06-02 19:00   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 37/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 339 Thomas Gleixner
2019-05-30 13:31   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 13:58   ` Kate Stewart
2019-05-31 15:11   ` Zavras, Alexios
2019-06-02 19:00   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 38/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 340 Thomas Gleixner
2019-05-31 15:12   ` Zavras, Alexios
2019-05-31 18:11   ` Richard Fontana
2019-06-02 19:02   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 39/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 341 Thomas Gleixner
2019-05-30 13:42   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:24   ` Kate Stewart
2019-05-31 15:13   ` Zavras, Alexios
2019-06-02 19:03   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 40/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 342 Thomas Gleixner
2019-05-31 15:14   ` Zavras, Alexios
2019-06-02 19:04   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 41/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 343 Thomas Gleixner
2019-05-30 13:32   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 13:59   ` Kate Stewart
2019-05-31 15:15   ` Zavras, Alexios
2019-06-02 19:05   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 42/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 344 Thomas Gleixner
2019-05-31 15:17   ` Zavras, Alexios
2019-06-02 19:46   ` Allison Randal
2019-05-29 23:57 ` [Batch 13 patch 43/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 345 Thomas Gleixner
2019-05-31 15:18   ` Zavras, Alexios
2019-06-02 19:46   ` Allison Randal
2019-05-29 23:58 ` [Batch 13 patch 44/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 346 Thomas Gleixner
2019-05-30 13:34   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:12   ` Kate Stewart
2019-05-31 15:19   ` Zavras, Alexios
2019-06-02 19:47   ` Allison Randal
2019-05-29 23:58 ` [Batch 13 patch 45/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 347 Thomas Gleixner
2019-05-30 13:34   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:13   ` Kate Stewart
2019-05-31 15:19   ` Zavras, Alexios
2019-06-02 19:48   ` Allison Randal
2019-05-29 23:58 ` [Batch 13 patch 46/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 348 Thomas Gleixner
2019-05-30 13:35   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:13   ` Kate Stewart
2019-05-31 15:20   ` Zavras, Alexios
2019-06-02 19:49   ` Allison Randal
2019-05-29 23:58 ` [Batch 13 patch 47/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 349 Thomas Gleixner
2019-05-30 13:35   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:14   ` Kate Stewart
2019-05-31 15:21   ` Zavras, Alexios
2019-06-02 19:49   ` Allison Randal
2019-05-29 23:58 ` [Batch 13 patch 48/48] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 350 Thomas Gleixner
2019-05-30 13:38   ` Armijn Hemel - Tjaldur Software Governance Solutions
2019-05-30 14:43   ` Kate Stewart
2019-05-31 15:21   ` Zavras, Alexios
2019-06-02 19:51   ` Allison Randal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190530000435.345978407@linutronix.de \
    --to=tglx@linutronix.de \
    --cc=linux-spdx@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).