btrfs-uapi 0.12.0

Wrappers around the btrfs userspace interface (ioctls and sysfs)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Re-exports of the shared test harness from the `btrfs-test-utils` crate.
//!
//! The previous in-crate copies of `BackingFile`, `LoopbackDevice`, and
//! `Mount` have been consolidated in `util/testing`. This module just
//! re-exports them under `crate::common::*` so the existing
//! `use crate::common::{...}` imports in test files keep working.

#![allow(unused_imports)]

pub use btrfs_test_utils::{
    BackingFile, LoopbackDevice, Mount, TEST_LABEL, TEST_UUID,
    cache_gzipped_image, deterministic_mount, mount_existing_readonly, run,
    single_mount, verify_test_data, write_compressible_data, write_test_data,
};