Alan Somers
Alan Somers
@sbellon I'm not sure if the `avl_find` panic is related or not. But now that you can list snapshots, can you check the .config directory within them? Or, if you...
@sbellon the `` should be a path relative to the dataset's mountpoint. Each each snapshot is technically a different dataset. So in this case, you should do: ``` $ sudo...
That error is ENXIO. Maybe zdb isn't working due to the corruption. Could you try running it on a file that you know to be perfectly accessible?
You could try using the -U argument if your zpool.cache file is in a non-default location. I can't reproduce the ENXIO errno that way, but maybe the error code is...
> I haven't done anything special to my pool. In fact I don't even know where my `zpool.cache` would be located, so I'm assuming everything is at default. Are you...
PR #17418 fixes the root cause of this issue. That is, it prevents the corruption in the first place. But it still doesn't help to repair a corrupt block.
This is probably a result of #606 . And though it's annoying, the new behavior is probably the correct behavior. I'm sorry about the regression. Did you try following the...
It isn't UB because the data is half-uninitialized. After all the rust compiler doesn't know how much data is initialized by the OS, so it must assume that all is....
If you look at the commit that introduced the `&mut Vec` argument, 2643afc22f0d76c01b28f12da6195047b2db35de, you'll see that it _did_ use `cmsg_buffer` as a Vec, to set its len. It was a...
This would certainly be a handy feature to have. Basically, we need `trait_variant` to expand before `automock`. In your third example, do `Foo` and `MockFoo` get `:Send` bounds? If both...