mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	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: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
		
	
			
		
			
				
	
	
		
			231 lines
		
	
	
	
		
			5.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			231 lines
		
	
	
	
		
			5.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (c) 2001-2005 Silicon Graphics, Inc.
 | 
						|
 * All Rights Reserved.
 | 
						|
 */
 | 
						|
#include "xfs.h"
 | 
						|
#include <linux/sysctl.h>
 | 
						|
#include <linux/proc_fs.h>
 | 
						|
#include "xfs_error.h"
 | 
						|
#include "xfs_stats.h"
 | 
						|
 | 
						|
static struct ctl_table_header *xfs_table_header;
 | 
						|
 | 
						|
#ifdef CONFIG_PROC_FS
 | 
						|
STATIC int
 | 
						|
xfs_stats_clear_proc_handler(
 | 
						|
	struct ctl_table	*ctl,
 | 
						|
	int			write,
 | 
						|
	void			__user *buffer,
 | 
						|
	size_t			*lenp,
 | 
						|
	loff_t			*ppos)
 | 
						|
{
 | 
						|
	int		ret, *valp = ctl->data;
 | 
						|
 | 
						|
	ret = proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
 | 
						|
 | 
						|
	if (!ret && write && *valp) {
 | 
						|
		xfs_stats_clearall(xfsstats.xs_stats);
 | 
						|
		xfs_stats_clear = 0;
 | 
						|
	}
 | 
						|
 | 
						|
	return ret;
 | 
						|
}
 | 
						|
 | 
						|
STATIC int
 | 
						|
xfs_panic_mask_proc_handler(
 | 
						|
	struct ctl_table	*ctl,
 | 
						|
	int			write,
 | 
						|
	void			__user *buffer,
 | 
						|
	size_t			*lenp,
 | 
						|
	loff_t			*ppos)
 | 
						|
{
 | 
						|
	int		ret, *valp = ctl->data;
 | 
						|
 | 
						|
	ret = proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
 | 
						|
	if (!ret && write) {
 | 
						|
		xfs_panic_mask = *valp;
 | 
						|
#ifdef DEBUG
 | 
						|
		xfs_panic_mask |= (XFS_PTAG_SHUTDOWN_CORRUPT | XFS_PTAG_LOGRES);
 | 
						|
#endif
 | 
						|
	}
 | 
						|
	return ret;
 | 
						|
}
 | 
						|
#endif /* CONFIG_PROC_FS */
 | 
						|
 | 
						|
static struct ctl_table xfs_table[] = {
 | 
						|
	{
 | 
						|
		.procname	= "irix_sgid_inherit",
 | 
						|
		.data		= &xfs_params.sgid_inherit.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.sgid_inherit.min,
 | 
						|
		.extra2		= &xfs_params.sgid_inherit.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "irix_symlink_mode",
 | 
						|
		.data		= &xfs_params.symlink_mode.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.symlink_mode.min,
 | 
						|
		.extra2		= &xfs_params.symlink_mode.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "panic_mask",
 | 
						|
		.data		= &xfs_params.panic_mask.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= xfs_panic_mask_proc_handler,
 | 
						|
		.extra1		= &xfs_params.panic_mask.min,
 | 
						|
		.extra2		= &xfs_params.panic_mask.max
 | 
						|
	},
 | 
						|
 | 
						|
	{
 | 
						|
		.procname	= "error_level",
 | 
						|
		.data		= &xfs_params.error_level.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.error_level.min,
 | 
						|
		.extra2		= &xfs_params.error_level.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "xfssyncd_centisecs",
 | 
						|
		.data		= &xfs_params.syncd_timer.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.syncd_timer.min,
 | 
						|
		.extra2		= &xfs_params.syncd_timer.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "inherit_sync",
 | 
						|
		.data		= &xfs_params.inherit_sync.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.inherit_sync.min,
 | 
						|
		.extra2		= &xfs_params.inherit_sync.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "inherit_nodump",
 | 
						|
		.data		= &xfs_params.inherit_nodump.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.inherit_nodump.min,
 | 
						|
		.extra2		= &xfs_params.inherit_nodump.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "inherit_noatime",
 | 
						|
		.data		= &xfs_params.inherit_noatim.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.inherit_noatim.min,
 | 
						|
		.extra2		= &xfs_params.inherit_noatim.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "inherit_nosymlinks",
 | 
						|
		.data		= &xfs_params.inherit_nosym.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.inherit_nosym.min,
 | 
						|
		.extra2		= &xfs_params.inherit_nosym.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "rotorstep",
 | 
						|
		.data		= &xfs_params.rotorstep.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.rotorstep.min,
 | 
						|
		.extra2		= &xfs_params.rotorstep.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "inherit_nodefrag",
 | 
						|
		.data		= &xfs_params.inherit_nodfrg.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.inherit_nodfrg.min,
 | 
						|
		.extra2		= &xfs_params.inherit_nodfrg.max
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "filestream_centisecs",
 | 
						|
		.data		= &xfs_params.fstrm_timer.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.fstrm_timer.min,
 | 
						|
		.extra2		= &xfs_params.fstrm_timer.max,
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "speculative_prealloc_lifetime",
 | 
						|
		.data		= &xfs_params.eofb_timer.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.eofb_timer.min,
 | 
						|
		.extra2		= &xfs_params.eofb_timer.max,
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "speculative_cow_prealloc_lifetime",
 | 
						|
		.data		= &xfs_params.cowb_timer.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_minmax,
 | 
						|
		.extra1		= &xfs_params.cowb_timer.min,
 | 
						|
		.extra2		= &xfs_params.cowb_timer.max,
 | 
						|
	},
 | 
						|
	/* please keep this the last entry */
 | 
						|
#ifdef CONFIG_PROC_FS
 | 
						|
	{
 | 
						|
		.procname	= "stats_clear",
 | 
						|
		.data		= &xfs_params.stats_clear.val,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= xfs_stats_clear_proc_handler,
 | 
						|
		.extra1		= &xfs_params.stats_clear.min,
 | 
						|
		.extra2		= &xfs_params.stats_clear.max
 | 
						|
	},
 | 
						|
#endif /* CONFIG_PROC_FS */
 | 
						|
 | 
						|
	{}
 | 
						|
};
 | 
						|
 | 
						|
static struct ctl_table xfs_dir_table[] = {
 | 
						|
	{
 | 
						|
		.procname	= "xfs",
 | 
						|
		.mode		= 0555,
 | 
						|
		.child		= xfs_table
 | 
						|
	},
 | 
						|
	{}
 | 
						|
};
 | 
						|
 | 
						|
static struct ctl_table xfs_root_table[] = {
 | 
						|
	{
 | 
						|
		.procname	= "fs",
 | 
						|
		.mode		= 0555,
 | 
						|
		.child		= xfs_dir_table
 | 
						|
	},
 | 
						|
	{}
 | 
						|
};
 | 
						|
 | 
						|
int
 | 
						|
xfs_sysctl_register(void)
 | 
						|
{
 | 
						|
	xfs_table_header = register_sysctl_table(xfs_root_table);
 | 
						|
	if (!xfs_table_header)
 | 
						|
		return -ENOMEM;
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
void
 | 
						|
xfs_sysctl_unregister(void)
 | 
						|
{
 | 
						|
	unregister_sysctl_table(xfs_table_header);
 | 
						|
}
 |