mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-24 00:00:19 +03:00
10 lines
199 B
Rust
10 lines
199 B
Rust
|
#[macro_export]
|
||
|
macro_rules! opt_set {
|
||
|
($opts:ident, $n:ident, $v:expr) => {
|
||
|
bch_bindgen::paste! {
|
||
|
$opts.$n = $v;
|
||
|
$opts.[<set_ $n _defined>](1);
|
||
|
}
|
||
|
}
|
||
|
}
|