All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] fstests: Conversion of tests to SPDX license tags
@ 2018-06-09  1:55 Dave Chinner
  2018-06-09  1:55 ` [PATCH 1/9] fstests: Add LICENSES directory Dave Chinner
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

Hi folks,

I'm attempting to post this set of patches to the list now that
i've done the SPDX license tag conversion on Eryu's current
staging tree. I'm not sure it will all get through (it's a huge set
of patches), so after I've send this I'll push it all to a git tree
branch on kernel.org.

The conversion is described in detail in the commit message of the
first patch, so I won't repeat it here. It's all scripted, but
there's a few minor touchups that were needed to some files either
before or after the script was run due to non-standard formatting.

The patch is based on Eryu's staging tree, so the patches probably
won't apply to last week's released tree. fstests still appears to
run after the conversion, so I didn't completely break everything.

I'll follow up in the next couple of weeks with patches to convert
other remaining parts of fstests to use SPDX tags. That's a much
smaller job than converting all the tests, so I'll just send patches
for those conversions as I do them.

Cheers,

Dave.


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

* [PATCH 1/9] fstests: Add LICENSES directory
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
@ 2018-06-09  1:55 ` Dave Chinner
  2018-06-09  1:55 ` [PATCH 2/9] common: convert to SPDX license tags Dave Chinner
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

In preparation for changing tests over to use SPDX tags, add the
initial licenses needed for the common/ and tests/ changeover to
the LICENSES/ directory. For this initial patch set, only the GPLv2
license text is required.

The tests and other common scripts will be converted to tags via a
script and, if necessary touched up to fix any warts the script
can't handle. The script is run on a target via:

for f in `git grep -l "GNU General" <target>` ; do
	echo $f
	cat $f | awk -f hdr.awk > $f.new
	mv -f $f.new $f
done

This, unfortunately, changes the permissions of the files, so each
patch was post processed to remove the mode change fields from
the patches before they were committed. This preserves the file
modes, even though the files were replaced.

The awk script that dos all the substitution work is as follows:

$ cat hdr.awk
BEGIN {
        hdr = 1
        tag = "GPL-2.0"
	ignore = 0
        str = ""
	cstr = ""
}

/^#[\!#][ ]*\/bin\/bash/ {
	print $0
	next
}

/^#[\!#][ ]*.*\/perl/ {
	print $0
	next
}

/any later version./ {
        tag = "GPL-2.0+"
        next
}

/^#[\-]{65}/ {
	if (hdr == 1 && ignore == 0) {
		ignore = 1
		hdr = 0
	} else if (ignore == 1) {
		# use this to ignore empty comment line after license
		ignore = 2
	}
	next
}

/This program is free software/ {
	if (hdr == 1 && ignore == 0) {
		ignore = 1
		hdr = 0
	}
	next
}

/02110-1301[, ] *USA/ {
	# use this to ignore empty comment line after license
	if (ignore = 1) {
		ignore = 2
	}
	next
}

/^#[ ]*Copyright/ {
	if (cstr != "")
		cstr = cstr "\n"
	cstr = cstr $0
	next
}

// {
	if (ignore == 2) {
		print "# SPDX-License-Identifier: " tag
		print cstr "\n#"
		print str
		str=""
		ignore = 3

	}
	if (ignore == 1) {
		next
	} else if (ignore == 3) {
		# ignore trailing empty comment lines
		if ($0 == "#")
			next
		ignore = 0
	}

	if (str != "")
		str = str "\n"
	str = str $0
}

END {
	print str
}
$

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 LICENSES/GPL-2.0 | 353 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 353 insertions(+)
 create mode 100644 LICENSES/GPL-2.0

diff --git a/LICENSES/GPL-2.0 b/LICENSES/GPL-2.0
new file mode 100644
index 000000000000..b8db91d3a1cb
--- /dev/null
+++ b/LICENSES/GPL-2.0
@@ -0,0 +1,353 @@
+Valid-License-Identifier: GPL-2.0
+Valid-License-Identifier: GPL-2.0+
+SPDX-URL: https://spdx.org/licenses/GPL-2.0.html
+Usage-Guide:
+  To use this license in source code, put one of the following SPDX
+  tag/value pairs into a comment according to the placement
+  guidelines in the licensing rules documentation.
+  For 'GNU General Public License (GPL) version 2 only' use:
+    SPDX-License-Identifier: GPL-2.0
+  For 'GNU General Public License (GPL) version 2 or any later version' use:
+    SPDX-License-Identifier: GPL-2.0+
+License-Text:
+
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+                       51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+\f
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+\f
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+\f
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+\f
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+\f
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Library General
+Public License instead of this License.
-- 
2.17.0


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

* [PATCH 2/9] common: convert to SPDX license tags
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
  2018-06-09  1:55 ` [PATCH 1/9] fstests: Add LICENSES directory Dave Chinner
@ 2018-06-09  1:55 ` Dave Chinner
  2018-06-09  1:55 ` [PATCH 3/9] fstests: convert new test template to SPDX tags Dave Chinner
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

These have been scripted conversions then cleaned up by hand as
there was no consistency to the formatting of the license headers in
the common/ directory. Author information was also removed (it's in
the git history) and so now the header format is consistently:

##/bin/bash
# SPDX-License-Identifier: GPL-2.0(+)
# Copyright (c) <date> <owner>. All Rights Reserved.
#
# <file description>

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 common/attr        | 21 ++-------------------
 common/config      | 16 +---------------
 common/defrag      | 20 ++------------------
 common/dmapi       | 17 +----------------
 common/dmdelay     | 16 +---------------
 common/dmerror     | 16 +---------------
 common/dmflakey    | 16 +---------------
 common/dmhugedisk  | 23 +++--------------------
 common/dmlogwrites | 16 +---------------
 common/dmthin      | 16 +---------------
 common/dump        | 17 +----------------
 common/encrypt     | 23 +++--------------------
 common/filestreams | 17 +----------------
 common/filter      | 17 +----------------
 common/fuzzy       | 22 +++-------------------
 common/inject      | 24 ++++--------------------
 common/log         | 18 +-----------------
 common/module      | 22 +++-------------------
 common/populate    | 24 ++++--------------------
 common/punch       | 16 +---------------
 common/quota       | 21 ++-------------------
 common/rc          | 22 ++--------------------
 common/reflink     | 23 +++--------------------
 common/renameat2   | 23 +++--------------------
 common/repair      | 17 +----------------
 common/scsi_debug  | 22 ++--------------------
 26 files changed, 49 insertions(+), 456 deletions(-)

diff --git a/common/attr b/common/attr
index 49679d3cf3c6..10b98eefcb17 100644
--- a/common/attr
+++ b/common/attr
@@ -1,24 +1,7 @@
 ##/bin/bash
-#-----------------------------------------------------------------------
-#  Copyright (c) 2000-2004 Silicon Graphics, 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; either version 2 of the License, or
-#  (at your option) any later version.
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
 #
-#  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
-#
-#  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
-#  Mountain View, CA 94043, USA, or: http://www.sgi.com
-#-----------------------------------------------------------------------
 # common extended attribute and ACL support
 
 # filesystems that want to test maximum supported acl counts need to
diff --git a/common/config b/common/config
index d5150050d08d..09e7ffee30e8 100644
--- a/common/config
+++ b/common/config
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2003,2006 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # setup and check for config parameters, and in particular
 #
 # EMAIL -           email of the script runner.
diff --git a/common/defrag b/common/defrag
index d279382f4b56..df249dfda660 100644
--- a/common/defrag
+++ b/common/defrag
@@ -1,24 +1,8 @@
 ##/bin/bash
-#
-# Copyright (c) 2009 Eric Sandeen
-# 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2009 Eric Sandeen. All Rights Reserved.
 #
 # Functions useful for defragmentation tests
