Jonathan Calmels

Results 16 comments of Jonathan Calmels

This isn't used in plog itself but this is useful for the application developer. For example if one wants to save Records in standard containers (say a `std::vector`) to defer...

I was more thinking of something like this: ```bash sudo unshare -m --propagation=unchanged WORKDIR=$(mktemp -d --tmpdir workdir.XXXXX) mount --bind $WORKDIR $WORKDIR mount --make-private $WORKDIR # At this point we may...

Based on your PR: https://github.com/3XX0/lxc/commit/ef541edfbcda6ca4ae30a9daee8d66cda44e89e8 Obviously hacky but you get the idea. I didn't handle the `lxc_chroot` code path and I'm not sure what the `if (!rootfs->path) ... MS_REC |...

@brauner what do you suggest we do? :) > Well, when you share the rootfs with the host you really don't want to propagate your mount and umounts. :) Shouldn't...

You're right, my bad I trusted the [man page](https://github.com/mkerrisk/man-pages/blob/master/man7/symlink.7#L137). I thought you could use `NULL` or `AT_EMPTY_PATH` but looking at the kernel source there is no way. Should this be...

Yeah that's a good idea, it doesn't have to be fatal a warning could be enough

Short answer, it is not supported for now. However, we are looking at it for the 2.0 timeframe but there are a lot of corner cases that need to be...

With 2.0 it should work as long as you run the MPS server on the host and use `--ipc=host`. We're working torward a better integration though, so I'll keep this...

I've looked into it but `Span` are embedded in a lot of places. Not exactly sure how to go about it since I'm not really that familiar with the code...

Yeah, so regarding the extra dependencies and compilation overhead, this is going to require significant efforts. One workaround could be writing a dummy module that implements `Span` and does nothing,...