Home
last modified time | relevance | path

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

/linux-6.15/include/linux/
H A Dblkdev.h293 typedef unsigned int __bitwise blk_features_t; typedef
299 #define BLK_FEAT_FUA ((__force blk_features_t)(1u << 1))
302 #define BLK_FEAT_ROTATIONAL ((__force blk_features_t)(1u << 2))
308 #define BLK_FEAT_IO_STAT ((__force blk_features_t)(1u << 4))
317 #define BLK_FEAT_NOWAIT ((__force blk_features_t)(1u << 7))
320 #define BLK_FEAT_DAX ((__force blk_features_t)(1u << 8))
323 #define BLK_FEAT_POLL ((__force blk_features_t)(1u << 9))
326 #define BLK_FEAT_ZONED ((__force blk_features_t)(1u << 10))
339 ((__force blk_features_t)(1u << 15))
343 ((__force blk_features_t)(1u << 16))
[all …]
/linux-6.15/rust/bindings/
H A Dbindings_helper.h57 const blk_features_t RUST_CONST_HELPER_BLK_FEAT_ROTATIONAL = BLK_FEAT_ROTATIONAL;
/linux-6.15/block/
H A Dblk-sysfs.c222 size_t count, struct queue_limits *lim, blk_features_t feature) in queue_feature_store()