// SPDX-License-Identifier: GPL-2.0-or-later /* FS-Cache statistics viewing interface * * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved. * Written by David Howells ([email protected]) */ #define FSCACHE_DEBUG_LEVEL … #include <linux/module.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> #include "internal.h" /* * Add files to /proc/fs/netfs/. */ int __init fscache_proc_init(void) { … } /* * Clean up the /proc/fs/fscache symlink. */ void fscache_proc_cleanup(void) { … }