fs/btrfs/orphan.h

Source file repositories/reference/linux-study-clean/fs/btrfs/orphan.h

File Facts

System
Linux kernel
Corpus path
fs/btrfs/orphan.h
Extension
.h
Size
380 bytes
Lines
17
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.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef BTRFS_ORPHAN_H
#define BTRFS_ORPHAN_H

#include <linux/types.h>

struct btrfs_trans_handle;
struct btrfs_root;

int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root, u64 offset);
int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root, u64 offset);

#endif

Annotation

Implementation Notes