main.c (596B)
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* Miscellaneous bits for the netfs support library. 3 * 4 * Copyright (C) 2022 Red Hat, Inc. All Rights Reserved. 5 * Written by David Howells (dhowells@redhat.com) 6 */ 7 8#include <linux/module.h> 9#include <linux/export.h> 10#include "internal.h" 11#define CREATE_TRACE_POINTS 12#include <trace/events/netfs.h> 13 14MODULE_DESCRIPTION("Network fs support"); 15MODULE_AUTHOR("Red Hat, Inc."); 16MODULE_LICENSE("GPL"); 17 18unsigned netfs_debug; 19module_param_named(debug, netfs_debug, uint, S_IWUSR | S_IRUGO); 20MODULE_PARM_DESC(netfs_debug, "Netfs support debugging mask");