-#
 
 _require_defrag()
 {
diff --git a/common/dmapi b/common/dmapi
index 5eff3d92f195..5f7e56f743a7 100644
--- a/common/dmapi
+++ b/common/dmapi
@@ -1,23 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2006 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # dmapi functions
-#
 
 # Commands relitive to dmapi qa
 
diff --git a/common/dmdelay b/common/dmdelay
index 7f30d50184db..b9e4b9bb6cf0 100644
--- a/common/dmdelay
+++ b/common/dmdelay
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2016 Red Hat, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for setting up and tearing down a dmdelay device
 
 DELAY_NONE=0
diff --git a/common/dmerror b/common/dmerror
index 238baa213b1f..4d6b8851b120 100644
--- a/common/dmerror
+++ b/common/dmerror
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2015 Oracle.  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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for setting up and tearing down a dmerror device
 
 echo $MOUNT_OPTIONS | grep -q dax
diff --git a/common/dmflakey b/common/dmflakey
index 06eee378d0a2..51eab16bd080 100644
--- a/common/dmflakey
+++ b/common/dmflakey
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2013 Fusion IO, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for setting up and tearing down a dmflakey device
 
 FLAKEY_ALLOW_WRITES=0
diff --git a/common/dmhugedisk b/common/dmhugedisk
index 733b10cd2292..4d0406d617c8 100644
--- a/common/dmhugedisk
+++ b/common/dmhugedisk
@@ -1,25 +1,8 @@
 ##/bin/bash
-# Routines for creating huge (fake) disks
-#-----------------------------------------------------------------------
-#  Copyright (c) 2016 Oracle.  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; 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.
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2016 Oracle.  All Rights Reserved.
 #
-#  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
-#
-#  Contact information: Oracle Corporation, 500 Oracle Parkway,
-#  Redwood Shores, CA 94065, USA, or: http://www.oracle.com/
-#-----------------------------------------------------------------------
+# Routines for creating huge (fake) disks
 
 _require_dmhugedisk()
 {
diff --git a/common/dmlogwrites b/common/dmlogwrites
index bf643a77ad09..9963bd98c2e6 100644
--- a/common/dmlogwrites
+++ b/common/dmlogwrites
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2015 Facebook, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for setting up and tearing down a dm log-writes device
 
 _require_log_writes()
diff --git a/common/dmthin b/common/dmthin
index da0ad28488be..039d63e2397a 100644
--- a/common/dmthin
+++ b/common/dmthin
@@ -1,21 +1,7 @@
 #!/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2015 Red Hat, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for setting up and tearing down a dmthin device
 
 # SOOO many devices!
diff --git a/common/dump b/common/dump
index 8a0ba1096d6a..b6b7fb46b236 100644
--- a/common/dump
+++ b/common/dump
@@ -1,23 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2002,2005 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # Functions useful for xfsdump/xfsrestore tests
-#
 
 # --- initializations ---
 rm -f $seqres.full
diff --git a/common/encrypt b/common/encrypt
index 3d77ebd2cecc..1b10aa71ba24 100644
--- a/common/encrypt
+++ b/common/encrypt
@@ -1,25 +1,8 @@
-#-----------------------------------------------------------------------
-#
-# Common functions for testing filesystem-level encryption
-#
-#-----------------------------------------------------------------------
+##/bin/bash
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2016 Google, Inc.  All Rights Reserved.
 #
-# Author: Eric Biggers <ebiggers@google.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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#-----------------------------------------------------------------------
+# Functions for setting up and testing file encryption
 
 _require_scratch_encryption()
 {
diff --git a/common/filestreams b/common/filestreams
index d7a656f8bc23..267dcb3c3688 100644
--- a/common/filestreams
+++ b/common/filestreams
@@ -1,23 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2007 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # Core of filestreams tests.
-#
 
 _check_filestreams_support()
 {
diff --git a/common/filter b/common/filter
index 53874a08f5e3..3965c2eb752b 100644
--- a/common/filter
+++ b/common/filter
@@ -1,23 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2001 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # standard filters
-#
 
 # Checks that given_value is in range of correct_value +/- tolerance.
 # Tolerance can be an absolute value or a percentage of the correct value
diff --git a/common/fuzzy b/common/fuzzy
index f89765c1bfd2..8c370ae67b5a 100644
--- a/common/fuzzy
+++ b/common/fuzzy
@@ -1,24 +1,8 @@
 ##/bin/bash
-
-# Routines for fuzzing and scrubbing a filesystem.
-#
-#-----------------------------------------------------------------------
-#  Copyright (c) 2017 Oracle.  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; either version 2 of the License, or
-#  (at your option) any later version.
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2017 Oracle.  All Rights Reserved.
 #
-#  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
-#-----------------------------------------------------------------------
+# Routines for fuzzing and scrubbing a filesystem.
 
 # Modify various files after a fuzzing operation
 _scratch_fuzz_modify() {
diff --git a/common/inject b/common/inject
index f30d0ba71449..903fb3790b92 100644
--- a/common/inject
+++ b/common/inject
@@ -1,25 +1,9 @@
 ##/bin/bash
-# Routines for injecting errors into filesystems
-#-----------------------------------------------------------------------
-#  Copyright (c) 2016 Oracle.  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; 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
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2016 Oracle.  All Rights Reserved.
 #
-#  Contact information: Oracle Corporation, 500 Oracle Parkway,
-#  Redwood Shores, CA 94065, USA, or: http://www.oracle.com/
-#-----------------------------------------------------------------------
+# Routines for injecting errors into filesystems
+
 . ./common/log
 
 # Tests whether $FSTYP is one of the filesystems that supports error injection
diff --git a/common/log b/common/log
index 7a0a5f1f3b16..c7921f5020b2 100644
--- a/common/log
+++ b/common/log
@@ -1,24 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2002 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common routines for log testing
-# Created by dxm@sgi.com & tes@sgi.com
-#
 
 fulldir=$seqres.fulldir
 rm -rf $fulldir
diff --git a/common/module b/common/module
index ebaf29063362..39e4e7931c24 100644
--- a/common/module
+++ b/common/module
@@ -1,24 +1,8 @@
 ##/bin/bash
-
-# Routines for messing around with loadable kernel modules
-#
-#-----------------------------------------------------------------------
-#  Copyright (c) 2017 Oracle.  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; either version 2 of the License, or
-#  (at your option) any later version.
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2017 Oracle.  All Rights Reserved.
 #
-#  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
-#-----------------------------------------------------------------------
+# Routines for messing around with loadable kernel modules
 
 # Return the module name for this fs.
 _module_for_fs()
diff --git a/common/populate b/common/populate
index b2dd053ff781..8c08f51656d5 100644
--- a/common/populate
+++ b/common/populate
@@ -1,26 +1,10 @@
 ##/bin/bash
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2015 Oracle.  All Rights Reserved.
+#
 # Routines for populating a scratch fs, and helpers to exercise an FS
 # once it's been fuzzed.
-#-----------------------------------------------------------------------
-#  Copyright (c) 2015 Oracle.  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; 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
-#
-#  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
-#  Mountain View, CA 94043, USA, or: http://www.sgi.com
-#-----------------------------------------------------------------------
+
 . ./common/quota
 
 _require_populate_commands() {
diff --git a/common/punch b/common/punch
index 42a7e97496b7..8088b01a787c 100644
--- a/common/punch
+++ b/common/punch
@@ -1,21 +1,7 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2007 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # common functions for excersizing hole punches with extent size hints etc.
 
 # source dmap_scratch_mount etc.
diff --git a/common/quota b/common/quota
index 68c350ee5bbb..0ea1922b7c1f 100644
--- a/common/quota
+++ b/common/quota
@@ -1,26 +1,9 @@
 ##/bin/bash
-#
-# Copyright (c) 2000-2001,2005 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.  All Rights Reserved.
 #
 # Functions useful for quota tests
-#
 
-#
 # checks that the generic quota support in the kernel is enabled
 # and that we have valid quota user tools installed.
 #
diff --git a/common/rc b/common/rc
index 9d6665b6c4d7..b595a6e05662 100644
--- a/common/rc
+++ b/common/rc
@@ -1,24 +1,6 @@
 ##/bin/bash
-#-----------------------------------------------------------------------
-#  Copyright (c) 2000-2006 Silicon Graphics, 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; 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
-#
-#  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
-#  Mountain View, CA 94043, USA, or: http://www.sgi.com
-#-----------------------------------------------------------------------
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2000-2006 Silicon Graphics, Inc.  All Rights Reserved.
 
 . common/config
 
diff --git a/common/reflink b/common/reflink
index 2a7c7b848e2b..e26632774f8a 100644
--- a/common/reflink
+++ b/common/reflink
@@ -1,25 +1,8 @@
 ##/bin/bash
-# Routines for reflinking, deduping, and comparing parts of files.
-#-----------------------------------------------------------------------
-#  Copyright (c) 2015 Oracle.  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; 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.
+# SPDX-License-Identifier: GPL-2.0+
+# Copyright (c) 2015 Oracle.  All Rights Reserved.
 #
-#  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
-#
-#  Contact information: Oracle Corporation, 500 Oracle Parkway,
-#  Redwood Shores, CA 94065, USA, or: http://www.oracle.com/
-#-----------------------------------------------------------------------
+# Routines for reflinking, deduping, and comparing parts of files.
 
 # Check that cp has a reflink argument
 _require_cp_reflink()
diff --git a/common/renameat2 b/common/renameat2
index a33516972088..f8d6d4f7a2bd 100644
--- a/common/renameat2
+++ b/common/renameat2
@@ -1,26 +1,9 @@
-######
-#
-# renameat2 helpers
-#
-#-----------------------------------------------------------------------
+##/bin/bash
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2014 Miklos Szeredi.  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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#-----------------------------------------------------------------------
-#
+# renameat2 helpers
 
-#
 # Setup source or dest
 #
 _setup_one()
diff --git a/common/repair b/common/repair
index b56954138401..6bbaffbe0b8a 100644
--- a/common/repair
+++ b/common/repair
@@ -1,23 +1,8 @@
 ##/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2002 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # Functions useful for xfs_repair tests
-#
 
 _zero_position()
 {
diff --git a/common/scsi_debug b/common/scsi_debug
index 74c3802b76b3..d9aa0bd253fc 100644
--- a/common/scsi_debug
+++ b/common/scsi_debug
@@ -1,26 +1,8 @@
 ##/bin/bash
-#
-# Copyright (c) 2012 Red Hat, Inc
-# All Rights Reserved.
-#
-# Written by Eric Sandeen <sandeen@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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2012 Red Hat, Inc. All Rights Reserved.
 #
 # Functions useful for tests on unique block devices
-#
 
 _require_scsi_debug()
 {
-- 
2.17.0


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

* [PATCH 3/9] fstests: convert new test template to SPDX tags
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
  2018-06-09  1:55 ` [PATCH 1/9] fstests: Add LICENSES directory Dave Chinner
  2018-06-09  1:55 ` [PATCH 2/9] common: convert to SPDX license tags Dave Chinner
@ 2018-06-09  1:55 ` Dave Chinner
  2018-06-09  1:55 ` [PATCH 8/9] fstests: convert top level files and tools to SPDX Dave Chinner
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 new | 41 +++++------------------------------------
 1 file changed, 5 insertions(+), 36 deletions(-)

diff --git a/new b/new
index 112a63d5b9f8..2bb8ce5055c1 100755
--- a/new
+++ b/new
@@ -1,22 +1,6 @@
 #! /bin/bash
-#
-#-----------------------------------------------------------------------
-#  Copyright (c) 2000-2005 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#-----------------------------------------------------------------------
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
 #
 # Make a new test
 #
@@ -162,28 +146,13 @@ year=`date +%Y`
 
 cat <<End-of-File >$tdir/$id
 #! /bin/bash
-# FS QA Test $id
-#
-# what am I here for?
-#
-#-----------------------------------------------------------------------
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) $year YOUR NAME HERE.  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.
-#
-# This program is distributed in the hope that it would 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.
+# FS QA Test $id
 #
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#-----------------------------------------------------------------------
+# what am I here for?
 #
-
 seq=\`basename \$0\`
 seqres=\$RESULT_DIR/\$seq
 echo "QA output created by \$seq"
-- 
2.17.0


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

* [PATCH 8/9] fstests: convert top level files and tools to SPDX
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
                   ` (2 preceding siblings ...)
  2018-06-09  1:55 ` [PATCH 3/9] fstests: convert new test template to SPDX tags Dave Chinner
@ 2018-06-09  1:55 ` Dave Chinner
  2018-06-09  1:55 ` [PATCH 9/9] fstests: make lsqa.pl work with SPDX tags Dave Chinner
  2018-06-09  2:17 ` [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
  5 siblings, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

Scripted conversion, see script in initial SPDX license commit
message. Many files required touch-ups after the script had run
because of the old and widely different formats. most touchups were
to remove excess empty comment lines the script left behind.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 Makefile               | 18 +-----------------
 check                  | 19 ++-----------------
 lsqa.pl                | 16 +---------------
 randomize.awk          | 15 +--------------
 setup                  | 15 +--------------
 soak                   | 17 +----------------
 tools/ag-wipe          | 18 +++---------------
 tools/auto-qa          | 16 +---------------
 tools/compare-failures | 22 +++-------------------
 tools/db-walk          | 18 +-----------------
 tools/fs-walk          | 17 +----------------
 tools/interop          | 16 +---------------
 12 files changed, 17 insertions(+), 190 deletions(-)

diff --git a/Makefile b/Makefile
index 1064984573be..9fd37e0cca54 100644
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,6 @@
-#
+# SPDX-License-Identifier: GPL-2.0+
 # Copyright (C) 2000-2008, 2011 SGI  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; 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., 51 Franklin Street, Fifth Floor, Boston, MA
-# 02110-1301, USA.
-#
-
 ifeq ("$(origin V)", "command line")
   BUILD_VERBOSE = $(V)
 endif
diff --git a/check b/check
index d768d6e90358..f3c8021d94b9 100755
--- a/check
+++ b/check
@@ -1,24 +1,9 @@
 #!/bin/bash
-#
-# Control script for QA
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2002,2006 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
+# Control script for QA
 #
-
 tmp=/tmp/$$
 status=0
 needwrap=true
diff --git a/lsqa.pl b/lsqa.pl
index b4fc83f43f99..dd45eeda4e2c 100755
--- a/lsqa.pl
+++ b/lsqa.pl
@@ -1,21 +1,7 @@
 #!/usr/bin/perl -w
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2008 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-
 # Print headers of given tests
 # Accepted parameter types:
 # - nothing - list all tests from all subdirectories in tests/*
diff --git a/randomize.awk b/randomize.awk
index 2504eb85be13..0a8ad71aa94a 100644
--- a/randomize.awk
+++ b/randomize.awk
@@ -1,19 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2005 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-
 # randomize stdin.
 
 function randomize(array, N) {
diff --git a/setup b/setup
index eb37d80abe48..375a54c98ddf 100755
--- a/setup
+++ b/setup
@@ -1,20 +1,7 @@
 #!/bin/bash
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2003-2004 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
 usage()
 {
 
diff --git a/soak b/soak
index 26b345a3e4a9..d5c4229ad6e7 100755
--- a/soak
+++ b/soak
@@ -1,22 +1,7 @@
 #!/bin/bash
-#-----------------------------------------------------------------------
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2002 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#-----------------------------------------------------------------------
-#
 
 # get standard environment, filters and checks
 . ./common/rc
diff --git a/tools/ag-wipe b/tools/ag-wipe
index 476f0eaf0315..52acf0f80127 100755
--- a/tools/ag-wipe
+++ b/tools/ag-wipe
@@ -1,23 +1,11 @@
 #!/usr/bin/perl -w
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2003-2004 Silicon Graphics, Inc.  All Rights Reserved.
+#
 use strict;
 use IO::File;
 use Getopt::Std;
 #
-# Copyright (c) 2003-2004 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
 #
 # Modify a filesystem's superblock and AGF metadata structures
 # so that only a subset of the allocation groups will be used.
diff --git a/tools/auto-qa b/tools/auto-qa
index b81b0b5960c2..1d0cc07cc0a4 100755
--- a/tools/auto-qa
+++ b/tools/auto-qa
@@ -1,21 +1,7 @@
 #!/bin/sh
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2003 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # automatic qa system. 31/08/00 dxm@sgi.com
 #
 # Usage: auto_qa start-state [stop-state]
diff --git a/tools/compare-failures b/tools/compare-failures
index 9604a6385552..d72f168569a7 100755
--- a/tools/compare-failures
+++ b/tools/compare-failures
@@ -1,5 +1,7 @@
 #!/bin/bash
-
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2017 Red Hat, Inc.  All Rights Reserved.
+#
 # Compare test failures across runs
 #
 # Takes multiple "results" files as arguments, comprised of the
@@ -7,24 +9,6 @@
 #
 # Outputs a table of failures for comparison across runs
 #
-#-----------------------------------------------------------------------
-# Copyright (c) 2017 Red Hat, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#-----------------------------------------------------------------------
-#
-
 filter_names() {
 	sed -e s/btrfs/b/ \
 	    -e s/cifs/c/g \
diff --git a/tools/db-walk b/tools/db-walk
index b64758706ff4..e0992055959f 100755
--- a/tools/db-walk
+++ b/tools/db-walk
@@ -1,25 +1,9 @@
 #!/usr/bin/perl -w
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2001 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # use db to try to traverse the entire filesystem starting at the root
 #
-#                                                       dxm 5/10/00
-
 my $device;
 my $rootino;
 my $agcount;
diff --git a/tools/fs-walk b/tools/fs-walk
index 0c80cd88e5d5..918e1ad67f36 100755
--- a/tools/fs-walk
+++ b/tools/fs-walk
@@ -1,24 +1,9 @@
 #!/usr/bin/perl -w
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2000-2001 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-#
 # traverse the entire filesystem dumping info.
 #
-#                                                       dxm 5/10/00
 use MD5;
 use Getopt::Std;
 
diff --git a/tools/interop b/tools/interop
index 0cfa2e4e886d..dc1652c2b2ee 100755
--- a/tools/interop
+++ b/tools/interop
@@ -1,21 +1,7 @@
 #!/usr/sbin/perl
-#
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2001 Silicon Graphics, 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.
-#
-# This program is distributed in the hope that it would 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 the Free Software Foundation,
-# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-
 sub setup()
 {
     $PATH="$PATH:/usr/local/bin/ptools:/sbin:/usr/sbin";
-- 
2.17.0


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

* [PATCH 9/9] fstests: make lsqa.pl work with SPDX tags
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
                   ` (3 preceding siblings ...)
  2018-06-09  1:55 ` [PATCH 8/9] fstests: convert top level files and tools to SPDX Dave Chinner
@ 2018-06-09  1:55 ` Dave Chinner
  2018-06-09  2:17 ` [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
  5 siblings, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  1:55 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

The regex matches used to dump the test headers are no longer valid,
so update them to work with the new test header format.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 lsqa.pl | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lsqa.pl b/lsqa.pl
index dd45eeda4e2c..8ca1167f845c 100755
--- a/lsqa.pl
+++ b/lsqa.pl
@@ -95,9 +95,11 @@ sub get_qa_header($) {
     open(my $FH, $f) || die "couldn't open '$f': $!";
     while (<$FH>) {
 	#ignore.
-	m/^#\!/    		and next; #shebang
-	m/^#\s*\-{10}/		and last; #dashed lines
-	m/^#\s*copyright/i 	and last; #copyright lines
+	m/^#\!/			and next; # shebang
+	m/^# SPDX/i		and next; # SPDX tags
+	m/^# Copyright/i	and next; # Copyright tags
+	m/^#\s*\-{10}/		and last; # dashed lines
+	m/^seq/i		and last; # test start
 
 	s/^# *//;
 
-- 
2.17.0


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

* Re: [PATCH 0/9] fstests: Conversion of tests to SPDX license tags
  2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
                   ` (4 preceding siblings ...)
  2018-06-09  1:55 ` [PATCH 9/9] fstests: make lsqa.pl work with SPDX tags Dave Chinner
@ 2018-06-09  2:17 ` Dave Chinner
  2018-06-10 13:47   ` Eryu Guan
  5 siblings, 1 reply; 8+ messages in thread
From: Dave Chinner @ 2018-06-09  2:17 UTC (permalink / raw)
  To: fstests

On Sat, Jun 09, 2018 at 11:55:31AM +1000, Dave Chinner wrote:
> Hi folks,
> 
> I'm attempting to post this set of patches to the list now that
> i've done the SPDX license tag conversion on Eryu's current
> staging tree. I'm not sure it will all get through (it's a huge set
> of patches), so after I've send this I'll push it all to a git tree
> branch on kernel.org.

Eryu, it looks like the majority of the patches didn't make it
through vger and back to me. So to solve that problem, here's the
pull request from my own repo on kernel.org. git.kernel.org doesn't
show it up yet as I write this (hasn't mirror across), but the repo
is there. 

Cheers,

Dave.

The following changes since commit 25ce9740065e1ac00b699b3fb84cc651aeaf5032:

  generic: test swapfile creation, activation, and deactivation (2018-06-08 14:12:27 +0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/dgc/xfstests-dev spdx-tags

for you to fetch changes up to 3805d7e97a9e62993bd6229cc73a50ec7b5fc84b:

  fstests: make lsqa.pl work with SPDX tags (2018-06-09 11:45:38 +1000)

----------------------------------------------------------------
Dave Chinner (9):
      fstests: Add LICENSES directory
      common: convert to SPDX license tags
      fstests: convert new test template to SPDX tags
      generic: convert tests to SPDX license tags
      xfs: convert tests to SPDX license tags
      btrfs: convert tests to SPDX license tags
      fstests: convert remaining tests to SPDX license tags
      fstests: convert top level files and tools to SPDX
      fstests: make lsqa.pl work with SPDX tags

 LICENSES/GPL-2.0               | 353 +++++++++++++++++++++++++++++++++++++++++
 Makefile                       |  18 +--
 check                          |  19 +--
 common/attr                    |  21 +--
 common/config                  |  16 +-
 common/defrag                  |  20 +--
 common/dmapi                   |  17 +-
 common/dmdelay                 |  16 +-
 common/dmerror                 |  16 +-
 common/dmflakey                |  16 +-
 common/dmhugedisk              |  23 +--
 common/dmlogwrites             |  16 +-
 common/dmthin                  |  16 +-
 common/dump                    |  17 +-
 common/encrypt                 |  23 +--
 common/filestreams             |  17 +-
 common/filter                  |  17 +-
 common/fuzzy                   |  22 +--
 common/inject                  |  24 +--
 common/log                     |  18 +--
 common/module                  |  22 +--
 common/populate                |  24 +--
 common/punch                   |  16 +-
 common/quota                   |  21 +--
 common/rc                      |  22 +--
 common/reflink                 |  23 +--
 common/renameat2               |  23 +--
 common/repair                  |  17 +-
 common/scsi_debug              |  22 +--
 lsqa.pl                        |  24 +--
 new                            |  41 +----
 randomize.awk                  |  15 +-
 setup                          |  15 +-
 soak                           |  17 +-
 tests/btrfs/001                |  22 +--
 tests/btrfs/002                |  22 +--
 tests/btrfs/003                |  21 +--
 tests/btrfs/004                |  22 +--
 tests/btrfs/005                |  21 +--
 tests/btrfs/006                |  21 +--
 tests/btrfs/007                |  21 +--
 tests/btrfs/008                |  22 +--
 tests/btrfs/009                |  22 +--
 tests/btrfs/010                |  21 +--
 tests/btrfs/011                |  22 +--
 tests/btrfs/012                |  21 +--
 tests/btrfs/013                |  22 +--
 tests/btrfs/014                |  21 +--
 tests/btrfs/015                |  22 +--
 tests/btrfs/016                |  22 +--
 tests/btrfs/017                |  21 +--
 tests/btrfs/018                |  22 +--
 tests/btrfs/019                |  22 +--
 tests/btrfs/020                |  22 +--
 tests/btrfs/021                |  21 +--
 tests/btrfs/022                |  21 +--
 tests/btrfs/023                |  21 +--
 tests/btrfs/024                |  22 +--
 tests/btrfs/025                |  21 +--
 tests/btrfs/026                |  23 +--
 tests/btrfs/027                |  21 +--
 tests/btrfs/028                |  21 +--
 tests/btrfs/029                |  20 +--
 tests/btrfs/030                |  21 +--
 tests/btrfs/031                |  20 +--
 tests/btrfs/032                |  22 +--
 tests/btrfs/033                |  22 +--
 tests/btrfs/034                |  21 +--
 tests/btrfs/035                |  22 +--
 tests/btrfs/036                |  22 +--
 tests/btrfs/037                |  21 +--
 tests/btrfs/038                |  21 +--
 tests/btrfs/039                |  21 +--
 tests/btrfs/040                |  21 +--
 tests/btrfs/041                |  21 +--
 tests/btrfs/042                |  21 +--
 tests/btrfs/043                |  21 +--
 tests/btrfs/044                |  21 +--
 tests/btrfs/045                |  21 +--
 tests/btrfs/046                |  21 +--
 tests/btrfs/047                |  21 +--
 tests/btrfs/048                |  21 +--
 tests/btrfs/049                |  21 +--
 tests/btrfs/050                |  21 +--
 tests/btrfs/051                |  21 +--
 tests/btrfs/052                |  21 +--
 tests/btrfs/053                |  21 +--
 tests/btrfs/054                |  21 +--
 tests/btrfs/055                |  21 +--
 tests/btrfs/056                |  21 +--
 tests/btrfs/057                |  22 +--
 tests/btrfs/058                |  22 +--
 tests/btrfs/059                |  22 +--
 tests/btrfs/060                |  22 +--
 tests/btrfs/061                |  22 +--
 tests/btrfs/062                |  22 +--
 tests/btrfs/063                |  22 +--
 tests/btrfs/064                |  22 +--
 tests/btrfs/065                |  22 +--
 tests/btrfs/066                |  22 +--
 tests/btrfs/067                |  22 +--
 tests/btrfs/068                |  22 +--
 tests/btrfs/069                |  22 +--
 tests/btrfs/070                |  22 +--
 tests/btrfs/071                |  22 +--
 tests/btrfs/072                |  22 +--
 tests/btrfs/073                |  22 +--
 tests/btrfs/074                |  22 +--
 tests/btrfs/075                |  22 +--
 tests/btrfs/076                |  21 +--
 tests/btrfs/077                |  22 +--
 tests/btrfs/078                |  23 +--
 tests/btrfs/079                |  22 +--
 tests/btrfs/080                |  23 +--
 tests/btrfs/081                |  23 +--
 tests/btrfs/082                |  22 +--
 tests/btrfs/083                |  22 +--
 tests/btrfs/084                |  22 +--
 tests/btrfs/085                |  22 +--
 tests/btrfs/086                |  22 +--
 tests/btrfs/087                |  22 +--
 tests/btrfs/088                |  22 +--
 tests/btrfs/089                |  21 +--
 tests/btrfs/090                |  21 +--
 tests/btrfs/091                |  21 +--
 tests/btrfs/092                |  22 +--
 tests/btrfs/093                |  22 +--
 tests/btrfs/094                |  22 +--
 tests/btrfs/095                |  23 +--
 tests/btrfs/096                |  23 +--
 tests/btrfs/097                |  22 +--
 tests/btrfs/098                |  23 +--
 tests/btrfs/099                |  21 +--
 tests/btrfs/100                |  18 +--
 tests/btrfs/101                |  18 +--
 tests/btrfs/102                |  23 +--
 tests/btrfs/103                |  23 +--
 tests/btrfs/104                |  22 +--
 tests/btrfs/105                |  24 +--
 tests/btrfs/106                |  23 +--
 tests/btrfs/107                |  21 +--
 tests/btrfs/108                |  22 +--
 tests/btrfs/109                |  22 +--
 tests/btrfs/110                |  22 +--
 tests/btrfs/111                |  22 +--
 tests/btrfs/112                |  23 +--
 tests/btrfs/113                |  23 +--
 tests/btrfs/114                |  21 +--
 tests/btrfs/115                |  21 +--
 tests/btrfs/116                |  23 +--
 tests/btrfs/117                |  23 +--
 tests/btrfs/118                |  23 +--
 tests/btrfs/119                |  23 +--
 tests/btrfs/120                |  23 +--
 tests/btrfs/121                |  22 +--
 tests/btrfs/122                |  22 +--
 tests/btrfs/123                |  21 +--
 tests/btrfs/124                |  21 +--
 tests/btrfs/125                |  21 +--
 tests/btrfs/126                |  21 +--
 tests/btrfs/127                |  22 +--
 tests/btrfs/128                |  22 +--
 tests/btrfs/129                |  22 +--
 tests/btrfs/130                |  21 +--
 tests/btrfs/131                |  21 +--
 tests/btrfs/132                |  21 +--
 tests/btrfs/133                |  22 +--
 tests/btrfs/134                |  22 +--
 tests/btrfs/135                |  22 +--
 tests/btrfs/136                |  21 +--
 tests/btrfs/137                |  23 +--
 tests/btrfs/138                |  21 +--
 tests/btrfs/139                |  21 +--
 tests/btrfs/140                |  21 +--
 tests/btrfs/141                |  21 +--
 tests/btrfs/142                |  21 +--
 tests/btrfs/143                |  21 +--
 tests/btrfs/144                |  23 +--
 tests/btrfs/145                |  23 +--
 tests/btrfs/146                |  20 +--
 tests/btrfs/147                |  23 +--
 tests/btrfs/148                |  23 +--
 tests/btrfs/149                |  23 +--
 tests/btrfs/150                |  21 +--
 tests/btrfs/151                |  21 +--
 tests/btrfs/152                |  22 +--
 tests/btrfs/153                |  22 +--
 tests/btrfs/154                |  22 +--
 tests/btrfs/155                |  23 +--
 tests/btrfs/156                |  21 +--
 tests/btrfs/157                |  21 +--
 tests/btrfs/158                |  21 +--
 tests/btrfs/159                |  23 +--
 tests/btrfs/160                |  20 +--
 tests/btrfs/161                |  21 +--
 tests/btrfs/162                |  21 +--
 tests/btrfs/163                |  21 +--
 tests/btrfs/164                |  21 +--
 tests/cifs/001                 |  22 +--
 tests/ext4/001                 |  22 +--
 tests/ext4/002                 |  21 +--
 tests/ext4/003                 |  16 +-
 tests/ext4/004                 |  22 +--
 tests/ext4/005                 |  21 +--
 tests/ext4/006                 |  21 +--
 tests/ext4/007                 |  21 +--
 tests/ext4/008                 |  21 +--
 tests/ext4/009                 |  21 +--
 tests/ext4/010                 |  21 +--
 tests/ext4/011                 |  21 +--
 tests/ext4/012                 |  21 +--
 tests/ext4/013                 |  21 +--
 tests/ext4/014                 |  21 +--
 tests/ext4/015                 |  21 +--
 tests/ext4/016                 |  21 +--
 tests/ext4/017                 |  21 +--
 tests/ext4/018                 |  21 +--
 tests/ext4/019                 |  21 +--
 tests/ext4/020                 |  21 +--
 tests/ext4/021                 |  21 +--
 tests/ext4/022                 |  21 +--
 tests/ext4/023                 |  21 +--
 tests/ext4/024                 |  23 +--
 tests/ext4/025                 |  22 +--
 tests/ext4/026                 |  21 +--
 tests/ext4/027                 |  20 +--
 tests/ext4/028                 |  20 +--
 tests/ext4/029                 |  20 +--
 tests/ext4/030                 |  21 +--
 tests/ext4/031                 |  21 +--
 tests/ext4/032                 |  22 +--
 tests/ext4/033                 |  21 +--
 tests/ext4/271                 |  22 +--
 tests/ext4/301                 |  22 +--
 tests/ext4/302                 |  22 +--
 tests/ext4/303                 |  22 +--
 tests/ext4/304                 |  22 +--
 tests/ext4/305                 |  21 +--
 tests/ext4/306                 |  20 +--
 tests/ext4/307                 |  22 +--
 tests/ext4/308                 |  20 +--
 tests/f2fs/001                 |  21 +--
 tests/generic/001              |  22 +--
 tests/generic/002              |  22 +--
 tests/generic/003              |  20 +--
 tests/generic/004              |  21 +--
 tests/generic/005              |  22 +--
 tests/generic/006              |  22 +--
 tests/generic/007              |  22 +--
 tests/generic/008              |  21 +--
 tests/generic/009              |  22 +--
 tests/generic/010              |  22 +--
 tests/generic/011              |  22 +--
 tests/generic/012              |  22 +--
 tests/generic/013              |  22 +--
 tests/generic/014              |  22 +--
 tests/generic/015              |  22 +--
 tests/generic/016              |  22 +--
 tests/generic/017              |  22 +--
 tests/generic/018              |  21 +--
 tests/generic/019              |  22 +--
 tests/generic/020              |  22 +--
 tests/generic/021              |  22 +--
 tests/generic/022              |  22 +--
 tests/generic/023              |  21 +--
 tests/generic/024              |  21 +--
 tests/generic/025              |  21 +--
 tests/generic/026              |  22 +--
 tests/generic/027              |  21 +--
 tests/generic/028              |  21 +--
 tests/generic/029              |  21 +--
 tests/generic/030              |  21 +--
 tests/generic/031              |  21 +--
 tests/generic/032              |  21 +--
 tests/generic/033              |  21 +--
 tests/generic/034              |  22 +--
 tests/generic/035              |  21 +--
 tests/generic/036              |  20 +--
 tests/generic/037              |  23 +--
 tests/generic/038              |  23 +--
 tests/generic/039              |  22 +--
 tests/generic/040              |  22 +--
 tests/generic/041              |  22 +--
 tests/generic/042              |  21 +--
 tests/generic/043              |  22 +--
 tests/generic/044              |  22 +--
 tests/generic/045              |  22 +--
 tests/generic/046              |  22 +--
 tests/generic/047              |  22 +--
 tests/generic/048              |  22 +--
 tests/generic/049              |  22 +--
 tests/generic/050              |  21 +--
 tests/generic/051              |  22 +--
 tests/generic/052              |  22 +--
 tests/generic/053              |  22 +--
 tests/generic/054              |  22 +--
 tests/generic/055              |  22 +--
 tests/generic/056              |  22 +--
 tests/generic/057              |  22 +--
 tests/generic/058              |  22 +--
 tests/generic/059              |  22 +--
 tests/generic/060              |  22 +--
 tests/generic/061              |  22 +--
 tests/generic/062              |  22 +--
 tests/generic/063              |  22 +--
 tests/generic/064              |  22 +--
 tests/generic/065              |  22 +--
 tests/generic/066              |  22 +--
 tests/generic/067              |  21 +--
 tests/generic/068              |  22 +--
 tests/generic/069              |  22 +--
 tests/generic/070              |  22 +--
 tests/generic/071              |  22 +--
 tests/generic/072              |  21 +--
 tests/generic/073              |  22 +--
 tests/generic/074              |  22 +--
 tests/generic/075              |  22 +--
 tests/generic/076              |  22 +--
 tests/generic/077              |  22 +--
 tests/generic/078              |  21 +--
 tests/generic/079              |  22 +--
 tests/generic/080              |  19 +--
 tests/generic/081              |  21 +--
 tests/generic/082              |  21 +--
 tests/generic/083              |  22 +--
 tests/generic/084              |  21 +--
 tests/generic/085              |  21 +--
 tests/generic/086              |  21 +--
 tests/generic/087              |  23 +--
 tests/generic/088              |  22 +--
 tests/generic/089              |  22 +--
 tests/generic/090              |  22 +--
 tests/generic/091              |  22 +--
 tests/generic/092              |  21 +--
 tests/generic/093              |  22 +--
 tests/generic/094              |  21 +--
 tests/generic/095              |  21 +--
 tests/generic/096              |  21 +--
 tests/generic/097              |  24 +--
 tests/generic/098              |  23 +--
 tests/generic/099              |  24 +--
 tests/generic/100              |  22 +--
 tests/generic/101              |  23 +--
 tests/generic/102              |  22 +--
 tests/generic/103              |  22 +--
 tests/generic/104              |  23 +--
 tests/generic/105              |  22 +--
 tests/generic/106              |  23 +--
 tests/generic/107              |  23 +--
 tests/generic/108              |  21 +--
 tests/generic/109              |  22 +--
 tests/generic/110              |  21 +--
 tests/generic/111              |  20 +--
 tests/generic/112              |  22 +--
 tests/generic/113              |  22 +--
 tests/generic/114              |  21 +--
 tests/generic/115              |  20 +--
 tests/generic/116              |  20 +--
 tests/generic/117              |  22 +--
 tests/generic/118              |  20 +--
 tests/generic/119              |  20 +--
 tests/generic/120              |  22 +--
 tests/generic/121              |  20 +--
 tests/generic/122              |  20 +--
 tests/generic/123              |  22 +--
 tests/generic/124              |  22 +--
 tests/generic/125              |  22 +--
 tests/generic/126              |  22 +--
 tests/generic/127              |  22 +--
 tests/generic/128              |  22 +--
 tests/generic/129              |  22 +--
 tests/generic/130              |  22 +--
 tests/generic/131              |  22 +--
 tests/generic/132              |  22 +--
 tests/generic/133              |  22 +--
 tests/generic/134              |  20 +--
 tests/generic/135              |  22 +--
 tests/generic/136              |  20 +--
 tests/generic/137              |  20 +--
 tests/generic/138              |  20 +--
 tests/generic/139              |  20 +--
 tests/generic/140              |  20 +--
 tests/generic/141              |  22 +--
 tests/generic/142              |  20 +--
 tests/generic/143              |  20 +--
 tests/generic/144              |  20 +--
 tests/generic/145              |  20 +--
 tests/generic/146              |  20 +--
 tests/generic/147              |  20 +--
 tests/generic/148              |  20 +--
 tests/generic/149              |  20 +--
 tests/generic/150              |  20 +--
 tests/generic/151              |  20 +--
 tests/generic/152              |  20 +--
 tests/generic/153              |  20 +--
 tests/generic/154              |  20 +--
 tests/generic/155              |  20 +--
 tests/generic/156              |  20 +--
 tests/generic/157              |  20 +--
 tests/generic/158              |  20 +--
 tests/generic/159              |  20 +--
 tests/generic/160              |  20 +--
 tests/generic/161              |  21 +--
 tests/generic/162              |  21 +--
 tests/generic/163              |  21 +--
 tests/generic/164              |  21 +--
 tests/generic/165              |  21 +--
 tests/generic/166              |  21 +--
 tests/generic/167              |  21 +--
 tests/generic/168              |  21 +--
 tests/generic/169              |  22 +--
 tests/generic/170              |  21 +--
 tests/generic/171              |  20 +--
 tests/generic/172              |  20 +--
 tests/generic/173              |  20 +--
 tests/generic/174              |  20 +--
 tests/generic/175              |  20 +--
 tests/generic/176              |  20 +--
 tests/generic/177              |  23 +--
 tests/generic/178              |  20 +--
 tests/generic/179              |  20 +--
 tests/generic/180              |  20 +--
 tests/generic/181              |  20 +--
 tests/generic/182              |  20 +--
 tests/generic/183              |  20 +--
 tests/generic/184              |  22 +--
 tests/generic/185              |  20 +--
 tests/generic/186              |  20 +--
 tests/generic/187              |  20 +--
 tests/generic/188              |  20 +--
 tests/generic/189              |  20 +--
 tests/generic/190              |  20 +--
 tests/generic/191              |  20 +--
 tests/generic/192              |  22 +--
 tests/generic/193              |  21 +--
 tests/generic/194              |  20 +--
 tests/generic/195              |  20 +--
 tests/generic/196              |  20 +--
 tests/generic/197              |  20 +--
 tests/generic/198              |  21 +--
 tests/generic/199              |  20 +--
 tests/generic/200              |  20 +--
 tests/generic/201              |  20 +--
 tests/generic/202              |  20 +--
 tests/generic/203              |  20 +--
 tests/generic/204              |  21 +--
 tests/generic/205              |  20 +--
 tests/generic/206              |  20 +--
 tests/generic/207              |  21 +--
 tests/generic/208              |  21 +--
 tests/generic/209              |  21 +--
 tests/generic/210              |  21 +--
 tests/generic/211              |  21 +--
 tests/generic/212              |  21 +--
 tests/generic/213              |  24 +--
 tests/generic/214              |  22 +--
 tests/generic/215              |  21 +--
 tests/generic/216              |  20 +--
 tests/generic/217              |  20 +--
 tests/generic/218              |  20 +--
 tests/generic/219              |  24 +--
 tests/generic/220              |  20 +--
 tests/generic/221              |  22 +--
 tests/generic/222              |  20 +--
 tests/generic/223              |  22 +--
 tests/generic/224              |  22 +--
 tests/generic/225              |  21 +--
 tests/generic/226              |  22 +--
 tests/generic/227              |  20 +--
 tests/generic/228              |  22 +--
 tests/generic/229              |  20 +--
 tests/generic/230              |  24 +--
 tests/generic/231              |  22 +--
 tests/generic/232              |  22 +--
 tests/generic/233              |  22 +--
 tests/generic/234              |  24 +--
 tests/generic/235              |  24 +--
 tests/generic/236              |  22 +--
 tests/generic/237              |  22 +--
 tests/generic/238              |  20 +--
 tests/generic/239              |  21 +--
 tests/generic/240              |  21 +--
 tests/generic/241              |  19 +--
 tests/generic/242              |  20 +--
 tests/generic/243              |  20 +--
 tests/generic/244              |  21 +--
 tests/generic/245              |  22 +--
 tests/generic/246              |  22 +--
 tests/generic/247              |  21 +--
 tests/generic/248              |  22 +--
 tests/generic/249              |  21 +--
 tests/generic/250              |  20 +--
 tests/generic/251              |  20 +--
 tests/generic/252              |  20 +--
 tests/generic/253              |  20 +--
 tests/generic/254              |  20 +--
 tests/generic/255              |  22 +--
 tests/generic/256              |  22 +--
 tests/generic/257              |  21 +--
 tests/generic/258              |  22 +--
 tests/generic/259              |  20 +--
 tests/generic/260              |  20 +--
 tests/generic/261              |  20 +--
 tests/generic/262              |  20 +--
 tests/generic/263              |  22 +--
 tests/generic/264              |  20 +--
 tests/generic/265              |  20 +--
 tests/generic/266              |  20 +--
 tests/generic/267              |  20 +--
 tests/generic/268              |  20 +--
 tests/generic/269              |  22 +--
 tests/generic/270              |  22 +--
 tests/generic/271              |  20 +--
 tests/generic/272              |  20 +--
 tests/generic/273              |  21 +--
 tests/generic/274              |  21 +--
 tests/generic/275              |  21 +--
 tests/generic/276              |  20 +--
 tests/generic/277              |  22 +--
 tests/generic/278              |  20 +--
 tests/generic/279              |  20 +--
 tests/generic/280              |  21 +--
 tests/generic/281              |  20 +--
 tests/generic/282              |  20 +--
 tests/generic/283              |  20 +--
 tests/generic/284              |  20 +--
 tests/generic/285              |  23 +--
 tests/generic/286              |  22 +--
 tests/generic/287              |  20 +--
 tests/generic/288              |  20 +--
 tests/generic/289              |  20 +--
 tests/generic/290              |  20 +--
 tests/generic/291              |  20 +--
 tests/generic/292              |  20 +--
 tests/generic/293              |  20 +--
 tests/generic/294              |  21 +--
 tests/generic/295              |  20 +--
 tests/generic/296              |  20 +--
 tests/generic/297              |  20 +--
 tests/generic/298              |  20 +--
 tests/generic/299              |  22 +--
 tests/generic/300              |  22 +--
 tests/generic/301              |  20 +--
 tests/generic/302              |  20 +--
 tests/generic/303              |  20 +--
 tests/generic/304              |  20 +--
 tests/generic/305              |  20 +--
 tests/generic/306              |  21 +--
 tests/generic/307              |  21 +--
 tests/generic/308              |  21 +--
 tests/generic/309              |  21 +--
 tests/generic/310              |  21 +--
 tests/generic/311              |  21 +--
 tests/generic/312              |  21 +--
 tests/generic/313              |  21 +--
 tests/generic/314              |  21 +--
 tests/generic/315              |  21 +--
 tests/generic/316              |  21 +--
 tests/generic/317              |  21 +--
 tests/generic/318              |  21 +--
 tests/generic/319              |  22 +--
 tests/generic/320              |  24 +--
 tests/generic/321              |  21 +--
 tests/generic/322              |  21 +--
 tests/generic/323              |  21 +--
 tests/generic/324              |  20 +--
 tests/generic/325              |  22 +--
 tests/generic/326              |  20 +--
 tests/generic/327              |  20 +--
 tests/generic/328              |  20 +--
 tests/generic/329              |  20 +--
 tests/generic/330              |  20 +--
 tests/generic/331              |  20 +--
 tests/generic/332              |  20 +--
 tests/generic/333              |  21 +--
 tests/generic/334              |  21 +--
 tests/generic/335              |  23 +--
 tests/generic/336              |  23 +--
 tests/generic/337              |  23 +--
 tests/generic/338              |  21 +--
 tests/generic/339              |  21 +--
 tests/generic/340              |  23 +--
 tests/generic/341              |  23 +--
 tests/generic/342              |  23 +--
 tests/generic/343              |  23 +--
 tests/generic/344              |  23 +--
 tests/generic/345              |  23 +--
 tests/generic/346              |  23 +--
 tests/generic/347              |  18 +--
 tests/generic/348              |  23 +--
 tests/generic/349              |  21 +--
 tests/generic/350              |  21 +--
 tests/generic/351              |  21 +--
 tests/generic/352              |  21 +--
 tests/generic/353              |  21 +--
 tests/generic/354              |  23 +--
 tests/generic/355              |  21 +--
 tests/generic/356              |  21 +--
 tests/generic/357              |  21 +--
 tests/generic/358              |  21 +--
 tests/generic/359              |  21 +--
 tests/generic/360              |  21 +--
 tests/generic/361              |  21 +--
 tests/generic/362              |  21 +--
 tests/generic/363              |  21 +--
 tests/generic/364              |  21 +--
 tests/generic/365              |  21 +--
 tests/generic/366              |  21 +--
 tests/generic/367              |  21 +--
 tests/generic/368              |  21 +--
 tests/generic/369              |  21 +--
 tests/generic/370              |  21 +--
 tests/generic/371              |  21 +--
 tests/generic/372              |  21 +--
 tests/generic/373              |  21 +--
 tests/generic/374              |  21 +--
 tests/generic/375              |  23 +--
 tests/generic/376              |  23 +--
 tests/generic/377              |  21 +--
 tests/generic/378              |  21 +--
 tests/generic/379              |  22 +--
 tests/generic/380              |  22 +--
 tests/generic/381              |  21 +--
 tests/generic/382              |  21 +--
 tests/generic/383              |  21 +--
 tests/generic/384              |  22 +--
 tests/generic/385              |  21 +--
 tests/generic/386              |  21 +--
 tests/generic/387              |  21 +--
 tests/generic/388              |  21 +--
 tests/generic/389              |  21 +--
 tests/generic/390              |  21 +--
 tests/generic/391              |  21 +--
 tests/generic/392              |  21 +--
 tests/generic/393              |  21 +--
 tests/generic/394              |  21 +--
 tests/generic/395              |  23 +--
 tests/generic/396              |  23 +--
 tests/generic/397              |  23 +--
 tests/generic/398              |  23 +--
 tests/generic/399              |  23 +--
 tests/generic/400              |  21 +--
 tests/generic/401              |  23 +--
 tests/generic/402              |  21 +--
 tests/generic/403              |  21 +--
 tests/generic/404              |  21 +--
 tests/generic/405              |  21 +--
 tests/generic/406              |  21 +--
 tests/generic/407              |  21 +--
 tests/generic/408              |  21 +--
 tests/generic/409              |  21 +--
 tests/generic/410              |  21 +--
 tests/generic/411              |  21 +--
 tests/generic/412              |  23 +--
 tests/generic/413              |  21 +--
 tests/generic/414              |  21 +--
 tests/generic/415              |  21 +--
 tests/generic/416              |  21 +--
 tests/generic/417              |  21 +--
 tests/generic/418              |  21 +--
 tests/generic/419              |  23 +--
 tests/generic/420              |  21 +--
 tests/generic/421              |  23 +--
 tests/generic/422              |  23 +--
 tests/generic/423              |  22 +--
 tests/generic/424              |  22 +--
 tests/generic/425              |  21 +--
 tests/generic/426              |  22 +--
 tests/generic/427              |  21 +--
 tests/generic/428              |  21 +--
 tests/generic/429              |  23 +--
 tests/generic/430              |  21 +--
 tests/generic/431              |  21 +--
 tests/generic/432              |  21 +--
 tests/generic/433              |  21 +--
 tests/generic/434              |  21 +--
 tests/generic/435              |  23 +--
 tests/generic/436              |  21 +--
 tests/generic/437              |  21 +--
 tests/generic/438              |  21 +--
 tests/generic/439              |  23 +--
 tests/generic/440              |  23 +--
 tests/generic/441              |  20 +--
 tests/generic/442              |  20 +--
 tests/generic/443              |  21 +--
 tests/generic/444              |  23 +--
 tests/generic/445              |  21 +--
 tests/generic/446              |  21 +--
 tests/generic/447              |  20 +--
 tests/generic/448              |  20 +--
 tests/generic/449              |  21 +--
 tests/generic/450              |  21 +--
 tests/generic/451              |  21 +--
 tests/generic/452              |  21 +--
 tests/generic/453              |  20 +--
 tests/generic/454              |  20 +--
 tests/generic/455              |  21 +--
 tests/generic/456              |  22 +--
 tests/generic/457              |  22 +--
 tests/generic/458              |  22 +--
 tests/generic/459              |  21 +--
 tests/generic/460              |  21 +--
 tests/generic/461              |  24 +--
 tests/generic/462              |  21 +--
 tests/generic/463              |  21 +--
 tests/generic/464              |  21 +--
 tests/generic/465              |  21 +--
 tests/generic/466              |  20 +--
 tests/generic/467              |  22 +--
 tests/generic/468              |  22 +--
 tests/generic/469              |  21 +--
 tests/generic/470              |  21 +--
 tests/generic/471              |  20 +--
 tests/generic/472              |  21 +--
 tests/generic/473              |  22 +--
 tests/generic/474              |  22 +--
 tests/generic/475              |  21 +--
 tests/generic/476              |  21 +--
 tests/generic/477              |  22 +--
 tests/generic/478              |  21 +--
 tests/generic/479              |  23 +--
 tests/generic/480              |  23 +--
 tests/generic/481              |  23 +--
 tests/generic/482              |  21 +--
 tests/generic/483              |  23 +--
 tests/generic/484              |  21 +--
 tests/generic/485              |  20 +--
 tests/generic/486              |  21 +--
 tests/generic/487              |  20 +--
 tests/generic/488              |  21 +--
 tests/generic/489              |  23 +--
 tests/generic/490              |  21 +--
 tests/generic/491              |  22 +--
 tests/generic/492              |  22 +--
 tests/generic/493              |  21 +--
 tests/generic/494              |  21 +--
 tests/generic/495              |  21 +--
 tests/generic/496              |  21 +--
 tests/generic/497              |  21 +--
 tests/nfs/001                  |  21 +--
 tests/ocfs2/001                |  20 +--
 tests/overlay/001              |  21 +--
 tests/overlay/002              |  23 +--
 tests/overlay/003              |  21 +--
 tests/overlay/004              |  21 +--
 tests/overlay/005              |  21 +--
 tests/overlay/006              |  21 +--
 tests/overlay/007              |  21 +--
 tests/overlay/008              |  21 +--
 tests/overlay/009              |  21 +--
 tests/overlay/010              |  21 +--
 tests/overlay/011              |  21 +--
 tests/overlay/012              |  21 +--
 tests/overlay/013              |  21 +--
 tests/overlay/014              |  21 +--
 tests/overlay/015              |  21 +--
 tests/overlay/016              |  23 +--
 tests/overlay/017              |  23 +--
 tests/overlay/018              |  23 +--
 tests/overlay/019              |  21 +--
 tests/overlay/020              |  21 +--
 tests/overlay/021              |  22 +--
 tests/overlay/022              |  21 +--
 tests/overlay/023              |  21 +--
 tests/overlay/024              |  21 +--
 tests/overlay/025              |  21 +--
 tests/overlay/026              |  21 +--
 tests/overlay/027              |  21 +--
 tests/overlay/028              |  21 +--
 tests/overlay/029              |  21 +--
 tests/overlay/030              |  23 +--
 tests/overlay/031              |  21 +--
 tests/overlay/032              |  22 +--
 tests/overlay/033              |  22 +--
 tests/overlay/034              |  22 +--
 tests/overlay/035              |  22 +--
 tests/overlay/036              |  22 +--
 tests/overlay/037              |  22 +--
 tests/overlay/038              |  23 +--
 tests/overlay/039              |  22 +--
 tests/overlay/040              |  22 +--
 tests/overlay/041              |  23 +--
 tests/overlay/042              |  22 +--
 tests/overlay/043              |  23 +--
 tests/overlay/044              |  23 +--
 tests/overlay/045              |  22 +--
 tests/overlay/046              |  22 +--
 tests/overlay/047              |  23 +--
 tests/overlay/048              |  22 +--
 tests/overlay/049              |  22 +--
 tests/overlay/050              |  22 +--
 tests/overlay/051              |  22 +--
 tests/overlay/052              |  22 +--
 tests/overlay/053              |  22 +--
 tests/overlay/054              |  22 +--
 tests/overlay/055              |  22 +--
 tests/overlay/056              |  22 +--
 tests/overlay/057              |  22 +--
 tests/overlay/058              |  22 +--
 tests/overlay/059              |  22 +--
 tests/overlay/060              |  21 +--
 tests/perf/001                 |  22 +--
 tests/shared/001               |  21 +--
 tests/shared/002               |  22 +--
 tests/shared/003               |  21 +--
 tests/shared/004               |  21 +--
 tests/shared/005               |  20 +--
 tests/shared/006               |  21 +--
 tests/shared/007               |  20 +--
 tests/shared/032               |  22 +--
 tests/shared/272               |  22 +--
 tests/shared/289               |  21 +--
 tests/shared/298               |  21 +--
 tests/udf/102                  |  22 +--
 tests/xfs/001                  |  21 +--
 tests/xfs/002                  |  21 +--
 tests/xfs/003                  |  22 +--
 tests/xfs/004                  |  22 +--
 tests/xfs/005                  |  21 +--
 tests/xfs/006                  |  21 +--
 tests/xfs/007                  |  21 +--
 tests/xfs/008                  |  22 +--
 tests/xfs/009                  |  22 +--
 tests/xfs/010                  |  22 +--
 tests/xfs/011                  |  22 +--
 tests/xfs/012                  |  22 +--
 tests/xfs/013                  |  22 +--
 tests/xfs/014                  |  22 +--
 tests/xfs/015                  |  21 +--
 tests/xfs/016                  |  22 +--
 tests/xfs/017                  |  22 +--
 tests/xfs/018                  |  22 +--
 tests/xfs/019                  |  22 +--
 tests/xfs/020                  |  21 +--
 tests/xfs/021                  |  22 +--
 tests/xfs/022                  |  22 +--
 tests/xfs/023                  |  22 +--
 tests/xfs/024                  |  22 +--
 tests/xfs/025                  |  22 +--
 tests/xfs/026                  |  22 +--
 tests/xfs/027                  |  22 +--
 tests/xfs/028                  |  22 +--
 tests/xfs/029                  |  22 +--
 tests/xfs/030                  |  22 +--
 tests/xfs/031                  |  22 +--
 tests/xfs/032                  |  22 +--
 tests/xfs/033                  |  22 +--
 tests/xfs/034                  |  22 +--
 tests/xfs/035                  |  22 +--
 tests/xfs/036                  |  22 +--
 tests/xfs/037                  |  22 +--
 tests/xfs/038                  |  22 +--
 tests/xfs/039                  |  22 +--
 tests/xfs/040                  |  22 +--
 tests/xfs/041                  |  21 +--
 tests/xfs/042                  |  21 +--
 tests/xfs/043                  |  22 +--
 tests/xfs/044                  |  26 +--
 tests/xfs/045                  |  22 +--
 tests/xfs/046                  |  22 +--
 tests/xfs/047                  |  22 +--
 tests/xfs/048                  |  22 +--
 tests/xfs/049                  |  22 +--
 tests/xfs/050                  |  22 +--
 tests/xfs/051                  |  21 +--
 tests/xfs/052                  |  22 +--
 tests/xfs/053                  |  21 +--
 tests/xfs/054                  |  21 +--
 tests/xfs/055                  |  22 +--
 tests/xfs/056                  |  22 +--
 tests/xfs/057                  |  21 +--
 tests/xfs/058                  |  20 +--
 tests/xfs/059                  |  22 +--
 tests/xfs/060                  |  22 +--
 tests/xfs/061                  |  22 +--
 tests/xfs/062                  |  20 +--
 tests/xfs/063                  |  22 +--
 tests/xfs/064                  |  22 +--
 tests/xfs/065                  |  22 +--
 tests/xfs/066                  |  22 +--
 tests/xfs/067                  |  22 +--
 tests/xfs/068                  |  22 +--
 tests/xfs/069                  |  21 +--
 tests/xfs/070                  |  21 +--
 tests/xfs/071                  |  22 +--
 tests/xfs/072                  |  22 +--
 tests/xfs/073                  |  22 +--
 tests/xfs/074                  |  22 +--
 tests/xfs/075                  |  21 +--
 tests/xfs/076                  |  22 +--
 tests/xfs/077                  |  21 +--
 tests/xfs/078                  |  22 +--
 tests/xfs/079                  |  21 +--
 tests/xfs/080                  |  22 +--
 tests/xfs/081                  |  22 +--
 tests/xfs/082                  |  22 +--
 tests/xfs/083                  |  21 +--
 tests/xfs/084                  |  22 +--
 tests/xfs/085                  |  21 +--
 tests/xfs/086                  |  21 +--
 tests/xfs/087                  |  21 +--
 tests/xfs/088                  |  21 +--
 tests/xfs/089                  |  21 +--
 tests/xfs/090                  |  22 +--
 tests/xfs/091                  |  21 +--
 tests/xfs/092                  |  22 +--
 tests/xfs/093                  |  21 +--
 tests/xfs/094                  |  22 +--
 tests/xfs/095                  |  22 +--
 tests/xfs/096                  |  22 +--
 tests/xfs/097                  |  21 +--
 tests/xfs/098                  |  21 +--
 tests/xfs/099                  |  21 +--
 tests/xfs/100                  |  21 +--
 tests/xfs/101                  |  21 +--
 tests/xfs/102                  |  21 +--
 tests/xfs/103                  |  22 +--
 tests/xfs/104                  |  22 +--
 tests/xfs/105                  |  21 +--
 tests/xfs/106                  |  22 +--
 tests/xfs/107                  |  22 +--
 tests/xfs/108                  |  22 +--
 tests/xfs/109                  |  22 +--
 tests/xfs/110                  |  22 +--
 tests/xfs/111                  |  22 +--
 tests/xfs/112                  |  21 +--
 tests/xfs/113                  |  21 +--
 tests/xfs/114                  |  20 +--
 tests/xfs/115                  |  21 +--
 tests/xfs/116                  |  22 +--
 tests/xfs/117                  |  21 +--
 tests/xfs/118                  |  21 +--
 tests/xfs/119                  |  22 +--
 tests/xfs/120                  |  21 +--
 tests/xfs/121                  |  22 +--
 tests/xfs/122                  |  22 +--
 tests/xfs/123                  |  21 +--
 tests/xfs/124                  |  21 +--
 tests/xfs/125                  |  21 +--
 tests/xfs/126                  |  21 +--
 tests/xfs/127                  |  21 +--
 tests/xfs/128                  |  21 +--
 tests/xfs/129                  |  20 +--
 tests/xfs/130                  |  21 +--
 tests/xfs/131                  |  20 +--
 tests/xfs/132                  |  21 +--
 tests/xfs/133                  |  20 +--
 tests/xfs/134                  |  20 +--
 tests/xfs/135                  |  21 +--
 tests/xfs/136                  |  22 +--
 tests/xfs/137                  |  21 +--
 tests/xfs/138                  |  21 +--
 tests/xfs/139                  |  20 +--
 tests/xfs/140                  |  20 +--
 tests/xfs/141                  |  21 +--
 tests/xfs/142                  |  22 +--
 tests/xfs/143                  |  22 +--
 tests/xfs/144                  |  22 +--
 tests/xfs/145                  |  22 +--
 tests/xfs/146                  |  22 +--
 tests/xfs/147                  |  22 +--
 tests/xfs/148                  |  22 +--
 tests/xfs/149                  |  22 +--
 tests/xfs/150                  |  22 +--
 tests/xfs/151                  |  22 +--
 tests/xfs/152                  |  22 +--
 tests/xfs/153                  |  22 +--
 tests/xfs/154                  |  22 +--
 tests/xfs/155                  |  22 +--
 tests/xfs/156                  |  22 +--
 tests/xfs/157                  |  22 +--
 tests/xfs/158                  |  22 +--
 tests/xfs/159                  |  22 +--
 tests/xfs/160                  |  22 +--
 tests/xfs/161                  |  22 +--
 tests/xfs/162                  |  22 +--
 tests/xfs/163                  |  22 +--
 tests/xfs/164                  |  22 +--
 tests/xfs/165                  |  22 +--
 tests/xfs/166                  |  22 +--
 tests/xfs/167                  |  22 +--
 tests/xfs/168                  |  22 +--
 tests/xfs/169                  |  20 +--
 tests/xfs/170                  |  22 +--
 tests/xfs/171                  |  22 +--
 tests/xfs/172                  |  22 +--
 tests/xfs/173                  |  22 +--
 tests/xfs/174                  |  22 +--
 tests/xfs/175                  |  22 +--
 tests/xfs/176                  |  22 +--
 tests/xfs/177                  |  22 +--
 tests/xfs/178                  |  22 +--
 tests/xfs/179                  |  20 +--
 tests/xfs/180                  |  20 +--
 tests/xfs/181                  |  22 +--
 tests/xfs/182                  |  20 +--
 tests/xfs/183                  |  22 +--
 tests/xfs/184                  |  20 +--
 tests/xfs/185                  |  22 +--
 tests/xfs/186                  |  22 +--
 tests/xfs/187                  |  22 +--
 tests/xfs/188                  |  22 +--
 tests/xfs/189                  |  22 +--
 tests/xfs/190                  |  22 +--
 tests/xfs/191-input-validation |  22 +--
 tests/xfs/192                  |  20 +--
 tests/xfs/193                  |  20 +--
 tests/xfs/194                  |  21 +--
 tests/xfs/195                  |  21 +--
 tests/xfs/196                  |  21 +--
 tests/xfs/197                  |  21 +--
 tests/xfs/198                  |  20 +--
 tests/xfs/199                  |  21 +--
 tests/xfs/200                  |  20 +--
 tests/xfs/201                  |  21 +--
 tests/xfs/202                  |  21 +--
 tests/xfs/203                  |  21 +--
 tests/xfs/204                  |  20 +--
 tests/xfs/205                  |  21 +--
 tests/xfs/206                  |  21 +--
 tests/xfs/207                  |  20 +--
 tests/xfs/208                  |  20 +--
 tests/xfs/209                  |  20 +--
 tests/xfs/210                  |  20 +--
 tests/xfs/211                  |  20 +--
 tests/xfs/212                  |  20 +--
 tests/xfs/213                  |  20 +--
 tests/xfs/214                  |  20 +--
 tests/xfs/215                  |  20 +--
 tests/xfs/216                  |  21 +--
 tests/xfs/217                  |  21 +--
 tests/xfs/218                  |  20 +--
 tests/xfs/219                  |  20 +--
 tests/xfs/220                  |  22 +--
 tests/xfs/221                  |  20 +--
 tests/xfs/222                  |  22 +--
 tests/xfs/223                  |  20 +--
 tests/xfs/224                  |  20 +--
 tests/xfs/225                  |  20 +--
 tests/xfs/226                  |  20 +--
 tests/xfs/227                  |  22 +--
 tests/xfs/228                  |  20 +--
 tests/xfs/229                  |  24 +--
 tests/xfs/230                  |  20 +--
 tests/xfs/231                  |  20 +--
 tests/xfs/232                  |  20 +--
 tests/xfs/233                  |  21 +--
 tests/xfs/234                  |  20 +--
 tests/xfs/235                  |  21 +--
 tests/xfs/236                  |  20 +--
 tests/xfs/237                  |  20 +--
 tests/xfs/238                  |  21 +--
 tests/xfs/239                  |  20 +--
 tests/xfs/240                  |  20 +--
 tests/xfs/241                  |  20 +--
 tests/xfs/242                  |  22 +--
 tests/xfs/243                  |  20 +--
 tests/xfs/244                  |  22 +--
 tests/xfs/245                  |  20 +--
 tests/xfs/246                  |  20 +--
 tests/xfs/247                  |  20 +--
 tests/xfs/248                  |  20 +--
 tests/xfs/249                  |  20 +--
 tests/xfs/250                  |  21 +--
 tests/xfs/251                  |  20 +--
 tests/xfs/252                  |  22 +--
 tests/xfs/253                  |  21 +--
 tests/xfs/254                  |  20 +--
 tests/xfs/255                  |  20 +--
 tests/xfs/256                  |  20 +--
 tests/xfs/257                  |  20 +--
 tests/xfs/258                  |  20 +--
 tests/xfs/259                  |  22 +--
 tests/xfs/260                  |  21 +--
 tests/xfs/261                  |  21 +--
 tests/xfs/262                  |  21 +--
 tests/xfs/263                  |  21 +--
 tests/xfs/264                  |  21 +--
 tests/xfs/265                  |  20 +--
 tests/xfs/266                  |  21 +--
 tests/xfs/267                  |  21 +--
 tests/xfs/268                  |  21 +--
 tests/xfs/269                  |  20 +--
 tests/xfs/270                  |  21 +--
 tests/xfs/271                  |  20 +--
 tests/xfs/272                  |  20 +--
 tests/xfs/273                  |  20 +--
 tests/xfs/274                  |  20 +--
 tests/xfs/275                  |  20 +--
 tests/xfs/276                  |  20 +--
 tests/xfs/277                  |  20 +--
 tests/xfs/278                  |  21 +--
 tests/xfs/279                  |  21 +--
 tests/xfs/280                  |  21 +--
 tests/xfs/281                  |  22 +--
 tests/xfs/282                  |  22 +--
 tests/xfs/283                  |  22 +--
 tests/xfs/284                  |  21 +--
 tests/xfs/285                  |  21 +--
 tests/xfs/286                  |  21 +--
 tests/xfs/287                  |  22 +--
 tests/xfs/288                  |  21 +--
 tests/xfs/289                  |  21 +--
 tests/xfs/290                  |  21 +--
 tests/xfs/291                  |  21 +--
 tests/xfs/292                  |  21 +--
 tests/xfs/293                  |  21 +--
 tests/xfs/294                  |  22 +--
 tests/xfs/295                  |  21 +--
 tests/xfs/296                  |  21 +--
 tests/xfs/297                  |  21 +--
 tests/xfs/298                  |  21 +--
 tests/xfs/299                  |  22 +--
 tests/xfs/300                  |  20 +--
 tests/xfs/301                  |  21 +--
 tests/xfs/302                  |  21 +--
 tests/xfs/303                  |  21 +--
 tests/xfs/304                  |  21 +--
 tests/xfs/305                  |  21 +--
 tests/xfs/306                  |  21 +--
 tests/xfs/307                  |  20 +--
 tests/xfs/308                  |  20 +--
 tests/xfs/309                  |  20 +--
 tests/xfs/310                  |  20 +--
 tests/xfs/311                  |  21 +--
 tests/xfs/312                  |  20 +--
 tests/xfs/313                  |  20 +--
 tests/xfs/314                  |  20 +--
 tests/xfs/315                  |  20 +--
 tests/xfs/316                  |  20 +--
 tests/xfs/317                  |  20 +--
 tests/xfs/318                  |  20 +--
 tests/xfs/319                  |  20 +--
 tests/xfs/320                  |  20 +--
 tests/xfs/321                  |  20 +--
 tests/xfs/322                  |  20 +--
 tests/xfs/323                  |  20 +--
 tests/xfs/324                  |  20 +--
 tests/xfs/325                  |  20 +--
 tests/xfs/326                  |  20 +--
 tests/xfs/327                  |  20 +--
 tests/xfs/328                  |  20 +--
 tests/xfs/329                  |  20 +--
 tests/xfs/330                  |  20 +--
 tests/xfs/331                  |  20 +--
 tests/xfs/332                  |  20 +--
 tests/xfs/333                  |  20 +--
 tests/xfs/334                  |  20 +--
 tests/xfs/335                  |  20 +--
 tests/xfs/336                  |  20 +--
 tests/xfs/337                  |  20 +--
 tests/xfs/338                  |  20 +--
 tests/xfs/339                  |  20 +--
 tests/xfs/340                  |  20 +--
 tests/xfs/341                  |  20 +--
 tests/xfs/342                  |  20 +--
 tests/xfs/343                  |  20 +--
 tests/xfs/344                  |  20 +--
 tests/xfs/345                  |  20 +--
 tests/xfs/346                  |  20 +--
 tests/xfs/347                  |  20 +--
 tests/xfs/348                  |  23 +--
 tests/xfs/349                  |  21 +--
 tests/xfs/350                  |  21 +--
 tests/xfs/351                  |  21 +--
 tests/xfs/352                  |  21 +--
 tests/xfs/353                  |  21 +--
 tests/xfs/354                  |  21 +--
 tests/xfs/355                  |  21 +--
 tests/xfs/356                  |  21 +--
 tests/xfs/357                  |  21 +--
 tests/xfs/358                  |  21 +--
 tests/xfs/359                  |  21 +--
 tests/xfs/360                  |  21 +--
 tests/xfs/361                  |  21 +--
 tests/xfs/362                  |  21 +--
 tests/xfs/363                  |  21 +--
 tests/xfs/364                  |  21 +--
 tests/xfs/365                  |  21 +--
 tests/xfs/366                  |  21 +--
 tests/xfs/367                  |  21 +--
 tests/xfs/368                  |  21 +--
 tests/xfs/369                  |  21 +--
 tests/xfs/370                  |  21 +--
 tests/xfs/371                  |  21 +--
 tests/xfs/372                  |  21 +--
 tests/xfs/373                  |  21 +--
 tests/xfs/374                  |  21 +--
 tests/xfs/375                  |  21 +--
 tests/xfs/376                  |  21 +--
 tests/xfs/377                  |  21 +--
 tests/xfs/378                  |  21 +--
 tests/xfs/379                  |  21 +--
 tests/xfs/380                  |  21 +--
 tests/xfs/381                  |  21 +--
 tests/xfs/382                  |  21 +--
 tests/xfs/383                  |  21 +--
 tests/xfs/384                  |  21 +--
 tests/xfs/385                  |  21 +--
 tests/xfs/386                  |  21 +--
 tests/xfs/387                  |  21 +--
 tests/xfs/388                  |  21 +--
 tests/xfs/389                  |  21 +--
 tests/xfs/390                  |  21 +--
 tests/xfs/391                  |  21 +--
 tests/xfs/392                  |  21 +--
 tests/xfs/393                  |  21 +--
 tests/xfs/394                  |  21 +--
 tests/xfs/395                  |  21 +--
 tests/xfs/396                  |  21 +--
 tests/xfs/397                  |  21 +--
 tests/xfs/398                  |  21 +--
 tests/xfs/399                  |  21 +--
 tests/xfs/400                  |  21 +--
 tests/xfs/401                  |  21 +--
 tests/xfs/402                  |  21 +--
 tests/xfs/403                  |  21 +--
 tests/xfs/404                  |  21 +--
 tests/xfs/405                  |  21 +--
 tests/xfs/406                  |  21 +--
 tests/xfs/407                  |  21 +--
 tests/xfs/408                  |  21 +--
 tests/xfs/409                  |  21 +--
 tests/xfs/410                  |  21 +--
 tests/xfs/411                  |  21 +--
 tests/xfs/412                  |  21 +--
 tests/xfs/413                  |  21 +--
 tests/xfs/414                  |  21 +--
 tests/xfs/415                  |  21 +--
 tests/xfs/416                  |  21 +--
 tests/xfs/417                  |  21 +--
 tests/xfs/418                  |  21 +--
 tests/xfs/419                  |  21 +--
 tests/xfs/420                  |  20 +--
 tests/xfs/421                  |  20 +--
 tests/xfs/422                  |  21 +--
 tests/xfs/423                  |  21 +--
 tests/xfs/424                  |  21 +--
 tests/xfs/425                  |  21 +--
 tests/xfs/426                  |  21 +--
 tests/xfs/427                  |  21 +--
 tests/xfs/428                  |  21 +--
 tests/xfs/429                  |  21 +--
 tests/xfs/430                  |  21 +--
 tests/xfs/431                  |  21 +--
 tests/xfs/432                  |  20 +--
 tests/xfs/433                  |  21 +--
 tests/xfs/434                  |  20 +--
 tests/xfs/435                  |  20 +--
 tests/xfs/436                  |  20 +--
 tests/xfs/437                  |  22 +--
 tests/xfs/438                  |  21 +--
 tests/xfs/439                  |  21 +--
 tests/xfs/440                  |  21 +--
 tests/xfs/441                  |  21 +--
 tests/xfs/442                  |  21 +--
 tests/xfs/443                  |  21 +--
 tests/xfs/444                  |  22 +--
 tests/xfs/445                  |  21 +--
 tests/xfs/446                  |  22 +--
 tests/xfs/447                  |  21 +--
 tests/xfs/448                  |  20 +--
 tests/xfs/449                  |  22 +--
 tools/ag-wipe                  |  18 +--
 tools/auto-qa                  |  16 +-
 tools/compare-failures         |  22 +--
 tools/db-walk                  |  18 +--
 tools/fs-walk                  |  17 +-
 tools/interop                  |  16 +-
 1269 files changed, 4124 insertions(+), 23100 deletions(-)
 create mode 100644 LICENSES/GPL-2.0
-- 
Dave Chinner
david@fromorbit.com

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

* Re: [PATCH 0/9] fstests: Conversion of tests to SPDX license tags
  2018-06-09  2:17 ` [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
@ 2018-06-10 13:47   ` Eryu Guan
  0 siblings, 0 replies; 8+ messages in thread
From: Eryu Guan @ 2018-06-10 13:47 UTC (permalink / raw)
  To: Dave Chinner; +Cc: fstests

On Sat, Jun 09, 2018 at 12:17:50PM +1000, Dave Chinner wrote:
> On Sat, Jun 09, 2018 at 11:55:31AM +1000, Dave Chinner wrote:
> > Hi folks,
> > 
> > I'm attempting to post this set of patches to the list now that
> > i've done the SPDX license tag conversion on Eryu's current
> > staging tree. I'm not sure it will all get through (it's a huge set
> > of patches), so after I've send this I'll push it all to a git tree
> > branch on kernel.org.
> 
> Eryu, it looks like the majority of the patches didn't make it
> through vger and back to me. So to solve that problem, here's the
> pull request from my own repo on kernel.org. git.kernel.org doesn't
> show it up yet as I write this (hasn't mirror across), but the repo
> is there. 

Yeah, I saw only a few of them.

> 
> Cheers,
> 
> Dave.
> 
> The following changes since commit 25ce9740065e1ac00b699b3fb84cc651aeaf5032:
> 
>   generic: test swapfile creation, activation, and deactivation (2018-06-08 14:12:27 +0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/dgc/xfstests-dev spdx-tags
> 
> for you to fetch changes up to 3805d7e97a9e62993bd6229cc73a50ec7b5fc84b:
> 
>   fstests: make lsqa.pl work with SPDX tags (2018-06-09 11:45:38 +1000)

Pulled, thanks a lot!

Eryu

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

end of thread, other threads:[~2018-06-10 13:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-09  1:55 [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
2018-06-09  1:55 ` [PATCH 1/9] fstests: Add LICENSES directory Dave Chinner
2018-06-09  1:55 ` [PATCH 2/9] common: convert to SPDX license tags Dave Chinner
2018-06-09  1:55 ` [PATCH 3/9] fstests: convert new test template to SPDX tags Dave Chinner
2018-06-09  1:55 ` [PATCH 8/9] fstests: convert top level files and tools to SPDX Dave Chinner
2018-06-09  1:55 ` [PATCH 9/9] fstests: make lsqa.pl work with SPDX tags Dave Chinner
2018-06-09  2:17 ` [PATCH 0/9] fstests: Conversion of tests to SPDX license tags Dave Chinner
2018-06-10 13:47   ` Eryu Guan

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.