Results 92 comments of Matthew Ahrens

#3641 was actually fixed before 0.7.0, so it can't be the same as that. @seonwoolee can you share some more data about these filesystems? E.g. `zfs get all`, `zpool list...

See also https://github.com/zfsonlinux/zfs/issues/8462, which may be the cause of this, depending on how the data was created.

The intent of `compressratio` is to express the benefit received by enabling compression. This is different than `used / logicalused` - if you prefer that metric you may use it...

This issue was raised at the September 2021 OpenZFS Leadership meeting as a potentially serious bug that has fallen through the cracks. It may relate to https://www.illumos.org/issues/14003#note-1

I think that this is a use case covered by "Block Reference Tracking", or BRT, which @pjd is working on. For details please see the several times this has been...

> I'd like to be able to get access to zb_blkid and zb_level in the zbookmark_phys associated with this error `zpool events -v` should also have this > Can I...

@jstenback I don't see how the problem you're describing is related to this issue. @aerusso is experiencing unexpected checksum errors, and you have a null pointer dereference. Unless I'm missing...

@cyphar To be integrated, we'll need to change this to add a new itx type (enum value) and an associated feature flag, (as mentioned in the 2 above comments) similar...

Delphix's plans for open-sourcing this have been put on hold. I'll close this issue for now.

@behlendorf your macro can be implemented in terms of DMU_OT_IS_METADATA: ```c #define DMU_OT_IS_CRITICAL(ot) \ (DMU_OT_IS_METADATA(ot) && \ (ot) != DMU_OT_DNODE && \ (ot) != DMU_OT_DIRECTORY_CONTENTS && \ (ot) != DMU_OT_SA)...