Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /* Miscellaneous bits for the netfs support library.
0003  *
0004  * Copyright (C) 2022 Red Hat, Inc. All Rights Reserved.
0005  * Written by David Howells (dhowells@redhat.com)
0006  */
0007 
0008 #include <linux/module.h>
0009 #include <linux/export.h>
0010 #include "internal.h"
0011 #define CREATE_TRACE_POINTS
0012 #include <trace/events/netfs.h>
0013 
0014 MODULE_DESCRIPTION("Network fs support");
0015 MODULE_AUTHOR("Red Hat, Inc.");
0016 MODULE_LICENSE("GPL");
0017 
0018 unsigned netfs_debug;
0019 module_param_named(debug, netfs_debug, uint, S_IWUSR | S_IRUGO);
0020 MODULE_PARM_DESC(netfs_debug, "Netfs support debugging mask");