Lines Matching refs:fid

388 feature_do_action(spa_t *spa, spa_feature_t fid, feature_action_t action,  in feature_do_action()  argument
392 zfeature_info_t *feature = &spa_feature_table[fid]; in feature_do_action()
396 ASSERT(VALID_FEATURE_FID(fid)); in feature_do_action()
447 spa_feature_enable(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_enable() argument
450 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_enable()
451 feature_enable_sync(spa, &spa_feature_table[fid], tx); in spa_feature_enable()
455 spa_feature_incr(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_incr() argument
457 feature_do_action(spa, fid, FEATURE_ACTION_INCR, tx); in spa_feature_incr()
461 spa_feature_decr(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_decr() argument
463 feature_do_action(spa, fid, FEATURE_ACTION_DECR, tx); in spa_feature_decr()
467 spa_feature_is_enabled(spa_t *spa, spa_feature_t fid) in spa_feature_is_enabled() argument
472 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_is_enabled()
476 err = feature_get_refcount(spa, &spa_feature_table[fid], &refcount); in spa_feature_is_enabled()
482 spa_feature_is_active(spa_t *spa, spa_feature_t fid) in spa_feature_is_active() argument
487 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_is_active()
491 err = feature_get_refcount(spa, &spa_feature_table[fid], &refcount); in spa_feature_is_active()
506 spa_feature_enabled_txg(spa_t *spa, spa_feature_t fid, uint64_t *txg) in spa_feature_enabled_txg() argument
510 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_enabled_txg()
514 err = feature_get_enabled_txg(spa, &spa_feature_table[fid], txg); in spa_feature_enabled_txg()