Aleksa Sarai

Results 791 comments of Aleksa Sarai

What parts of an image would you like to be put in the tarball? If you want to extract all of the layers and flatten them into a tarball you...

Yeah, the problem is that emulating everything that goes into how files would be theoretically unpacked without an actual filesystem is quite complicated -- just using a tmpfs would lead...

It should be noted that this warning appears even if you explicitly set `--crate-type=cdylib` with `cargo rustc` as suggested by https://github.com/rust-lang/rust/issues/91632: ``` cargo rustc --features=capi --crate-type=staticlib warning: [email protected]+dev: cargo:rustc-cdylib-link-arg was...

Ah, umoci doesn't have zstd support yet. Unfortunately this is more complicated to solve than you might expect -- zstd support was added in image-spec v1.1 but umoci is still...

I'll try to get it done this week (both zstd support and a release).

Yeah, https://github.com/opencontainers/umoci/pull/562 implements full support for zstd. I'm doing some other cleanups before the release at the moment. I'll try to get it done soon.

Still working on it, [there were some large outstanding bugs that took longer to resolve than I expected](https://github.com/opencontainers/umoci/pull/572). That's all done, we need to do some testing with umoci's main...

https://github.com/opencontainers/umoci/releases/tag/v0.5.0 has been released which should resolve this issue.

`ESERVERFAULT` (errno 526, a kernel-internal errno from the NFSv3 protocol) semantically makes sense (the error description is `An untranslatable error occurred`) and is an errno userspace should never see returned...

We can also switch away from using `Mutex` to one of these lockless alternatives: 1. https://github.com/hawkw/sharded-slab (has the benefit of having generation numbers, which reduces the risk of a user...