Cody Schafer
Cody Schafer
I expect much of the reasoning for this could be based on https://github.com/rust-lang/rfcs/pull/1270 (`#[deprecated] for Everyone`)
https://github.com/openzfs/zfs/issues/13431 describes an issue that _might_ be the same or related (it involves _likely_ newer versions of cryptsetup, which will use luks2). It shows similar zio errors. https://github.com/openzfs/zfs/issues/13362 also involves...
> Can you share what `zdb -C` thinks of the situation, and what `z4.2`'s settings are? Here's the `zdb -C tank` (`tank` is the pool where the replace is occurring)....
From the `zdb -C` output in the previous comment, one can see that some luks2 devices are in the pool (and have not been observed to emit io errors). Taking...
> edit 2: are you seeing any errors not from ZFS in your syslog from the disk itself? Watching `dmesg -w | grep -v audit:` (to remove all the noisy...
PR with possible fix from robn: https://github.com/openzfs/zfs/pull/15588 (linking for my reference)
@ivmarkov ya, sorry about not getting back to you on this. I agree about the CStr bit (it should be removed), and seeing if `IntoIterator` might work here sounds like...
I pushed a change removing the `CStr` bits which seems to be fine. I looked at using `IntoIterator`, but I think we'll have some trouble with that: - `IntoIterator` doesn't...
A pr where I previously got bit by this: https://github.com/rust-lang/cargo/issues/914 (warning: really old). I'd like to re-iterate that it might make sense to emit a warning here, but it is...
Ya, I took another look, and here's what is happening: - When espup goes to check the current toolchain, it tries to execute the binaries. - In my test system,...