include/uapi/linux/sunrpc_netlink.h
Source file repositories/reference/linux-study-clean/include/uapi/linux/sunrpc_netlink.h
File Facts
- System
- Linux kernel
- Corpus path
include/uapi/linux/sunrpc_netlink.h- Extension
.h- Size
- 1891 bytes
- Lines
- 85
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- 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
- No C-style include directives detected by the generator.
Detected Declarations
enum sunrpc_cache_type
Annotated Snippet
#ifndef _UAPI_LINUX_SUNRPC_NETLINK_H
#define _UAPI_LINUX_SUNRPC_NETLINK_H
#define SUNRPC_FAMILY_NAME "sunrpc"
#define SUNRPC_FAMILY_VERSION 1
enum sunrpc_cache_type {
SUNRPC_CACHE_TYPE_IP_MAP = 1,
SUNRPC_CACHE_TYPE_UNIX_GID = 2,
};
enum {
SUNRPC_A_CACHE_NOTIFY_CACHE_TYPE = 1,
__SUNRPC_A_CACHE_NOTIFY_MAX,
SUNRPC_A_CACHE_NOTIFY_MAX = (__SUNRPC_A_CACHE_NOTIFY_MAX - 1)
};
enum {
SUNRPC_A_IP_MAP_SEQNO = 1,
SUNRPC_A_IP_MAP_CLASS,
SUNRPC_A_IP_MAP_ADDR,
SUNRPC_A_IP_MAP_DOMAIN,
SUNRPC_A_IP_MAP_NEGATIVE,
SUNRPC_A_IP_MAP_EXPIRY,
__SUNRPC_A_IP_MAP_MAX,
SUNRPC_A_IP_MAP_MAX = (__SUNRPC_A_IP_MAP_MAX - 1)
};
enum {
SUNRPC_A_IP_MAP_REQS_REQUESTS = 1,
__SUNRPC_A_IP_MAP_REQS_MAX,
SUNRPC_A_IP_MAP_REQS_MAX = (__SUNRPC_A_IP_MAP_REQS_MAX - 1)
};
enum {
SUNRPC_A_UNIX_GID_SEQNO = 1,
SUNRPC_A_UNIX_GID_UID,
SUNRPC_A_UNIX_GID_GIDS,
SUNRPC_A_UNIX_GID_NEGATIVE,
SUNRPC_A_UNIX_GID_EXPIRY,
__SUNRPC_A_UNIX_GID_MAX,
SUNRPC_A_UNIX_GID_MAX = (__SUNRPC_A_UNIX_GID_MAX - 1)
};
enum {
SUNRPC_A_UNIX_GID_REQS_REQUESTS = 1,
__SUNRPC_A_UNIX_GID_REQS_MAX,
SUNRPC_A_UNIX_GID_REQS_MAX = (__SUNRPC_A_UNIX_GID_REQS_MAX - 1)
};
enum {
SUNRPC_A_CACHE_FLUSH_MASK = 1,
__SUNRPC_A_CACHE_FLUSH_MAX,
SUNRPC_A_CACHE_FLUSH_MAX = (__SUNRPC_A_CACHE_FLUSH_MAX - 1)
};
enum {
SUNRPC_CMD_CACHE_NOTIFY = 1,
SUNRPC_CMD_IP_MAP_GET_REQS,
SUNRPC_CMD_IP_MAP_SET_REQS,
SUNRPC_CMD_UNIX_GID_GET_REQS,
SUNRPC_CMD_UNIX_GID_SET_REQS,
SUNRPC_CMD_CACHE_FLUSH,
__SUNRPC_CMD_MAX,
SUNRPC_CMD_MAX = (__SUNRPC_CMD_MAX - 1)
};
#define SUNRPC_MCGRP_NONE "none"
#define SUNRPC_MCGRP_EXPORTD "exportd"
#endif /* _UAPI_LINUX_SUNRPC_NETLINK_H */
Annotation
- Detected declarations: `enum sunrpc_cache_type`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.