Commit 2d1fcb60 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Martin K. Petersen

scsi: libiscsi: switch to SPDX tags

Use the the GPLv2+ SPDX tag instead of verbose boilerplate text.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarHannes Reinecke <hare@suse.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 2626b08f
// SPDX-License-Identifier: GPL-2.0+
/* /*
* iSCSI lib functions * iSCSI lib functions
* *
...@@ -6,20 +7,6 @@ ...@@ -6,20 +7,6 @@
* Copyright (C) 2004 - 2005 Dmitry Yusupov * Copyright (C) 2004 - 2005 Dmitry Yusupov
* Copyright (C) 2004 - 2005 Alex Aizman * Copyright (C) 2004 - 2005 Alex Aizman
* maintained by open-iscsi@googlegroups.com * maintained by open-iscsi@googlegroups.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; either version 2 of the License, or
* (at your option) any 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#include <linux/types.h> #include <linux/types.h>
#include <linux/kfifo.h> #include <linux/kfifo.h>
......
// SPDX-License-Identifier: GPL-2.0+
/* /*
* iSCSI over TCP/IP Data-Path lib * iSCSI over TCP/IP Data-Path lib
* *
...@@ -7,18 +8,6 @@ ...@@ -7,18 +8,6 @@
* Copyright (C) 2006 Red Hat, Inc. All rights reserved. * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
* maintained by open-iscsi@googlegroups.com * maintained by open-iscsi@googlegroups.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; either version 2 of the License, or
* (at your option) any 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.
*
* See the file COPYING included with this distribution for more details.
*
* Credits: * Credits:
* Christoph Hellwig * Christoph Hellwig
* FUJITA Tomonori * FUJITA Tomonori
......
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* iSCSI User/Kernel Shares (Defines, Constants, Protocol definitions, etc) * iSCSI User/Kernel Shares (Defines, Constants, Protocol definitions, etc)
* *
* Copyright (C) 2005 Dmitry Yusupov * Copyright (C) 2005 Dmitry Yusupov
* Copyright (C) 2005 Alex Aizman * Copyright (C) 2005 Alex Aizman
* maintained by open-iscsi@googlegroups.com * maintained by open-iscsi@googlegroups.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; either version 2 of the License, or
* (at your option) any 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.
*
* See the file COPYING included with this distribution for more details.
*/ */
#ifndef ISCSI_IF_H #ifndef ISCSI_IF_H
......
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* RFC 3720 (iSCSI) protocol data types * RFC 3720 (iSCSI) protocol data types
* *
* Copyright (C) 2005 Dmitry Yusupov * Copyright (C) 2005 Dmitry Yusupov
* Copyright (C) 2005 Alex Aizman * Copyright (C) 2005 Alex Aizman
* maintained by open-iscsi@googlegroups.com * maintained by open-iscsi@googlegroups.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; either version 2 of the License, or
* (at your option) any 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.
*
* See the file COPYING included with this distribution for more details.
*/ */
#ifndef ISCSI_PROTO_H #ifndef ISCSI_PROTO_H
......
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* iSCSI lib definitions * iSCSI lib definitions
* *
...@@ -5,20 +6,6 @@ ...@@ -5,20 +6,6 @@
* Copyright (C) 2004 - 2006 Mike Christie * Copyright (C) 2004 - 2006 Mike Christie
* Copyright (C) 2004 - 2005 Dmitry Yusupov * Copyright (C) 2004 - 2005 Dmitry Yusupov
* Copyright (C) 2004 - 2005 Alex Aizman * Copyright (C) 2004 - 2005 Alex Aizman
*
* 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; either version 2 of the License, or
* (at your option) any 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifndef LIBISCSI_H #ifndef LIBISCSI_H
#define LIBISCSI_H #define LIBISCSI_H
......
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* iSCSI over TCP/IP Data-Path lib * iSCSI over TCP/IP Data-Path lib
* *
* Copyright (C) 2008 Mike Christie * Copyright (C) 2008 Mike Christie
* Copyright (C) 2008 Red Hat, Inc. All rights reserved. * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
* maintained by open-iscsi@googlegroups.com * maintained by open-iscsi@googlegroups.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; either version 2 of the License, or
* (at your option) any 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.
*
* See the file COPYING included with this distribution for more details.
*/ */
#ifndef LIBISCSI_TCP_H #ifndef LIBISCSI_TCP_H
......
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* iSCSI Transport BSG Interface * iSCSI Transport BSG Interface
* *
* Copyright (C) 2009 James Smart, Emulex Corporation * Copyright (C) 2009 James Smart, Emulex Corporation
*
* 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; either version 2 of the License, or
* (at your option) any 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/ */
#ifndef SCSI_BSG_ISCSI_H #ifndef SCSI_BSG_ISCSI_H
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment