mirror of
https://github.com/NixOS/nix.git
synced 2025-11-23 18:59:35 +01:00
Revert "Restore parent mount namespace before executing a child process"
This reverts commita0ef21262f. This doesn't work in 'nix run' and nix-shell because setns() fails in multithreaded programs, and Boehm GC mark threads are uncancellable. Fixes #2646. (cherry picked from commit01d07b1e92)
This commit is contained in:
parent
03aaabce24
commit
6609f75a70
9 changed files with 4 additions and 52 deletions
|
|
@ -1,5 +1,4 @@
|
|||
#include "ssh.hh"
|
||||
#include "affinity.hh"
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
|
@ -35,9 +34,7 @@ std::unique_ptr<SSHMaster::Connection> SSHMaster::startCommand(const std::string
|
|||
|
||||
auto conn = std::make_unique<Connection>();
|
||||
conn->sshPid = startProcess([&]() {
|
||||
restoreAffinity();
|
||||
restoreSignals();
|
||||
restoreMountNamespace();
|
||||
|
||||
close(in.writeSide.get());
|
||||
close(out.readSide.get());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue