diff options
author | timh <none@none> | 2008-04-27 10:20:38 -0700 |
---|---|---|
committer | timh <none@none> | 2008-04-27 10:20:38 -0700 |
commit | ab04eb8ef60d9dc9614d6cccffc474f24ca1d162 (patch) | |
tree | 361f353d229106ed93d3fa71ef005be8c7ebbc72 /usr/src/uts/common/fs/zfs/zap_micro.c | |
parent | dc5415b5ee3585f3fb9e8f0a33ea3f5926e13999 (diff) | |
download | illumos-gate-ab04eb8ef60d9dc9614d6cccffc474f24ca1d162.tar.gz |
6654808 FIGNORECASE lookups in a zfs xattr dir don't provide 'realname' data
6666748 System panic occurred when attempting to view .zfs snapshot directory from CIFS client.
6693201 libzpool needlessly defines u8_textprep_str()
6694236 case-insensitive zfs file system doesn't work when created on sparc and then imported on x86
Diffstat (limited to 'usr/src/uts/common/fs/zfs/zap_micro.c')
-rw-r--r-- | usr/src/uts/common/fs/zfs/zap_micro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/src/uts/common/fs/zfs/zap_micro.c b/usr/src/uts/common/fs/zfs/zap_micro.c index 31a297d6b3..abba42775b 100644 --- a/usr/src/uts/common/fs/zfs/zap_micro.c +++ b/usr/src/uts/common/fs/zfs/zap_micro.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -139,6 +139,7 @@ mzap_byteswap(mzap_phys_t *buf, size_t size) int i, max; buf->mz_block_type = BSWAP_64(buf->mz_block_type); buf->mz_salt = BSWAP_64(buf->mz_salt); + buf->mz_normflags = BSWAP_64(buf->mz_normflags); max = (size / MZAP_ENT_LEN) - 1; for (i = 0; i < max; i++) { buf->mz_chunk[i].mze_value = |