diff options
author | George Melikov <[email protected]> | 2017-01-23 20:36:24 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-01-23 09:36:24 -0800 |
commit | f85c06bedfd2a60f5b5d6a7492ed847c2bffd9fe (patch) | |
tree | f9088bd3cfb4c9cacdbeae63012ad7d346f4bce8 /include/sys/zap.h | |
parent | 4ea3f86426f76e59244ec6f66504da688d90193c (diff) |
OpenZFS 7054 - dmu_tx_hold_t should use refcount_t to track space
Authored by: Igor Kozhukhov [email protected]
Reviewed by: George Wilson <[email protected]>
Reviewed by: Paul Dagnelie <[email protected]>
Reviewed by: Igor Kozhukhov <[email protected]>
Approved by: Dan McDonald <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Ported-by: George Melikov [email protected]
OpenZFS-issue: https://www.illumos.org/issues/7054
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/0c779ad
Closes #5600
Diffstat (limited to 'include/sys/zap.h')
-rw-r--r-- | include/sys/zap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/zap.h b/include/sys/zap.h index ba75ac58f..513c8f672 100644 --- a/include/sys/zap.h +++ b/include/sys/zap.h @@ -244,7 +244,7 @@ int zap_lookup_norm_by_dnode(dnode_t *dn, const char *name, boolean_t *ncp); int zap_count_write_by_dnode(dnode_t *dn, const char *name, - int add, uint64_t *towrite, uint64_t *tooverwrite); + int add, refcount_t *towrite, refcount_t *tooverwrite); /* * Create an attribute with the given name and value. |