fs/orangefs/upcall.h
Source file repositories/reference/linux-study-clean/fs/orangefs/upcall.h
File Facts
- System
- Linux kernel
- Corpus path
fs/orangefs/upcall.h- Extension
.h- Size
- 6869 bytes
- Lines
- 261
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
struct orangefs_io_request_sstruct orangefs_lookup_request_sstruct orangefs_create_request_sstruct orangefs_symlink_request_sstruct orangefs_getattr_request_sstruct orangefs_setattr_request_sstruct orangefs_remove_request_sstruct orangefs_mkdir_request_sstruct orangefs_readdir_request_sstruct orangefs_readdirplus_request_sstruct orangefs_rename_request_sstruct orangefs_statfs_request_sstruct orangefs_truncate_request_sstruct orangefs_ra_cache_flush_request_sstruct orangefs_fs_mount_request_sstruct orangefs_fs_umount_request_sstruct orangefs_getxattr_request_sstruct orangefs_setxattr_request_sstruct orangefs_listxattr_request_sstruct orangefs_removexattr_request_sstruct orangefs_op_cancel_sstruct orangefs_fsync_request_sstruct orangefs_param_request_sstruct orangefs_perf_count_request_sstruct orangefs_fs_key_request_sstruct orangefs_features_request_sstruct orangefs_upcall_senum orangefs_param_request_typeenum orangefs_param_request_openum orangefs_perf_count_request_type
Annotated Snippet
struct orangefs_io_request_s {
__s32 __pad1;
__s32 buf_index;
__s32 count;
__s32 __pad2;
__s64 offset;
struct orangefs_object_kref refn;
enum ORANGEFS_io_type io_type;
__s32 readahead_size;
};
struct orangefs_lookup_request_s {
__s32 sym_follow;
__s32 __pad1;
struct orangefs_object_kref parent_refn;
char d_name[ORANGEFS_NAME_MAX];
};
struct orangefs_create_request_s {
struct orangefs_object_kref parent_refn;
struct ORANGEFS_sys_attr_s attributes;
char d_name[ORANGEFS_NAME_MAX];
};
struct orangefs_symlink_request_s {
struct orangefs_object_kref parent_refn;
struct ORANGEFS_sys_attr_s attributes;
char entry_name[ORANGEFS_NAME_MAX];
char target[ORANGEFS_NAME_MAX];
};
struct orangefs_getattr_request_s {
struct orangefs_object_kref refn;
__u32 mask;
__u32 __pad1;
};
struct orangefs_setattr_request_s {
struct orangefs_object_kref refn;
struct ORANGEFS_sys_attr_s attributes;
};
struct orangefs_remove_request_s {
struct orangefs_object_kref parent_refn;
char d_name[ORANGEFS_NAME_MAX];
};
struct orangefs_mkdir_request_s {
struct orangefs_object_kref parent_refn;
struct ORANGEFS_sys_attr_s attributes;
char d_name[ORANGEFS_NAME_MAX];
};
struct orangefs_readdir_request_s {
struct orangefs_object_kref refn;
__u64 token;
__s32 max_dirent_count;
__s32 buf_index;
};
struct orangefs_readdirplus_request_s {
struct orangefs_object_kref refn;
__u64 token;
__s32 max_dirent_count;
__u32 mask;
__s32 buf_index;
__s32 __pad1;
};
struct orangefs_rename_request_s {
struct orangefs_object_kref old_parent_refn;
struct orangefs_object_kref new_parent_refn;
char d_old_name[ORANGEFS_NAME_MAX];
char d_new_name[ORANGEFS_NAME_MAX];
};
struct orangefs_statfs_request_s {
__s32 fs_id;
__s32 __pad1;
};
struct orangefs_truncate_request_s {
struct orangefs_object_kref refn;
__s64 size;
};
struct orangefs_ra_cache_flush_request_s {
struct orangefs_object_kref refn;
};
Annotation
- Detected declarations: `struct orangefs_io_request_s`, `struct orangefs_lookup_request_s`, `struct orangefs_create_request_s`, `struct orangefs_symlink_request_s`, `struct orangefs_getattr_request_s`, `struct orangefs_setattr_request_s`, `struct orangefs_remove_request_s`, `struct orangefs_mkdir_request_s`, `struct orangefs_readdir_request_s`, `struct orangefs_readdirplus_request_s`.
- 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.