David Howells | b900f4b | 2022-03-01 15:25:00 +0000 | [diff] [blame] | 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 | |
| 14 | MODULE_DESCRIPTION("Network fs support"); |
| 15 | MODULE_AUTHOR("Red Hat, Inc."); |
| 16 | MODULE_LICENSE("GPL"); |
| 17 | |
| 18 | unsigned netfs_debug; |
| 19 | module_param_named(debug, netfs_debug, uint, S_IWUSR | S_IRUGO); |
| 20 | MODULE_PARM_DESC(netfs_debug, "Netfs support debugging mask"); |