From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202412 header.b=Zb/+YkGQ; dkim-atps=neutral Received: from mail.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id 856A25A061C for ; Fri, 20 Dec 2024 09:58:33 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202412; t=1734685098; bh=bI/fmeZ/9eFMi4qxYUNQyIBsGAqhU/XGs3msoMOATCk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Zb/+YkGQmr9PbbYttqnI8Ftv9YunRtSwmIYUYIzqtOgEW/2dQUPTIWZl7hS/FQuPW zsBFjlgoxFhxxk9zpvi7eIWcilAPmSq2VN/skt0RBr7mJi0Xvojp/61Zuk8YVpZalx V17wJgq9GqdM1xqfNl6RzQmfAAlzSU3+SdoDNawnRtV29SxjQ5wGgk8EYMlUBlUx76 X9P2Ik2xFjihccvuazoB3EtlcJwnzPDsxsyDufL/ds7eP3GZc3URJcWFENIqICsg6U 8YHuHAqrnrD7XM1rnFxjMq1eiZGdtaJhkktLRICmCl1ID63F3WbWDMty21a0A8KAYZ /fvY42cw3FEoA== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4YF1Xp0lLBz4x7H; Fri, 20 Dec 2024 19:58:18 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH v2 03/12] make passt dumpable Date: Fri, 20 Dec 2024 19:35:26 +1100 Message-ID: <20241220083535.1372523-4-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241220083535.1372523-1-david@gibson.dropbear.id.au> References: <20241220083535.1372523-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: KWDRPAIMFVUFGWC6PDHGVIMOWZMJD2BP X-Message-ID-Hash: KWDRPAIMFVUFGWC6PDHGVIMOWZMJD2BP X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: --- isolation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isolation.c b/isolation.c index c944fb35..df58bb87 100644 --- a/isolation.c +++ b/isolation.c @@ -377,7 +377,7 @@ void isolate_postfork(const struct ctx *c) { struct sock_fprog prog; - prctl(PR_SET_DUMPABLE, 0); +// prctl(PR_SET_DUMPABLE, 0); switch (c->mode) { case MODE_PASST: -- 2.47.1