diff options
author | Jeff Bonwick <Jeff.Bonwick@Sun.COM> | 2009-11-01 14:14:46 -0800 |
---|---|---|
committer | Jeff Bonwick <Jeff.Bonwick@Sun.COM> | 2009-11-01 14:14:46 -0800 |
commit | b24ab6762772a3f6a89393947930c7fa61306783 (patch) | |
tree | 2331f723da9e0da630ed6c6e9ada29c190250391 /usr/src/common/avl/avl.c | |
parent | 468c413a79615e77179e8d98f22a7e513a8135bd (diff) | |
download | illumos-joyent-b24ab6762772a3f6a89393947930c7fa61306783.tar.gz |
PSARC 2009/571 ZFS Deduplication Properties
6677093 zfs should have dedup capability
Diffstat (limited to 'usr/src/common/avl/avl.c')
-rw-r--r-- | usr/src/common/avl/avl.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr/src/common/avl/avl.c b/usr/src/common/avl/avl.c index c9727c643b..dd39c12d21 100644 --- a/usr/src/common/avl/avl.c +++ b/usr/src/common/avl/avl.c @@ -19,13 +19,10 @@ * CDDL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - - /* * AVL - generic AVL tree implementation for kernel use * @@ -243,7 +240,7 @@ avl_nearest(avl_tree_t *tree, avl_index_t where, int direction) * "void *" of the found tree node */ void * -avl_find(avl_tree_t *tree, void *value, avl_index_t *where) +avl_find(avl_tree_t *tree, const void *value, avl_index_t *where) { avl_node_t *node; avl_node_t *prev = NULL; |