fs/netfs/fscache_proc.c
Source file repositories/reference/linux-study-clean/fs/netfs/fscache_proc.c
File Facts
- System
- Linux kernel
- Corpus path
fs/netfs/fscache_proc.c- Extension
.c- Size
- 1040 bytes
- Lines
- 48
- Domain
- Core OS
- Bucket
- VFS And Filesystem Core
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
Dependency Surface
linux/module.hlinux/proc_fs.hlinux/seq_file.hinternal.h
Detected Declarations
function Copyrightfunction fscache_proc_cleanup
Annotated Snippet
// 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 (dhowells@redhat.com)
*/
#define FSCACHE_DEBUG_LEVEL CACHE
#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)
{
if (!proc_symlink("fs/fscache", NULL, "netfs"))
goto error_sym;
if (!proc_create_seq("fs/netfs/caches", S_IFREG | 0444, NULL,
&fscache_caches_seq_ops))
goto error;
if (!proc_create_seq("fs/netfs/volumes", S_IFREG | 0444, NULL,
&fscache_volumes_seq_ops))
goto error;
if (!proc_create_seq("fs/netfs/cookies", S_IFREG | 0444, NULL,
&fscache_cookies_seq_ops))
goto error;
return 0;
error:
remove_proc_entry("fs/fscache", NULL);
error_sym:
return -ENOMEM;
}
/*
* Clean up the /proc/fs/fscache symlink.
*/
void fscache_proc_cleanup(void)
{
remove_proc_subtree("fs/fscache", NULL);
}
Annotation
- Immediate include surface: `linux/module.h`, `linux/proc_fs.h`, `linux/seq_file.h`, `internal.h`.
- Detected declarations: `function Copyright`, `function fscache_proc_cleanup`.
- Atlas domain: Core OS / VFS And Filesystem Core.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.