mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Split some core bits out into their own file. More bits will be added to this file later. Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> cc: linux-cachefs@redhat.com Link: https://lore.kernel.org/r/164623006934.3564931.17932680017894039748.stgit@warthog.procyon.org.uk/ # v1 Link: https://lore.kernel.org/r/164678218407.1200972.1731208226140990280.stgit@warthog.procyon.org.uk/ # v2 Link: https://lore.kernel.org/r/164692920944.2099075.11990502173226013856.stgit@warthog.procyon.org.uk/ # v3
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			596 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			596 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/* Miscellaneous bits for the netfs support library.
 | 
						|
 *
 | 
						|
 * Copyright (C) 2022 Red Hat, Inc. All Rights Reserved.
 | 
						|
 * Written by David Howells (dhowells@redhat.com)
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/module.h>
 | 
						|
#include <linux/export.h>
 | 
						|
#include "internal.h"
 | 
						|
#define CREATE_TRACE_POINTS
 | 
						|
#include <trace/events/netfs.h>
 | 
						|
 | 
						|
MODULE_DESCRIPTION("Network fs support");
 | 
						|
MODULE_AUTHOR("Red Hat, Inc.");
 | 
						|
MODULE_LICENSE("GPL");
 | 
						|
 | 
						|
unsigned netfs_debug;
 | 
						|
module_param_named(debug, netfs_debug, uint, S_IWUSR | S_IRUGO);
 | 
						|
MODULE_PARM_DESC(netfs_debug, "Netfs support debugging mask");
 |