162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 262306a36Sopenharmony_ci/* Miscellaneous bits for the netfs support library. 362306a36Sopenharmony_ci * 462306a36Sopenharmony_ci * Copyright (C) 2022 Red Hat, Inc. All Rights Reserved. 562306a36Sopenharmony_ci * Written by David Howells (dhowells@redhat.com) 662306a36Sopenharmony_ci */ 762306a36Sopenharmony_ci 862306a36Sopenharmony_ci#include <linux/module.h> 962306a36Sopenharmony_ci#include <linux/export.h> 1062306a36Sopenharmony_ci#include "internal.h" 1162306a36Sopenharmony_ci#define CREATE_TRACE_POINTS 1262306a36Sopenharmony_ci#include <trace/events/netfs.h> 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ciMODULE_DESCRIPTION("Network fs support"); 1562306a36Sopenharmony_ciMODULE_AUTHOR("Red Hat, Inc."); 1662306a36Sopenharmony_ciMODULE_LICENSE("GPL"); 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ciunsigned netfs_debug; 1962306a36Sopenharmony_cimodule_param_named(debug, netfs_debug, uint, S_IWUSR | S_IRUGO); 2062306a36Sopenharmony_ciMODULE_PARM_DESC(netfs_debug, "Netfs support debugging mask"); 21