Home
last modified time | relevance | path

Searched refs:blk_features_t (Results 1 – 3 of 3) sorted by relevance

/linux-6.14.4/include/linux/
Dblkdev.h287 typedef unsigned int __bitwise blk_features_t; typedef
290 #define BLK_FEAT_WRITE_CACHE ((__force blk_features_t)(1u << 0))
293 #define BLK_FEAT_FUA ((__force blk_features_t)(1u << 1))
296 #define BLK_FEAT_ROTATIONAL ((__force blk_features_t)(1u << 2))
299 #define BLK_FEAT_ADD_RANDOM ((__force blk_features_t)(1u << 3))
302 #define BLK_FEAT_IO_STAT ((__force blk_features_t)(1u << 4))
305 #define BLK_FEAT_STABLE_WRITES ((__force blk_features_t)(1u << 5))
308 #define BLK_FEAT_SYNCHRONOUS ((__force blk_features_t)(1u << 6))
311 #define BLK_FEAT_NOWAIT ((__force blk_features_t)(1u << 7))
314 #define BLK_FEAT_DAX ((__force blk_features_t)(1u << 8))
[all …]
/linux-6.14.4/rust/bindings/
Dbindings_helper.h50 const blk_features_t RUST_CONST_HELPER_BLK_FEAT_ROTATIONAL = BLK_FEAT_ROTATIONAL;
/linux-6.14.4/block/
Dblk-sysfs.c194 size_t count, struct queue_limits *lim, blk_features_t feature) in queue_feature_store()