diff options
author | Matthew Ahrens <mahrens@delphix.com> | 2014-09-10 10:19:51 -0800 |
---|---|---|
committer | Christopher Siden <chris@delphix.com> | 2014-09-10 11:19:51 -0700 |
commit | e94f268a6264bf027b3bc556fb4cceb84f7323c5 (patch) | |
tree | dc2eef08b1eeac3921784842acc28438d6355679 /usr/src/grub | |
parent | f985abb4a2473d3c04b086f7c9fab177e368ffef (diff) | |
download | illumos-gate-e94f268a6264bf027b3bc556fb4cceb84f7323c5.tar.gz |
5141 zfs minimum indirect block size is 4K
Reviewed by: Christopher Siden <christopher.siden@delphix.com>
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: Richard Elling <richard.elling@gmail.com>
Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src/grub')
-rw-r--r-- | usr/src/grub/grub-0.97/stage2/zfs-include/dnode.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/grub/grub-0.97/stage2/zfs-include/dnode.h b/usr/src/grub/grub-0.97/stage2/zfs-include/dnode.h index 5f6e4bbe30..f2f33d5a80 100644 --- a/usr/src/grub/grub-0.97/stage2/zfs-include/dnode.h +++ b/usr/src/grub/grub-0.97/stage2/zfs-include/dnode.h @@ -20,6 +20,9 @@ * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ +/* + * Copyright (c) 2014 by Delphix. All rights reserved. + */ #ifndef _SYS_DNODE_H #define _SYS_DNODE_H @@ -28,7 +31,7 @@ * Fixed constants. */ #define DNODE_SHIFT 9 /* 512 bytes */ -#define DN_MIN_INDBLKSHIFT 10 /* 1k */ +#define DN_MIN_INDBLKSHIFT 12 /* 4k */ #define DN_MAX_INDBLKSHIFT 14 /* 16k */ #define DNODE_BLOCK_SHIFT 14 /* 16k */ #define DNODE_CORE_SIZE 64 /* 64 bytes for dnode sans blkptrs */ |