usr/src/uts/common/fs/zfs/zap_leaf.c
author Tim Haley <Tim.Haley@Sun.COM>
Fri, 30 Oct 2009 18:47:17 -0600
changeset 10921 8aac17999e4d
parent 9643 ffd8e7765f02
child 10922 e2081f502306
permissions -rw-r--r--
PSARC 2009/479 zpool recovery support 6667683 need a way to rollback to an uberblock from a previous txg 6885998 bad ASSERT() in traverse_zil_block()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
     5
 * Common Development and Distribution License (the "License").
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 5498
diff changeset
    22
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
 * The 512-byte leaf is broken into 32 16-byte chunks.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
 * chunk number n means l_chunk[n], even though the header precedes it.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
 * the names are stored null-terminated.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 5498
diff changeset
    32
#include <sys/spa.h>
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 5498
diff changeset
    33
#include <sys/dmu.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <sys/zfs_context.h>
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 5498
diff changeset
    35
#include <sys/fs/zfs.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
#include <sys/zap.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
#include <sys/zap_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#include <sys/zap_leaf.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
    40
static uint16_t *zap_leaf_rehash_entry(zap_leaf_t *l, uint16_t entry);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
    41
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#define	CHAIN_END 0xffff /* end of the chunk chain */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
    44
/* half the (current) minimum block size */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
#define	MAX_ARRAY_BYTES (8<<10)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
#define	LEAF_HASH(l, h) \
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
    48
	((ZAP_LEAF_HASH_NUMENTRIES(l)-1) & \
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
    49
	((h) >> (64 - ZAP_LEAF_HASH_SHIFT(l)-(l)->l_phys->l_hdr.lh_prefix_len)))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
#define	LEAF_HASH_ENTPTR(l, h) (&(l)->l_phys->l_hash[LEAF_HASH(l, h)])
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    53
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    54
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    55
zap_memset(void *a, int c, size_t n)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    56
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
	char *cp = a;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    58
	char *cpend = cp + n;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
	while (cp < cpend)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
		*cp++ = c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
stv(int len, void *addr, uint64_t value)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
	switch (len) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
	case 1:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
		*(uint8_t *)addr = value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	case 2:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
		*(uint16_t *)addr = value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	case 4:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
		*(uint32_t *)addr = value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	case 8:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
		*(uint64_t *)addr = value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
	ASSERT(!"bad int len");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
