Lines Matching refs:fid

375 feature_do_action(spa_t *spa, spa_feature_t fid, feature_action_t action,  in feature_do_action()  argument
379 zfeature_info_t *feature = &spa_feature_table[fid]; in feature_do_action()
383 ASSERT(VALID_FEATURE_FID(fid)); in feature_do_action()
434 spa_feature_enable(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_enable() argument
437 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_enable()
438 feature_enable_sync(spa, &spa_feature_table[fid], tx); in spa_feature_enable()
442 spa_feature_incr(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_incr() argument
444 feature_do_action(spa, fid, FEATURE_ACTION_INCR, tx); in spa_feature_incr()
448 spa_feature_decr(spa_t *spa, spa_feature_t fid, dmu_tx_t *tx) in spa_feature_decr() argument
450 feature_do_action(spa, fid, FEATURE_ACTION_DECR, tx); in spa_feature_decr()
454 spa_feature_is_enabled(spa_t *spa, spa_feature_t fid) in spa_feature_is_enabled() argument
459 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_is_enabled()
463 err = feature_get_refcount(spa, &spa_feature_table[fid], &refcount); in spa_feature_is_enabled()
469 spa_feature_is_active(spa_t *spa, spa_feature_t fid) in spa_feature_is_active() argument
474 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_is_active()
478 err = feature_get_refcount(spa, &spa_feature_table[fid], &refcount); in spa_feature_is_active()
493 spa_feature_enabled_txg(spa_t *spa, spa_feature_t fid, uint64_t *txg) in spa_feature_enabled_txg() argument
497 ASSERT(VALID_FEATURE_FID(fid)); in spa_feature_enabled_txg()
501 err = feature_get_enabled_txg(spa, &spa_feature_table[fid], txg); in spa_feature_enabled_txg()