diff options
author | Brian Behlendorf <[email protected]> | 2011-09-27 16:07:35 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-09-27 16:12:36 -0700 |
commit | dee28b070057224dec67b779e80be14493a4ffb7 (patch) | |
tree | f794f969d21542f7c97b0f0dafeec88f6987108b /include/sys | |
parent | 7a0232735d7527b08e02196762727994aa6065f9 (diff) |
Export symbols for the full ZAP API
Export all the symbols for the ZAP API. This allows external modules
to cleanly interface with ZAP type objects. Previously only a subset
of the functionality was exposed. Documention for the ZAP API can be
found in the sys/zap.h header.
This change also removes a duplicate zap_increment_int() prototype.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/zap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/sys/zap.h b/include/sys/zap.h index a1130bbba..6237f8bf5 100644 --- a/include/sys/zap.h +++ b/include/sys/zap.h @@ -304,8 +304,6 @@ int zap_lookup_int_key(objset_t *os, uint64_t obj, * They name is a stringified version of key; increment its value by * delta. Zero values will be zap_remove()-ed. */ -int zap_increment_int(objset_t *os, uint64_t obj, uint64_t key, int64_t delta, - dmu_tx_t *tx); int zap_increment(objset_t *os, uint64_t obj, const char *name, int64_t delta, dmu_tx_t *tx); |