Deleted Added
full compact
zap.h (236884) zap.h (239774)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 286 unchanged lines hidden (view full) ---

295int zap_remove_int(objset_t *os, uint64_t obj, uint64_t value, dmu_tx_t *tx);
296int zap_lookup_int(objset_t *os, uint64_t obj, uint64_t value);
297int zap_increment_int(objset_t *os, uint64_t obj, uint64_t key, int64_t delta,
298 dmu_tx_t *tx);
299
300/* Here the key is an int and the value is a different int. */
301int zap_add_int_key(objset_t *os, uint64_t obj,
302 uint64_t key, uint64_t value, dmu_tx_t *tx);
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 286 unchanged lines hidden (view full) ---

295int zap_remove_int(objset_t *os, uint64_t obj, uint64_t value, dmu_tx_t *tx);
296int zap_lookup_int(objset_t *os, uint64_t obj, uint64_t value);
297int zap_increment_int(objset_t *os, uint64_t obj, uint64_t key, int64_t delta,
298 dmu_tx_t *tx);
299
300/* Here the key is an int and the value is a different int. */
301int zap_add_int_key(objset_t *os, uint64_t obj,
302 uint64_t key, uint64_t value, dmu_tx_t *tx);
303int zap_update_int_key(objset_t *os, uint64_t obj,
304 uint64_t key, uint64_t value, dmu_tx_t *tx);
303int zap_lookup_int_key(objset_t *os, uint64_t obj,
304 uint64_t key, uint64_t *valuep);
305
306int zap_increment(objset_t *os, uint64_t obj, const char *name, int64_t delta,
307 dmu_tx_t *tx);
308
309struct zap;
310struct zap_leaf;

--- 169 unchanged lines hidden ---
305int zap_lookup_int_key(objset_t *os, uint64_t obj,
306 uint64_t key, uint64_t *valuep);
307
308int zap_increment(objset_t *os, uint64_t obj, const char *name, int64_t delta,
309 dmu_tx_t *tx);
310
311struct zap;
312struct zap_leaf;

--- 169 unchanged lines hidden ---