tools/perf/util/fncache.c
Source file repositories/reference/linux-study-clean/tools/perf/util/fncache.c
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/util/fncache.c- Extension
.c- Size
- 1404 bytes
- Lines
- 69
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
pthread.hstdlib.hstring.hunistd.hlinux/compiler.hfncache.hhashmap.h
Detected Declarations
function fncache__hashfunction fncache__equalfunction fncache__initfunction lookup_fncachefunction update_fncachefunction file_available
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/* Manage a cache of file names' existence */
#include <pthread.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <linux/compiler.h>
#include "fncache.h"
#include "hashmap.h"
static struct hashmap *fncache;
static size_t fncache__hash(long key, void *ctx __maybe_unused)
{
return str_hash((const char *)key);
}
static bool fncache__equal(long key1, long key2, void *ctx __maybe_unused)
{
return strcmp((const char *)key1, (const char *)key2) == 0;
}
static void fncache__init(void)
{
fncache = hashmap__new(fncache__hash, fncache__equal, /*ctx=*/NULL);
}
static struct hashmap *fncache__get(void)
{
static pthread_once_t fncache_once = PTHREAD_ONCE_INIT;
pthread_once(&fncache_once, fncache__init);
return fncache;
}
static bool lookup_fncache(const char *name, bool *res)
{
long val;
if (!hashmap__find(fncache__get(), name, &val))
return false;
*res = (val != 0);
return true;
}
static void update_fncache(const char *name, bool res)
{
char *old_key = NULL, *key = strdup(name);
if (key) {
hashmap__set(fncache__get(), key, res, &old_key, /*old_value*/NULL);
free(old_key);
}
}
/* No LRU, only use when bounded in some other way. */
bool file_available(const char *name)
{
bool res;
if (lookup_fncache(name, &res))
return res;
res = access(name, R_OK) == 0;
update_fncache(name, res);
return res;
}
Annotation
- Immediate include surface: `pthread.h`, `stdlib.h`, `string.h`, `unistd.h`, `linux/compiler.h`, `fncache.h`, `hashmap.h`.
- Detected declarations: `function fncache__hash`, `function fncache__equal`, `function fncache__init`, `function lookup_fncache`, `function update_fncache`, `function file_available`.
- Atlas domain: Support Tooling And Documentation / tools.
- 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.