static uint64_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
ldv(int len, const void *addr)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
	switch (len) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
	case 1:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
		return (*(uint8_t *)addr);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
	case 2:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
		return (*(uint16_t *)addr);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
	case 4:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
		return (*(uint32_t *)addr);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
	case 8:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    95
		return (*(uint64_t *)addr);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    96
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
	ASSERT(!"bad int len");
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 1578
diff changeset
    98
	return (0xFEEDFACEDEADBEEFULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    99
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   100
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
void
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   102
zap_leaf_byteswap(zap_leaf_phys_t *buf, int size)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
	int i;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   105
	zap_leaf_t l;
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   106
	l.l_bs = highbit(size)-1;
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   107
	l.l_phys = buf;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   109
	buf->l_hdr.lh_block_type = 	BSWAP_64(buf->l_hdr.lh_block_type);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   110
	buf->l_hdr.lh_prefix = 		BSWAP_64(buf->l_hdr.lh_prefix);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   111
	buf->l_hdr.lh_magic = 		BSWAP_32(buf->l_hdr.lh_magic);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   112
	buf->l_hdr.lh_nfree = 		BSWAP_16(buf->l_hdr.lh_nfree);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   113
	buf->l_hdr.lh_nentries = 	BSWAP_16(buf->l_hdr.lh_nentries);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   114
	buf->l_hdr.lh_prefix_len = 	BSWAP_16(buf->l_hdr.lh_prefix_len);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
	buf->l_hdr.lh_freelist = 	BSWAP_16(buf->l_hdr.lh_freelist);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   117
	for (i = 0; i < ZAP_LEAF_HASH_NUMENTRIES(&l); i++)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
		buf->l_hash[i] = BSWAP_16(buf->l_hash[i]);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   120
	for (i = 0; i < ZAP_LEAF_NUMCHUNKS(&l); i++) {
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   121
		zap_leaf_chunk_t *lc = &ZAP_LEAF_CHUNK(&l, i);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
		struct zap_leaf_entry *le;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   124
		switch (lc->l_free.lf_type) {
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   125
		case ZAP_CHUNK_ENTRY:
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   126
			le = &lc->l_entry;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   128
			le->le_type =		BSWAP_8(le->le_type);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   129
			le->le_int_size =	BSWAP_8(le->le_int_size);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   130
			le->le_next =		BSWAP_16(le->le_next);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   131
			le->le_name_chunk =	BSWAP_16(le->le_name_chunk);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   132
			le->le_name_length =	BSWAP_16(le->le_name_length);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   133
			le->le_value_chunk =	BSWAP_16(le->le_value_chunk);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   134
			le->le_value_length =	BSWAP_16(le->le_value_length);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   135
			le->le_cd =		BSWAP_32(le->le_cd);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   136
			le->le_hash =		BSWAP_64(le->le_hash);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
			break;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   138
		case ZAP_CHUNK_FREE:
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   139
			lc->l_free.lf_type =	BSWAP_8(lc->l_free.lf_type);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   140
			lc->l_free.lf_next =	BSWAP_16(lc->l_free.lf_next);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
			break;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   142
		case ZAP_CHUNK_ARRAY:
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   143
			lc->l_array.la_type =	BSWAP_8(lc->l_array.la_type);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   144
			lc->l_array.la_next =	BSWAP_16(lc->l_array.la_next);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   145
			/* la_array doesn't need swapping */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   146
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   147
		default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   148
			ASSERT(!"bad leaf type");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   149
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   150
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   151
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
void
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
   154
zap_leaf_init(zap_leaf_t *l, boolean_t sort)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   155
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   156
	int i;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   157
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   158
	l->l_bs = highbit(l->l_dbuf->db_size)-1;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
	zap_memset(&l->l_phys->l_hdr, 0, sizeof (struct zap_leaf_header));
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   160
	zap_memset(l->l_phys->l_hash, CHAIN_END, 2*ZAP_LEAF_HASH_NUMENTRIES(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   161
	for (i = 0; i < ZAP_LEAF_NUMCHUNKS(l); i++) {
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   162
		ZAP_LEAF_CHUNK(l, i).l_free.lf_type = ZAP_CHUNK_FREE;
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   163
		ZAP_LEAF_CHUNK(l, i).l_free.lf_next = i+1;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   164
	}
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   165
	ZAP_LEAF_CHUNK(l, ZAP_LEAF_NUMCHUNKS(l)-1).l_free.lf_next = CHAIN_END;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   166
	l->l_phys->l_hdr.lh_block_type = ZBT_LEAF;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   167
	l->l_phys->l_hdr.lh_magic = ZAP_LEAF_MAGIC;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   168
	l->l_phys->l_hdr.lh_nfree = ZAP_LEAF_NUMCHUNKS(l);
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
   169
	if (sort)
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   170
		l->l_phys->l_hdr.lh_flags |= ZLF_ENTRIES_CDSORTED;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   171
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   172
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   173
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   174
 * Routines which manipulate leaf chunks (l_chunk[]).
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   175
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   176
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   177
static uint16_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   178
zap_leaf_chunk_alloc(zap_leaf_t *l)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   179
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   180
	int chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   181
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   182
	ASSERT(l->l_phys->l_hdr.lh_nfree > 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   183
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   184
	chunk = l->l_phys->l_hdr.lh_freelist;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   185
	ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   186
	ASSERT3U(ZAP_LEAF_CHUNK(l, chunk).l_free.lf_type, ==, ZAP_CHUNK_FREE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   187
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   188
	l->l_phys->l_hdr.lh_freelist = ZAP_LEAF_CHUNK(l, chunk).l_free.lf_next;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   189
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   190
	l->l_phys->l_hdr.lh_nfree--;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   191
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   192
	return (chunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   193
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   194
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   195
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   196
zap_leaf_chunk_free(zap_leaf_t *l, uint16_t chunk)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   197
{
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   198
	struct zap_leaf_free *zlf = &ZAP_LEAF_CHUNK(l, chunk).l_free;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   199
	ASSERT3U(l->l_phys->l_hdr.lh_nfree, <, ZAP_LEAF_NUMCHUNKS(l));
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   200
	ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   201
	ASSERT(zlf->lf_type != ZAP_CHUNK_FREE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   202
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   203
	zlf->lf_type = ZAP_CHUNK_FREE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   204
	zlf->lf_next = l->l_phys->l_hdr.lh_freelist;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   205
	bzero(zlf->lf_pad, sizeof (zlf->lf_pad)); /* help it to compress */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   206
	l->l_phys->l_hdr.lh_freelist = chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   207
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   208
	l->l_phys->l_hdr.lh_nfree++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   209
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   210
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   211
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   212
 * Routines which manipulate leaf arrays (zap_leaf_array type chunks).
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   213
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   214
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   215
static uint16_t
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   216
zap_leaf_array_create(zap_leaf_t *l, const char *buf,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   217
	int integer_size, int num_integers)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   218
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   219
	uint16_t chunk_head;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   220
	uint16_t *chunkp = &chunk_head;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   221
	int byten = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   222
	uint64_t value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   223
	int shift = (integer_size-1)*8;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   224
	int len = num_integers;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   225
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   226
	ASSERT3U(num_integers * integer_size, <, MAX_ARRAY_BYTES);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   227
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   228
	while (len > 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   229
		uint16_t chunk = zap_leaf_chunk_alloc(l);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   230
		struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(l, chunk).l_array;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   231
		int i;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   232
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   233
		la->la_type = ZAP_CHUNK_ARRAY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   234
		for (i = 0; i < ZAP_LEAF_ARRAY_BYTES; i++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   235
			if (byten == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   236
				value = ldv(integer_size, buf);
3052
7a3625b7393b 6489548 zap_leaf_array_create() relies on architecture-specific behavior
ahrens
parents: 2856
diff changeset
   237
			la->la_array[i] = value >> shift;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   238
			value <<= 8;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   239
			if (++byten == integer_size) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   240
				byten = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   241
				buf += integer_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   242
				if (--len == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   243
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   244
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   245
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   246
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   247
		*chunkp = chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   248
		chunkp = &la->la_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   249
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   250
	*chunkp = CHAIN_END;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   251
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   252
	return (chunk_head);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   253
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   254
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   255
static void
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   256
zap_leaf_array_free(zap_leaf_t *l, uint16_t *chunkp)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   257
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   258
	uint16_t chunk = *chunkp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   259
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   260
	*chunkp = CHAIN_END;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   261
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   262
	while (chunk != CHAIN_END) {
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   263
		int nextchunk = ZAP_LEAF_CHUNK(l, chunk).l_array.la_next;
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   264
		ASSERT3U(ZAP_LEAF_CHUNK(l, chunk).l_array.la_type, ==,
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   265
		    ZAP_CHUNK_ARRAY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   266
		zap_leaf_chunk_free(l, chunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   267
		chunk = nextchunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   268
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   269
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   270
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   271
/* array_len and buf_len are in integers, not bytes */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   272
static void
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   273
zap_leaf_array_read(zap_leaf_t *l, uint16_t chunk,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   274
    int array_int_len, int array_len, int buf_int_len, uint64_t buf_len,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   275
    char *buf)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   276
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   277
	int len = MIN(array_len, buf_len);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   278
	int byten = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   279
	uint64_t value = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   280
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   281
	ASSERT3U(array_int_len, <=, buf_int_len);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   282
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   283
	/* Fast path for one 8-byte integer */
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   284
	if (array_int_len == 8 && buf_int_len == 8 && len == 1) {
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   285
		struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(l, chunk).l_array;
899
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   286
		uint8_t *ip = la->la_array;
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   287
		uint64_t *buf64 = (uint64_t *)buf;
899
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   288
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   289
		*buf64 = (uint64_t)ip[0] << 56 | (uint64_t)ip[1] << 48 |
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   290
		    (uint64_t)ip[2] << 40 | (uint64_t)ip[3] << 32 |
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   291
		    (uint64_t)ip[4] << 24 | (uint64_t)ip[5] << 16 |
2d007157e61d 6349502 fix for 6347493 breaks zfs on sparc
bonwick
parents: 885
diff changeset
   292
		    (uint64_t)ip[6] << 8 | (uint64_t)ip[7];
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   293
		return;
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   294
	}
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   295
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   296
	/* Fast path for an array of 1-byte integers (eg. the entry name) */
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   297
	if (array_int_len == 1 && buf_int_len == 1 &&
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   298
	    buf_len > array_len + ZAP_LEAF_ARRAY_BYTES) {
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   299
		while (chunk != CHAIN_END) {
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   300
			struct zap_leaf_array *la =
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   301
			    &ZAP_LEAF_CHUNK(l, chunk).l_array;
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   302
			bcopy(la->la_array, buf, ZAP_LEAF_ARRAY_BYTES);
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   303
			buf += ZAP_LEAF_ARRAY_BYTES;
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   304
			chunk = la->la_next;
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   305
		}
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   306
		return;
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   307
	}
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   308
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   309
	while (len > 0) {
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   310
		struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(l, chunk).l_array;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   311
		int i;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   312
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   313
		ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   314
		for (i = 0; i < ZAP_LEAF_ARRAY_BYTES && len > 0; i++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   315
			value = (value << 8) | la->la_array[i];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   316
			byten++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   317
			if (byten == array_int_len) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   318
				stv(buf_int_len, buf, value);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   319
				byten = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   320
				len--;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   321
				if (len == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   322
					return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   323
				buf += buf_int_len;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   324
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   325
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   326
		chunk = la->la_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   327
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   328
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   329
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   330
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   331
 * Only to be used on 8-bit arrays.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   332
 * array_len is actual len in bytes (not encoded le_value_length).
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   333
 * namenorm is null-terminated.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   334
 */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   335
static boolean_t
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   336
zap_leaf_array_match(zap_leaf_t *l, zap_name_t *zn, int chunk, int array_len)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   337
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   338
	int bseen = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   339
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   340
	if (zn->zn_matchtype == MT_FIRST) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   341
		char *thisname = kmem_alloc(array_len, KM_SLEEP);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   342
		boolean_t match;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   343
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   344
		zap_leaf_array_read(l, chunk, 1, array_len, 1,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   345
		    array_len, thisname);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   346
		match = zap_match(zn, thisname);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   347
		kmem_free(thisname, array_len);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   348
		return (match);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   349
	}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   350
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   351
	/* Fast path for exact matching */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   352
	while (bseen < array_len) {
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   353
		struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(l, chunk).l_array;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   354
		int toread = MIN(array_len - bseen, ZAP_LEAF_ARRAY_BYTES);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   355
		ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   356
		if (bcmp(la->la_array, zn->zn_name_orij + bseen, toread))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   357
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   358
		chunk = la->la_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   359
		bseen += toread;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   360
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   361
	return (bseen == array_len);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   362
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   363
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   364
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   365
 * Routines which manipulate leaf entries.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   366
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   367
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   368
int
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   369
zap_leaf_lookup(zap_leaf_t *l, zap_name_t *zn, zap_entry_handle_t *zeh)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   370
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   371
	uint16_t *chunkp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   372
	struct zap_leaf_entry *le;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   373
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   374
	ASSERT3U(l->l_phys->l_hdr.lh_magic, ==, ZAP_LEAF_MAGIC);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   375
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   376
again:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   377
	for (chunkp = LEAF_HASH_ENTPTR(l, zn->zn_hash);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   378
	    *chunkp != CHAIN_END; chunkp = &le->le_next) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   379
		uint16_t chunk = *chunkp;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   380
		le = ZAP_LEAF_ENTRY(l, chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   381
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   382
		ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   383
		ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   384
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   385
		if (le->le_hash != zn->zn_hash)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   386
			continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   387
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   388
		/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   389
		 * NB: the entry chain is always sorted by cd on
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   390
		 * normalized zap objects, so this will find the
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   391
		 * lowest-cd match for MT_FIRST.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   392
		 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   393
		ASSERT(zn->zn_matchtype == MT_EXACT ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   394
		    (l->l_phys->l_hdr.lh_flags & ZLF_ENTRIES_CDSORTED));
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   395
		if (zap_leaf_array_match(l, zn, le->le_name_chunk,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   396
		    le->le_name_length)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   397
			zeh->zeh_num_integers = le->le_value_length;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   398
			zeh->zeh_integer_size = le->le_int_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   399
			zeh->zeh_cd = le->le_cd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   400
			zeh->zeh_hash = le->le_hash;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   401
			zeh->zeh_chunkp = chunkp;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   402
			zeh->zeh_leaf = l;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   403
			return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   404
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   405
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   406
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   407
	/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   408
	 * NB: we could of course do this in one pass, but that would be
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   409
	 * a pain.  We'll see if MT_BEST is even used much.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   410
	 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   411
	if (zn->zn_matchtype == MT_BEST) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   412
		zn->zn_matchtype = MT_FIRST;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   413
		goto again;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   414
	}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   415
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   416
	return (ENOENT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   417
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   418
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   419
/* Return (h1,cd1 >= h2,cd2) */
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   420
#define	HCD_GTEQ(h1, cd1, h2, cd2) \
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   421
	((h1 > h2) ? TRUE : ((h1 == h2 && cd1 >= cd2) ? TRUE : FALSE))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   422
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   423
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   424
zap_leaf_lookup_closest(zap_leaf_t *l,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   425
    uint64_t h, uint32_t cd, zap_entry_handle_t *zeh)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   426
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   427
	uint16_t chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   428
	uint64_t besth = -1ULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   429
	uint32_t bestcd = ZAP_MAXCD;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   430
	uint16_t bestlh = ZAP_LEAF_HASH_NUMENTRIES(l)-1;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   431
	uint16_t lh;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   432
	struct zap_leaf_entry *le;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   433
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   434
	ASSERT3U(l->l_phys->l_hdr.lh_magic, ==, ZAP_LEAF_MAGIC);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   435
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   436
	for (lh = LEAF_HASH(l, h); lh <= bestlh; lh++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   437
		for (chunk = l->l_phys->l_hash[lh];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   438
		    chunk != CHAIN_END; chunk = le->le_next) {
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   439
			le = ZAP_LEAF_ENTRY(l, chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   440
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   441
			ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   442
			ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   443
885
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   444
			if (HCD_GTEQ(le->le_hash, le->le_cd, h, cd) &&
d925b21dba78 6347493 tar of 25K empty directory entries in ZFS takes 30+ seconds ...
ahrens
parents: 789
diff changeset
   445
			    HCD_GTEQ(besth, bestcd, le->le_hash, le->le_cd)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   446
				ASSERT3U(bestlh, >=, lh);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   447
				bestlh = lh;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
				besth = le->le_hash;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
				bestcd = le->le_cd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   451
				zeh->zeh_num_integers = le->le_value_length;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   452
				zeh->zeh_integer_size = le->le_int_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   453
				zeh->zeh_cd = le->le_cd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   454
				zeh->zeh_hash = le->le_hash;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
				zeh->zeh_fakechunk = chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   456
				zeh->zeh_chunkp = &zeh->zeh_fakechunk;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   457
				zeh->zeh_leaf = l;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
	return (bestcd == ZAP_MAXCD ? ENOENT : 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   463
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   465
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   466
zap_entry_read(const zap_entry_handle_t *zeh,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   467
    uint8_t integer_size, uint64_t num_integers, void *buf)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   468
{
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   469
	struct zap_leaf_entry *le =
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   470
	    ZAP_LEAF_ENTRY(zeh->zeh_leaf, *zeh->zeh_chunkp);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   471
	ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   472
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   473
	if (le->le_int_size > integer_size)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   474
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   475
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   476
	zap_leaf_array_read(zeh->zeh_leaf, le->le_value_chunk, le->le_int_size,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   477
	    le->le_value_length, integer_size, num_integers, buf);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   478
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   479
	if (zeh->zeh_num_integers > num_integers)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   480
		return (EOVERFLOW);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   481
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   482
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   483
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   484
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   485
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   486
zap_entry_read_name(const zap_entry_handle_t *zeh, uint16_t buflen, char *buf)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
{
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   488
	struct zap_leaf_entry *le =
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   489
	    ZAP_LEAF_ENTRY(zeh->zeh_leaf, *zeh->zeh_chunkp);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   490
	ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   491
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   492
	zap_leaf_array_read(zeh->zeh_leaf, le->le_name_chunk, 1,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   493
	    le->le_name_length, 1, buflen, buf);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   494
	if (le->le_name_length > buflen)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   495
		return (EOVERFLOW);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   496
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   497
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   498
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   499
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   500
zap_entry_update(zap_entry_handle_t *zeh,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   501
	uint8_t integer_size, uint64_t num_integers, const void *buf)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   502
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   503
	int delta_chunks;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   504
	zap_leaf_t *l = zeh->zeh_leaf;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   505
	struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, *zeh->zeh_chunkp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   507
	delta_chunks = ZAP_LEAF_ARRAY_NCHUNKS(num_integers * integer_size) -
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   508
	    ZAP_LEAF_ARRAY_NCHUNKS(le->le_value_length * le->le_int_size);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   509
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   510
	if ((int)l->l_phys->l_hdr.lh_nfree < delta_chunks)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   511
		return (EAGAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   512
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   513
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   514
	 * We should search other chained leaves (via
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   515
	 * zap_entry_remove,create?) otherwise returning EAGAIN will
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
	 * just send us into an infinite loop if we have to chain
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   517
	 * another leaf block, rather than being able to split this
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
	 * block.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   521
	zap_leaf_array_free(l, &le->le_value_chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
	le->le_value_chunk =
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   523
	    zap_leaf_array_create(l, buf, integer_size, num_integers);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   524
	le->le_value_length = num_integers;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   525
	le->le_int_size = integer_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   526
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   527
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   528
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   529
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
zap_entry_remove(zap_entry_handle_t *zeh)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   532
	uint16_t entry_chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
	struct zap_leaf_entry *le;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   534
	zap_leaf_t *l = zeh->zeh_leaf;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   535
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   536
	ASSERT3P(zeh->zeh_chunkp, !=, &zeh->zeh_fakechunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   537
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   538
	entry_chunk = *zeh->zeh_chunkp;
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   539
	le = ZAP_LEAF_ENTRY(l, entry_chunk);
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   540
	ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   541
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   542
	zap_leaf_array_free(l, &le->le_name_chunk);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   543
	zap_leaf_array_free(l, &le->le_value_chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   544
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   545
	*zeh->zeh_chunkp = le->le_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   546
	zap_leaf_chunk_free(l, entry_chunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   547
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   548
	l->l_phys->l_hdr.lh_nentries--;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   549
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   550
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   551
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   552
zap_entry_create(zap_leaf_t *l, const char *name, uint64_t h, uint32_t cd,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   553
    uint8_t integer_size, uint64_t num_integers, const void *buf,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   554
    zap_entry_handle_t *zeh)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   555
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   556
	uint16_t chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   557
	uint16_t *chunkp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   558
	struct zap_leaf_entry *le;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   559
	uint64_t namelen, valuelen;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   560
	int numchunks;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   561
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   562
	valuelen = integer_size * num_integers;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   563
	namelen = strlen(name) + 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   564
	ASSERT(namelen >= 2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   565
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   566
	numchunks = 1 + ZAP_LEAF_ARRAY_NCHUNKS(namelen) +
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   567
	    ZAP_LEAF_ARRAY_NCHUNKS(valuelen);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   568
	if (numchunks > ZAP_LEAF_NUMCHUNKS(l))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   569
		return (E2BIG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   570
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   571
	if (cd == ZAP_MAXCD) {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   572
		/* find the lowest unused cd */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   573
		if (l->l_phys->l_hdr.lh_flags & ZLF_ENTRIES_CDSORTED) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   574
			cd = 0;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   575
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   576
			for (chunk = *LEAF_HASH_ENTPTR(l, h);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   577
			    chunk != CHAIN_END; chunk = le->le_next) {
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   578
				le = ZAP_LEAF_ENTRY(l, chunk);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   579
				if (le->le_cd > cd)
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   580
					break;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   581
				if (le->le_hash == h) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   582
					ASSERT3U(cd, ==, le->le_cd);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   583
					cd++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   584
				}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   585
			}
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   586
		} else {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   587
			/* old unsorted format; do it the O(n^2) way */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   588
			for (cd = 0; cd < ZAP_MAXCD; cd++) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   589
				for (chunk = *LEAF_HASH_ENTPTR(l, h);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   590
				    chunk != CHAIN_END; chunk = le->le_next) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   591
					le = ZAP_LEAF_ENTRY(l, chunk);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   592
					if (le->le_hash == h &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   593
					    le->le_cd == cd) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   594
						break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   595
					}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   596
				}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   597
				/* If this cd is not in use, we are good. */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   598
				if (chunk == CHAIN_END)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   599
					break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   600
			}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   601
		}
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   602
		/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   603
		 * we would run out of space in a block before we could
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   604
		 * have ZAP_MAXCD entries
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   605
		 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   606
		ASSERT3U(cd, <, ZAP_MAXCD);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   607
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   608
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   609
	if (l->l_phys->l_hdr.lh_nfree < numchunks)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   610
		return (EAGAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   611
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   612
	/* make the entry */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   613
	chunk = zap_leaf_chunk_alloc(l);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   614
	le = ZAP_LEAF_ENTRY(l, chunk);
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   615
	le->le_type = ZAP_CHUNK_ENTRY;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   616
	le->le_name_chunk = zap_leaf_array_create(l, name, 1, namelen);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   617
	le->le_name_length = namelen;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   618
	le->le_value_chunk =
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   619
	    zap_leaf_array_create(l, buf, integer_size, num_integers);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   620
	le->le_value_length = num_integers;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   621
	le->le_int_size = integer_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   622
	le->le_hash = h;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   623
	le->le_cd = cd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   624
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   625
	/* link it into the hash chain */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   626
	/* XXX if we did the search above, we could just use that */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   627
	chunkp = zap_leaf_rehash_entry(l, chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   628
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   629
	l->l_phys->l_hdr.lh_nentries++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   630
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   631
	zeh->zeh_leaf = l;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   632
	zeh->zeh_num_integers = num_integers;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   633
	zeh->zeh_integer_size = le->le_int_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   634
	zeh->zeh_cd = le->le_cd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   635
	zeh->zeh_hash = le->le_hash;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   636
	zeh->zeh_chunkp = chunkp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   637
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   638
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   639
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   640
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   641
/*
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   642
 * Determine if there is another entry with the same normalized form.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   643
 * For performance purposes, either zn or name must be provided (the
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   644
 * other can be NULL).  Note, there usually won't be any hash
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   645
 * conflicts, in which case we don't need the concatenated/normalized
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   646
 * form of the name.  But all callers have one of these on hand anyway,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   647
 * so might as well take advantage.  A cleaner but slower interface
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   648
 * would accept neither argument, and compute the normalized name as
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   649
 * needed (using zap_name_alloc(zap_entry_read_name(zeh))).
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   650
 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   651
boolean_t
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   652
zap_entry_normalization_conflict(zap_entry_handle_t *zeh, zap_name_t *zn,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   653
    const char *name, zap_t *zap)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   654
{
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   655
	uint64_t chunk;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   656
	struct zap_leaf_entry *le;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   657
	boolean_t allocdzn = B_FALSE;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   658
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   659
	if (zap->zap_normflags == 0)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   660
		return (B_FALSE);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   661
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   662
	for (chunk = *LEAF_HASH_ENTPTR(zeh->zeh_leaf, zeh->zeh_hash);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   663
	    chunk != CHAIN_END; chunk = le->le_next) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   664
		le = ZAP_LEAF_ENTRY(zeh->zeh_leaf, chunk);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   665
		if (le->le_hash != zeh->zeh_hash)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   666
			continue;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   667
		if (le->le_cd == zeh->zeh_cd)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   668
			continue;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   669
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   670
		if (zn == NULL) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   671
			zn = zap_name_alloc(zap, name, MT_FIRST);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   672
			allocdzn = B_TRUE;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   673
		}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   674
		if (zap_leaf_array_match(zeh->zeh_leaf, zn,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   675
		    le->le_name_chunk, le->le_name_length)) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   676
			if (allocdzn)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   677
				zap_name_free(zn);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   678
			return (B_TRUE);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   679
		}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   680
	}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   681
	if (allocdzn)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   682
		zap_name_free(zn);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   683
	return (B_FALSE);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   684
}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   685
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   686
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   687
 * Routines for transferring entries between leafs.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   688
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   689
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   690
static uint16_t *
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   691
zap_leaf_rehash_entry(zap_leaf_t *l, uint16_t entry)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   692
{
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   693
	struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, entry);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   694
	struct zap_leaf_entry *le2;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   695
	uint16_t *chunkp;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   696
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   697
	/*
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   698
	 * keep the entry chain sorted by cd
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   699
	 * NB: this will not cause problems for unsorted leafs, though
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   700
	 * it is unnecessary there.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   701
	 */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   702
	for (chunkp = LEAF_HASH_ENTPTR(l, le->le_hash);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   703
	    *chunkp != CHAIN_END; chunkp = &le2->le_next) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   704
		le2 = ZAP_LEAF_ENTRY(l, *chunkp);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   705
		if (le2->le_cd > le->le_cd)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   706
			break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   707
	}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   708
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   709
	le->le_next = *chunkp;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   710
	*chunkp = entry;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   711
	return (chunkp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   712
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   713
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   714
static uint16_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   715
zap_leaf_transfer_array(zap_leaf_t *l, uint16_t chunk, zap_leaf_t *nl)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   716
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   717
	uint16_t new_chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   718
	uint16_t *nchunkp = &new_chunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   719
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   720
	while (chunk != CHAIN_END) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   721
		uint16_t nchunk = zap_leaf_chunk_alloc(nl);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   722
		struct zap_leaf_array *nla =
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   723
		    &ZAP_LEAF_CHUNK(nl, nchunk).l_array;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   724
		struct zap_leaf_array *la =
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   725
		    &ZAP_LEAF_CHUNK(l, chunk).l_array;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   726
		int nextchunk = la->la_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   727
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   728
		ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(l));
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   729
		ASSERT3U(nchunk, <, ZAP_LEAF_NUMCHUNKS(l));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   730
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   731
		*nla = *la; /* structure assignment */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   732
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   733
		zap_leaf_chunk_free(l, chunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   734
		chunk = nextchunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   735
		*nchunkp = nchunk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   736
		nchunkp = &nla->la_next;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   737
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   738
	*nchunkp = CHAIN_END;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   739
	return (new_chunk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   740
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   741
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   742
static void
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   743
zap_leaf_transfer_entry(zap_leaf_t *l, int entry, zap_leaf_t *nl)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   744
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   745
	struct zap_leaf_entry *le, *nle;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   746
	uint16_t chunk;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   747
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   748
	le = ZAP_LEAF_ENTRY(l, entry);
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   749
	ASSERT3U(le->le_type, ==, ZAP_CHUNK_ENTRY);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   750
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   751
	chunk = zap_leaf_chunk_alloc(nl);
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   752
	nle = ZAP_LEAF_ENTRY(nl, chunk);
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   753
	*nle = *le; /* structure assignment */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   754
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   755
	(void) zap_leaf_rehash_entry(nl, chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   756
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   757
	nle->le_name_chunk = zap_leaf_transfer_array(l, le->le_name_chunk, nl);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   758
	nle->le_value_chunk =
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   759
	    zap_leaf_transfer_array(l, le->le_value_chunk, nl);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   760
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   761
	zap_leaf_chunk_free(l, entry);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   762
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   763
	l->l_phys->l_hdr.lh_nentries--;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   764
	nl->l_phys->l_hdr.lh_nentries++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   765
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   766
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   767
/*
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   768
 * Transfer the entries whose hash prefix ends in 1 to the new leaf.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   769
 */
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   770
void
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
   771
zap_leaf_split(zap_leaf_t *l, zap_leaf_t *nl, boolean_t sort)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   772
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   773
	int i;
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   774
	int bit = 64 - 1 - l->l_phys->l_hdr.lh_prefix_len;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   775
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   776
	/* set new prefix and prefix_len */
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   777
	l->l_phys->l_hdr.lh_prefix <<= 1;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   778
	l->l_phys->l_hdr.lh_prefix_len++;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   779
	nl->l_phys->l_hdr.lh_prefix = l->l_phys->l_hdr.lh_prefix | 1;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   780
	nl->l_phys->l_hdr.lh_prefix_len = l->l_phys->l_hdr.lh_prefix_len;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   781
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   782
	/* break existing hash chains */
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   783
	zap_memset(l->l_phys->l_hash, CHAIN_END, 2*ZAP_LEAF_HASH_NUMENTRIES(l));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   784
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
   785
	if (sort)
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   786
		l->l_phys->l_hdr.lh_flags |= ZLF_ENTRIES_CDSORTED;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   787
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   788
	/*
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   789
	 * Transfer entries whose hash bit 'bit' is set to nl; rehash
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   790
	 * the remaining entries
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   791
	 *
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   792
	 * NB: We could find entries via the hashtable instead. That
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   793
	 * would be O(hashents+numents) rather than O(numblks+numents),
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   794
	 * but this accesses memory more sequentially, and when we're
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   795
	 * called, the block is usually pretty full.
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   796
	 */
1491
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   797
	for (i = 0; i < ZAP_LEAF_NUMCHUNKS(l); i++) {
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   798
		struct zap_leaf_entry *le = ZAP_LEAF_ENTRY(l, i);
bdcb30e07e7d 6389368 fat zap should use 16k blocks (with backwards compatability)
ahrens
parents: 899
diff changeset
   799
		if (le->le_type != ZAP_CHUNK_ENTRY)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   800
			continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   801
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   802
		if (le->le_hash & (1ULL << bit))
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   803
			zap_leaf_transfer_entry(l, i, nl);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   804
		else
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 3052
diff changeset
   805
			(void) zap_leaf_rehash_entry(l, i);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   806
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   807
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   808
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   809
void
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   810
zap_leaf_stats(zap_t *zap, zap_leaf_t *l, zap_stats_t *zs)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   811
{
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   812
	int i, n;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   813
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   814
	n = zap->zap_f.zap_phys->zap_ptrtbl.zt_shift -
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   815
	    l->l_phys->l_hdr.lh_prefix_len;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   816
	n = MIN(n, ZAP_HISTOGRAM_SIZE-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   817
	zs->zs_leafs_with_2n_pointers[n]++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   818
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   819
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   820
	n = l->l_phys->l_hdr.lh_nentries/5;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   821
	n = MIN(n, ZAP_HISTOGRAM_SIZE-1);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   822
	zs->zs_blocks_with_n5_entries[n]++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   823
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   824
	n = ((1<<FZAP_BLOCK_SHIFT(zap)) -
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   825
	    l->l_phys->l_hdr.lh_nfree * (ZAP_LEAF_ARRAY_BYTES+1))*10 /
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   826
	    (1<<FZAP_BLOCK_SHIFT(zap));
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   827
	n = MIN(n, ZAP_HISTOGRAM_SIZE-1);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   828
	zs->zs_blocks_n_tenths_full[n]++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   829
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   830
	for (i = 0; i < ZAP_LEAF_HASH_NUMENTRIES(l); i++) {
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   831
		int nentries = 0;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   832
		int chunk = l->l_phys->l_hash[i];
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   833
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   834
		while (chunk != CHAIN_END) {
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   835
			struct zap_leaf_entry *le =
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   836
			    ZAP_LEAF_ENTRY(l, chunk);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   837
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   838
			n = 1 + ZAP_LEAF_ARRAY_NCHUNKS(le->le_name_length) +
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   839
			    ZAP_LEAF_ARRAY_NCHUNKS(le->le_value_length *
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
   840
			    le->le_int_size);
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   841
			n = MIN(n, ZAP_HISTOGRAM_SIZE-1);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   842
			zs->zs_entries_using_n_chunks[n]++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   843
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   844
			chunk = le->le_next;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   845
			nentries++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   846
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   847
1578
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   848
		n = nentries;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   849
		n = MIN(n, ZAP_HISTOGRAM_SIZE-1);
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   850
		zs->zs_buckets_with_n_entries[n]++;
1fd8ab638fc0 6389897 remove zap leaf chaining code as it is never used
ahrens
parents: 1491
diff changeset
   851
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   852
}