Owen Walpole

Results 71 comments of Owen Walpole

What modifications are you proposing?

~~I've had this happen once so far.~~ Scratch that, I think it was just a crash...

Unfortunately looks like there's another compatibility issue: ``` error: failed to parse lock file at: /home/me/foo/Cargo.lock Caused by: lock file version 4 requires `-Znext-lockfile-bump` error: could not bundle the code...

This doesn't happen without bypass? What method are you using, in detail?

@BurntSushi Updated this to just add the doc aliases according to https://github.com/BurntSushi/bstr/issues/208#issuecomment-2868320939

> This should do the trick for testing. > > ```diff > diff --git a/module/zfs/zvol.c b/module/zfs/zvol.c > index 57d3646..40098f9 100644 > --- a/module/zfs/zvol.c > +++ b/module/zfs/zvol.c > @@ -1361,6 +1361,7...

> @owenthewizard - For ZFS on Linux, it should be like this. I haven’t tested it myself, though. Thank you iX!

For anyone on 2.2.5: ```diff diff --git a/module/os/linux/zfs/zvol_os.c b/module/os/linux/zfs/zvol_os.c index 41a9b1c53a2..19faaf7139b 100644 --- a/module/os/linux/zfs/zvol_os.c +++ b/module/os/linux/zfs/zvol_os.c @@ -1476,6 +1476,8 @@ zvol_os_create_minor(const char *name) blk_queue_physical_block_size(zv->zv_zso->zvo_queue, zv->zv_volblocksize); + blk_queue_logical_block_size(zv->zv_zso->zvo_queue, + zv->zv_volblocksize); blk_queue_io_opt(zv->zv_zso->zvo_queue,...

Iirc when I worked on this way back, XCB could capture the entire screen (all monitors) at once, without needing to allocate memory to stitch them together manually, unless it...