Lines Matching defs:features
272 void vhost_set_backend_features(struct vhost_dev *dev, u64 features);
299 static inline u64 vhost_features_u64(const int *features, int size, int idx)
305 int bit = features[i];
313 #define VHOST_FEATURES_U64(features, idx) \
314 vhost_features_u64(features, ARRAY_SIZE(features), idx)
316 #define DEFINE_VHOST_FEATURES_ARRAY_ENTRY(idx, features) \
317 [idx] = VHOST_FEATURES_U64(features, idx),
319 #define DEFINE_VHOST_FEATURES_ARRAY(array, features) \
322 DEFINE_VHOST_FEATURES_ARRAY_ENTRY, features) \