Andrew Wock
Andrew Wock
Good point- we are planning on running criu as root, so I shouldn't have any trouble setting up and tearing down some namespaces. And should I run into any other...
In my own experimentation I added an option which prevents criu restore from deleting link-remaps when specified. This has worked for my use case, though it's possible that there's already...
I think one major issue with changing pids and tids is that these are often explicitly held as program state and tracking that down and changing it would be a...
Perhaps a more appropriate API for this situation would be `NonNull::nonnull_or_dangling(ptr: *mut T) ->NonNull` (probably not the best name) where you either get a validated non-null pointer or an aligned...
One more thought. Would it make sense to change most of the APIs listed above in MaybeUninit to return RefInit rather than having this be an option on the side?...
In my use case, we have a process which needs to use --link-remap in order to be C/Red. This checkpoint image also may need to be restored from multiple times,...
> One possible downside of --keep-link-remaps is that if you leave "remap/path/file.cr_link" on the filesystem you would likely fail dumping the same process again as link creation would fail with...
I'll also throw my support behind this on the condition that it is a slice split function rather than some sort of iterator related function. I've written a function similar...
Hello, I recently ran into this issue on linux. So, on linux, PTRACE_POKEDATA takes a `void *` as the input. However, this `void *` is treated as a `long` for...