Lines Matching defs:feature
60 * <feature> : ro
61 * <feature_list> : \(<feature>(:<feature>)*\)
276 * feature parts separately.
2491 * Return value of the specified feature.
2494 dasd_get_feature(struct ccw_device *cdev, int feature)
2502 return ((devmap->features & feature) != 0);
2506 * Set / reset given feature.
2507 * Flag indicates whether to set (!=0) or the reset (=0) the feature.
2510 dasd_set_feature(struct ccw_device *cdev, int feature, int flag)
2520 devmap->features |= feature;
2522 devmap->features &= ~feature;