Fix comment on calculating blkid
Fix comment on calculating blkid at level n within dnode's blkptrs. "(2^(level*(indblkshift - SPA_BLKPTRSHIFT)" is part of divisor in this division. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@osnexus.com> Closes #7768
This commit is contained in:
parent
64e96969a8
commit
fe8a7982ca
|
@ -1152,7 +1152,7 @@ dbuf_whichblock(const dnode_t *dn, const int64_t level, const uint64_t offset)
|
||||||
* 2^(level*(indblkshift - SPA_BLKPTRSHIFT)).
|
* 2^(level*(indblkshift - SPA_BLKPTRSHIFT)).
|
||||||
*
|
*
|
||||||
* Thus, the level n blkid is: offset /
|
* Thus, the level n blkid is: offset /
|
||||||
* ((2^datablkshift)*(2^(level*(indblkshift - SPA_BLKPTRSHIFT)))
|
* ((2^datablkshift)*(2^(level*(indblkshift-SPA_BLKPTRSHIFT))))
|
||||||
* = offset / 2^(datablkshift + level *
|
* = offset / 2^(datablkshift + level *
|
||||||
* (indblkshift - SPA_BLKPTRSHIFT))
|
* (indblkshift - SPA_BLKPTRSHIFT))
|
||||||
* = offset >> (datablkshift + level *
|
* = offset >> (datablkshift + level *
|
||||||
|
|
Loading…
Reference in New Issue