1. 19 8月, 2021 1 次提交
  2. 10 4月, 2021 2 次提交
  3. 30 4月, 2019 1 次提交
  4. 27 4月, 2019 1 次提交
    • D
      xfs: allow scrubbers to pause background reclaim · 9a1f3049
      Darrick J. Wong 提交于
      The forthcoming summary counter patch races with regular filesystem
      activity to compute rough expected values for the counters.  This design
      was chosen to avoid having to freeze the entire filesystem to check the
      counters, but while that's running we'd prefer to minimize background
      reclamation activity to reduce the perturbations to the incore free
      block count.  Therefore, provide a way for scrubbers to disable
      background posteof and cowblock reclamation.
      Signed-off-by: NDarrick J. Wong <darrick.wong@oracle.com>
      Reviewed-by: NDave Chinner <dchinner@redhat.com>
      9a1f3049
  5. 17 4月, 2019 3 次提交
  6. 13 12月, 2018 1 次提交
  7. 24 7月, 2018 3 次提交
  8. 07 6月, 2018 1 次提交
    • D
      xfs: convert to SPDX license tags · 0b61f8a4
      Dave Chinner 提交于
      Remove the verbose license text from XFS files and replace them
      with SPDX tags. This does not change the license of any of the code,
      merely refers to the common, up-to-date license files in LICENSES/
      
      This change was mostly scripted. fs/xfs/Makefile and
      fs/xfs/libxfs/xfs_fs.h were modified by hand, the rest were detected
      and modified by the following command:
      
      for f in `git grep -l "GNU General" fs/xfs/` ; do
      	echo $f
      	cat $f | awk -f hdr.awk > $f.new
      	mv -f $f.new $f
      done
      
      And the hdr.awk script that did the modification (including
      detecting the difference between GPL-2.0 and GPL-2.0+ licenses)
      is as follows:
      
      $ cat hdr.awk
      BEGIN {
      	hdr = 1.0
      	tag = "GPL-2.0"
      	str = ""
      }
      
      /^ \* This program is free software/ {
      	hdr = 2.0;
      	next
      }
      
      /any later version./ {
      	tag = "GPL-2.0+"
      	next
      }
      
      /^ \*\// {
      	if (hdr > 0.0) {
      		print "// SPDX-License-Identifier: " tag
      		print str
      		print $0
      		str=""
      		hdr = 0.0
      		next
      	}
      	print $0
      	next
      }
      
      /^ \* / {
      	if (hdr > 1.0)
      		next
      	if (hdr > 0.0) {
      		if (str != "")
      			str = str "\n"
      		str = str $0
      		next
      	}
      	print $0
      	next
      }
      
      /^ \*/ {
      	if (hdr > 0.0)
      		next
      	print $0
      	next
      }
      
      // {
      	if (hdr > 0.0) {
      		if (str != "")
      			str = str "\n"
      		str = str $0
      		next
      	}
      	print $0
      }
      
      END { }
      $
      Signed-off-by: NDave Chinner <dchinner@redhat.com>
      Reviewed-by: NDarrick J. Wong <darrick.wong@oracle.com>
      Signed-off-by: NDarrick J. Wong <darrick.wong@oracle.com>
      0b61f8a4
  9. 30 5月, 2018 1 次提交
  10. 16 5月, 2018 2 次提交
  11. 18 1月, 2018 5 次提交
  12. 09 1月, 2018 1 次提交
  13. 27 10月, 2017 18 次提交