From unknown Sun Jul 27 00:54:42 2025 X-Loop: help-debbugs@gnu.org Subject: bug#39712: Partitions produced by the installer not properly unmounted? Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: m.othacehe@gmail.com, bug-guix@gnu.org Resent-Date: Fri, 21 Feb 2020 11:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39712 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 39712@debbugs.gnu.org Cc: Mathieu Othacehe X-Debbugs-Original-To: bug-guix@gnu.org X-Debbugs-Original-Xcc: Mathieu Othacehe Received: via spool by submit@debbugs.gnu.org id=B.15822836084069 (code B ref -1); Fri, 21 Feb 2020 11:14:02 +0000 Received: (at submit) by debbugs.gnu.org; 21 Feb 2020 11:13:28 +0000 Received: from localhost ([127.0.0.1]:46447 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j56FM-00013Z-Gd for submit@debbugs.gnu.org; Fri, 21 Feb 2020 06:13:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:40234) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j56FK-00013P-BE for submit@debbugs.gnu.org; Fri, 21 Feb 2020 06:13:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33295) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j56FJ-00071I-8F for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:26 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_40 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51326) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j56FJ-0002ou-4q for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:25 -0500 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=42032 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j56FI-0000z1-FL for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:24 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 3 =?UTF-8?Q?Vent=C3=B4se?= an 228 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 21 Feb 2020 12:13:22 +0100 Message-ID: <87lfownqgd.fsf@inria.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Mathieu, I noticed that partitions created by the installer appear to not be properly unmounted, at least when running in the context of (gnu tests install): --8<---------------cut here---------------start------------->8--- ludo@ribbon ~$ qemu-img convert -O raw /gnu/store/2d3s2nbb3j2c1hmkz52xds9rf= bk4q3x3-installation /tmp/broken.raw ludo@ribbon ~$ sudo losetup -P /dev/loop0 /tmp/broken.raw=20 ludo@ribbon ~$ sudo dmesg |tail -3 [10703.869334] kvm [8936]: vcpu0, guest rIP: 0xffffffffac073dad disabled pe= rfctr wrmsr: 0xc2 data 0xffff [10742.475623] kvm [8957]: vcpu0, guest rIP: 0xffffffffaf073dad disabled pe= rfctr wrmsr: 0xc2 data 0xffff [11774.318468] loop0: p1 p2 p3 ludo@ribbon ~$ sudo fdisk -l /dev/loop0 Disk /dev/loop0: 2.15 GiB, 2306867200 bytes, 4505600 sectors Units: sectors of 1 * 512 =3D 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 213AE251-0E91-499E-9184-0CCEC6DA64C7 Dispositiu Start Final Sectors Size Tipus /dev/loop0p1 2048 6143 4096 2M BIOS boot /dev/loop0p2 6144 231423 225280 110M Intercanvi Linux /dev/loop0p3 231424 4503551 4272128 2G Linux filesystem ludo@ribbon ~$ sudo mount /dev/loop0p3 /mnt/usb ludo@ribbon ~$ sudo dmesg |tail -3 [11774.318468] loop0: p1 p2 p3 [11803.975300] EXT4-fs (loop0p3): recovery complete [11803.977277] EXT4-fs (loop0p3): mounted filesystem with ordered data mode= . Opts: (null) --8<---------------cut here---------------end--------------->8--- However, I=E2=80=99ve added logging in =E2=80=98umount-user-partitions=E2= =80=99 in (gnu installer parted), and the installer does seem to unmount partitions correctly. Could it be a side effect of the MS_MOVE dance in 1d02052067e04d7dd8fd1ec17557ca02a30b9bcf? (I=E2=80=99m observing this on =E2=80=98wip-installer-tests=E2=80=99, rough= ly based on 117d8467be232bcc1b0136d04f362d95d975ca95.) Thanks, Ludo=E2=80=99. From unknown Sun Jul 27 00:54:42 2025 X-Loop: help-debbugs@gnu.org Subject: bug#39712: Partitions produced by the installer not properly unmounted? Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Fri, 21 Feb 2020 15:28:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39712 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 39712@debbugs.gnu.org Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= Received: via spool by 39712-submit@debbugs.gnu.org id=B39712.158229884321048 (code B ref 39712); Fri, 21 Feb 2020 15:28:01 +0000 Received: (at 39712) by debbugs.gnu.org; 21 Feb 2020 15:27:23 +0000 Received: from localhost ([127.0.0.1]:47826 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5AD5-0005TO-5g for submit@debbugs.gnu.org; Fri, 21 Feb 2020 10:27:23 -0500 Received: from mail-wr1-f48.google.com ([209.85.221.48]:39530) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5AD4-0005TB-Bl for 39712@debbugs.gnu.org; Fri, 21 Feb 2020 10:27:22 -0500 Received: by mail-wr1-f48.google.com with SMTP id y11so2506337wrt.6 for <39712@debbugs.gnu.org>; Fri, 21 Feb 2020 07:27:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=references:user-agent:from:to:cc:subject:in-reply-to:date :message-id:mime-version; bh=SUtaA7nbCWnx5kMppQrwm5mvOBSvnVZjJX36Do3Fq6E=; b=oUTXK75bsYRYoXtZYdJ0phwtFEXiTp3gNAZgDreXveFUr0zv8541rDCffRTf1cPzjY aSZRyLoNpsMIIv9nZ1hDGq9lgNfA3p3J8nJb3GnttWElkzW1vo/Qkz7ME7PbLx/VYYcX r8c1A6Ht8dZWabxOy+OlJL0vQ2iglenvc17mcsV/FA6FVU7IXFku586hYwQrwul5Khn7 QZbYjms1h8fcLYONczurpaU9R9deV5w2fYlFYvbNlxk/yc8kvu2qhs+B4YEAysMAh+Fz RdQFHb50n9J6dKW5Fc9dryv/zv3mjDOld9yjID1QfWpWJHxYRK8dyAbkewIaNpOdbBbr OGfA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:references:user-agent:from:to:cc:subject :in-reply-to:date:message-id:mime-version; bh=SUtaA7nbCWnx5kMppQrwm5mvOBSvnVZjJX36Do3Fq6E=; b=ehgSYkX3N4cAssZOb8biUjmUgDeB3tK/fxx+dN0L7xsH6GmHskIwqP8cg4638V8uiS Ne8U0GqXBqHwk5B0FhoGZ+ggiACvzFTmPsyd0soRHjRIRoK/vAQdXwvEI/YQ93ymtIFG I6OkKPcnYNSDdVX1tkKPAN3EEpVY3dK4o7/eGCAq1ntuXx9hah25D8A/AF1KdYcbgbbC +WGMCCv33IFIHr1n0mFtQ71n6xkgpS+sWNXcrHGtAMcClviXpditPVAlLOW842BTPRSP XvvVx9P/PEfBWCkBtzdlcglMuE8JIWyzl4AjEo3J8Y8muQGoog5sI+ajPxOAvOcVbreg 9BDA== X-Gm-Message-State: APjAAAVWkPon/1dmKKOOTZ6iLUUd8hXFLpyOvn8/stjpczsFNCLiDnTy TIqPEA4SmSH1mgS/AWIR6mY= X-Google-Smtp-Source: APXvYqwdsvTSZGUF+/eimm6ywTyN6UXZemoHg9B7OJuwlSso9g3Qe6/GSESL9J9fNGgBgTczc2TeeQ== X-Received: by 2002:a5d:6452:: with SMTP id d18mr48256271wrw.303.1582298836377; Fri, 21 Feb 2020 07:27:16 -0800 (PST) Received: from meru (lfbn-ann-1-292-23.w86-200.abo.wanadoo.fr. [86.200.245.23]) by smtp.gmail.com with ESMTPSA id j5sm4367615wrb.33.2020.02.21.07.27.13 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 21 Feb 2020 07:27:15 -0800 (PST) References: <87lfownqgd.fsf@inria.fr> User-agent: mu4e 1.2.0; emacs 26.3 From: Mathieu Othacehe In-reply-to: <87lfownqgd.fsf@inria.fr> Date: Fri, 21 Feb 2020 16:27:13 +0100 Message-ID: <87h7zknepa.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hey Ludo, Nice progress on that branch :) > Could it be a side effect of the MS_MOVE dance in > 1d02052067e04d7dd8fd1ec17557ca02a30b9bcf? Could be, I ran the following command on wip-installer-test branch: --8<---------------cut here---------------start------------->8--- make check-system TESTS=gui-installed-os --8<---------------cut here---------------end--------------->8--- But it appears to get stuck at this step: --8<---------------cut here---------------start------------->8--- conversation expecting pattern ((quote pause)) --8<---------------cut here---------------end--------------->8--- I'll try to investigate further later on. Thanks, Mathieu From unknown Sun Jul 27 00:54:42 2025 X-Loop: help-debbugs@gnu.org Subject: bug#39712: Partitions produced by the installer not properly unmounted? Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Fri, 21 Feb 2020 20:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39712 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Mathieu Othacehe Cc: 39712@debbugs.gnu.org Received: via spool by 39712-submit@debbugs.gnu.org id=B39712.158231781918517 (code B ref 39712); Fri, 21 Feb 2020 20:44:02 +0000 Received: (at 39712) by debbugs.gnu.org; 21 Feb 2020 20:43:39 +0000 Received: from localhost ([127.0.0.1]:48219 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5F98-0004ob-Uh for submit@debbugs.gnu.org; Fri, 21 Feb 2020 15:43:39 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39580) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5F97-0004oN-8h for 39712@debbugs.gnu.org; Fri, 21 Feb 2020 15:43:37 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40623) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j5F92-0004Pk-2y; Fri, 21 Feb 2020 15:43:32 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=40052 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j5F91-0005AU-MJ; Fri, 21 Feb 2020 15:43:31 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87lfownqgd.fsf@inria.fr> <87h7zknepa.fsf@gmail.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 3 =?UTF-8?Q?Vent=C3=B4se?= an 228 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 21 Feb 2020 21:43:30 +0100 In-Reply-To: <87h7zknepa.fsf@gmail.com> (Mathieu Othacehe's message of "Fri, 21 Feb 2020 16:27:13 +0100") Message-ID: <87d0a73c3x.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi, Mathieu Othacehe skribis: >> Could it be a side effect of the MS_MOVE dance in >> 1d02052067e04d7dd8fd1ec17557ca02a30b9bcf? > > Could be, I ran the following command on wip-installer-test branch: > > make check-system TESTS=3Dgui-installed-os > > > But it appears to get stuck at this step: > > conversation expecting pattern ((quote pause)) > > I'll try to investigate further later on. Don=E2=80=99t investigate on that branch yet though, I have quite a lot of changes that I=E2=80=99ll push soon. :-) But I think the problem should show up even with =E2=80=9Cmake check-system TESTS=3Dinstalled-os=E2=80=9D on master. Thanks, Ludo=E2=80=99. From unknown Sun Jul 27 00:54:42 2025 X-Loop: help-debbugs@gnu.org Subject: bug#39712: Partitions produced by the installer not properly unmounted? Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 22 Feb 2020 10:25:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39712 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 39712@debbugs.gnu.org Received: via spool by 39712-submit@debbugs.gnu.org id=B39712.158236707210497 (code B ref 39712); Sat, 22 Feb 2020 10:25:02 +0000 Received: (at 39712) by debbugs.gnu.org; 22 Feb 2020 10:24:32 +0000 Received: from localhost ([127.0.0.1]:48577 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5RxY-0002jF-AY for submit@debbugs.gnu.org; Sat, 22 Feb 2020 05:24:32 -0500 Received: from mail-wr1-f52.google.com ([209.85.221.52]:46771) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5RxW-0002j3-NB for 39712@debbugs.gnu.org; Sat, 22 Feb 2020 05:24:31 -0500 Received: by mail-wr1-f52.google.com with SMTP id z7so4785284wrl.13 for <39712@debbugs.gnu.org>; Sat, 22 Feb 2020 02:24:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=references:user-agent:from:to:cc:subject:in-reply-to:date :message-id:mime-version:content-transfer-encoding; bh=HC5tnObNtqdaXmE07cvPEzQ8zFmZkQAIm3/o9nZkKoY=; b=p4lNaF9Wr6fjz7MdgLHskP4sAGp12q0x+F24jZAc3DMz0CjJROse7XKiyEnfvGxBJa jUEx+DtVr7Essq6cRJFSEu4cCDetnp0QECfIpDaZzbRndldIKO6JrrTQkuQoUrmikiMF 3JGzuNhaYhvXXUVzcBCYI/Rvuhl9ZGS5ZZPKWUT0gpJINd/CPL+DbvH8/75wjWkNt7uH jJB/mukPZhELxFeXoqjzW9T2V5bXnNUhhbGFojfUh+CHeNjMRy0uOkZfBHrzF9l0KRf7 jC8lqivm3oKxcu/5fg5smo19FMA28BRDtvNbHjgjiB2j7cZMjSz4eJxU1B69tH0t+LJ5 9C6A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:references:user-agent:from:to:cc:subject :in-reply-to:date:message-id:mime-version:content-transfer-encoding; bh=HC5tnObNtqdaXmE07cvPEzQ8zFmZkQAIm3/o9nZkKoY=; b=scqzPurQxEiXTYddNkh7FJnfDVJtvOyvQepnY1aMU3FCr74HZGLgTd7zPQt1k3B8Lm lc2XttLneZn8ST2c1th+kbN6PQ7SQhtpvPZLwk37/ft3UKoXJaNuY/QS+rWWv2IX+B4t M8Qwe+84euDCSfsf4MIQrTrdRvNP3PQ+P0KsX4kENyziIiREYvLSt+13e1ZFc4LfrKzm r73cy5QUrCHudo1h3YcPCrsN5GNZkl9awolDenLmHOX55x5f36Is8pnk/SSXJ/AaRdGp 1/vPrnRaDgA0pyNW04nUITI6FEgQQTwdqn3+ymPJtfgLDu5wlm8lzzf5ZE2KzfUgqcSQ 8wLw== X-Gm-Message-State: APjAAAXl6mA5mSkFI/v/PtQqgfT2an7d8Mr0TAcN7HmJrLI/zZYImrun Ld3WegjPofx552tXk2hkbUU6UDtp X-Google-Smtp-Source: APXvYqyHVfwF2dpSiqyonz3XnixeEbmlvt5eIxCq3d+zwTtGZBcGTkxcMuZHFWCilL6Qlp9C3Y91BQ== X-Received: by 2002:a5d:5221:: with SMTP id i1mr50550091wra.44.1582367064668; Sat, 22 Feb 2020 02:24:24 -0800 (PST) Received: from cervin ([2a01:e0a:fa:a50:dcdb:3f0f:c4ff:a264]) by smtp.gmail.com with ESMTPSA id z8sm7942592wrv.74.2020.02.22.02.24.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 22 Feb 2020 02:24:24 -0800 (PST) References: <87lfownqgd.fsf@inria.fr> <87h7zknepa.fsf@gmail.com> <87d0a73c3x.fsf@gnu.org> User-agent: mu4e 1.2.0; emacs 26.3 From: Mathieu Othacehe In-reply-to: <87d0a73c3x.fsf@gnu.org> Date: Sat, 22 Feb 2020 11:24:22 +0100 Message-ID: <875zfyvs15.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hey Ludo, > But I think the problem should show up even with =E2=80=9Cmake check-syst= em > TESTS=3Dinstalled-os=E2=80=9D on master. Well this does not involve the graphical installer, so I'm not sure to understand. Anyway, testing the installer in Qemu, I can reproduce a failure where the first umount in "umount-cow-store" throws an exception (busy device), when umounting a crypted partition. That's probably what's bitting you, so to be continued! Thanks, Mathieu From unknown Sun Jul 27 00:54:42 2025 X-Loop: help-debbugs@gnu.org Subject: bug#39712: Partitions produced by the installer not properly unmounted? Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 22 Feb 2020 17:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39712 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Mathieu Othacehe Cc: 39712@debbugs.gnu.org Received: via spool by 39712-submit@debbugs.gnu.org id=B39712.15823916224046 (code B ref 39712); Sat, 22 Feb 2020 17:14:01 +0000 Received: (at 39712) by debbugs.gnu.org; 22 Feb 2020 17:13:42 +0000 Received: from localhost ([127.0.0.1]:49961 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5YLW-00013B-8J for submit@debbugs.gnu.org; Sat, 22 Feb 2020 12:13:42 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53701) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5YLU-00012x-PL for 39712@debbugs.gnu.org; Sat, 22 Feb 2020 12:13:41 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:54694) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j5YLP-0005s5-MU; Sat, 22 Feb 2020 12:13:35 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=45070 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j5YLP-00086I-53; Sat, 22 Feb 2020 12:13:35 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87lfownqgd.fsf@inria.fr> <87h7zknepa.fsf@gmail.com> <87d0a73c3x.fsf@gnu.org> <875zfyvs15.fsf@gmail.com> Date: Sat, 22 Feb 2020 18:13:33 +0100 In-Reply-To: <875zfyvs15.fsf@gmail.com> (Mathieu Othacehe's message of "Sat, 22 Feb 2020 11:24:22 +0100") Message-ID: <87blpqy282.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi, Mathieu Othacehe skribis: >> But I think the problem should show up even with =E2=80=9Cmake check-sys= tem >> TESTS=3Dinstalled-os=E2=80=9D on master. Hmm I=E2=80=99m not sure this is true. > Well this does not involve the graphical installer, so I'm not sure to > understand. > > Anyway, testing the installer in Qemu, I can reproduce a failure where > the first umount in "umount-cow-store" throws an exception (busy > device), when umounting a crypted partition. On current =E2=80=98wip-installer-test=E2=80=99 (0699b97f7df8708a000eb7bfb043c2cef6672dc3), you can run: make check-system TESTS=3Dgui-installed-os (It should succeed.) If you take the /gnu/store/=E2=80=A6-installation item produced and mount i= t as I showed before in this thread, you should see a =E2=80=9Crecovery complete= =E2=80=9D message from the kernel. Note that LUKS is not involved at all in this case, and =E2=80=98umount=E2= =80=99 doesn=E2=80=99t throw. Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 24 16:27:23 2020 Received: (at control) by debbugs.gnu.org; 24 Feb 2020 21:27:24 +0000 Received: from localhost ([127.0.0.1]:54208 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j6LG7-0005sS-LP for submit@debbugs.gnu.org; Mon, 24 Feb 2020 16:27:23 -0500 Received: from eggs.gnu.org ([209.51.188.92]:42942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j6LG6-0005sD-4V for control@debbugs.gnu.org; Mon, 24 Feb 2020 16:27:22 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:34954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j6LG1-00017E-0L for control@debbugs.gnu.org; Mon, 24 Feb 2020 16:27:17 -0500 Received: from [80.215.212.253] (port=17720 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j6LFv-0008UW-UA for control@debbugs.gnu.org; Mon, 24 Feb 2020 16:27:15 -0500 Date: Mon, 24 Feb 2020 22:27:08 +0100 Message-Id: <87blpnekwj.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #39712 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) severity 39712 important quit From unknown Sun Jul 27 00:54:42 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#39712: closed (Re: bug#39712: Partitions produced by the installer not properly unmounted?) Message-ID: References: <87pndgz1yu.fsf@gmail.com> <87lfownqgd.fsf@inria.fr> X-Gnu-PR-Message: they-closed 39712 X-Gnu-PR-Package: guix Reply-To: 39712@debbugs.gnu.org Date: Fri, 13 Mar 2020 15:53:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1584114782-27538-1" This is a multi-part message in MIME format... ------------=_1584114782-27538-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #39712: Partitions produced by the installer not properly unmounted? which was filed against the guix package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 39712@debbugs.gnu.org. --=20 39712: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D39712 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1584114782-27538-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 39712-done) by debbugs.gnu.org; 13 Mar 2020 15:52:53 +0000 Received: from localhost ([127.0.0.1]:60161 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jCmcG-00079m-Oj for submit@debbugs.gnu.org; Fri, 13 Mar 2020 11:52:52 -0400 Received: from mail-wm1-f50.google.com ([209.85.128.50]:40511) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jCmcE-00079Z-IK for 39712-done@debbugs.gnu.org; Fri, 13 Mar 2020 11:52:50 -0400 Received: by mail-wm1-f50.google.com with SMTP id z12so1658502wmf.5 for <39712-done@debbugs.gnu.org>; Fri, 13 Mar 2020 08:52:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=references:user-agent:from:to:cc:subject:in-reply-to:date :message-id:mime-version; bh=eadVfx4slZxwuyUsMhbKDfaoO7XPEyx6ukU0jcSuE1w=; b=UVWOEvKH5UmZLU6PeoT6jvDSL7PBNmpXyuOmRJUvjiWLJxnu454Sw+IsRSOPyOyUJq AOHJy6EfdLKz6japflbDNR3eWK5fotT90Ok+Qflbin0WNE4tHbNs6DiJxnjkvBrD+T+b yxETrSPjd1I4rMb7fDuNTbo/PEeJeBl5fwyP/75Z/MSiUjrxT+D1egyWx6SjAN7tPiYQ ltnRKpSfW7OEGJsQQjJXvwPnWYTXZrkPPLVdijUtq72RlnpiDPnox4kUVzSbyKC0fCK/ 5lrIdMk8/RWXPHdSxH7zecxmrUEx8VedtMUqAHu4fC+BRgVyrrEKNLZCOI1pfpTR/OMG +MLA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:references:user-agent:from:to:cc:subject :in-reply-to:date:message-id:mime-version; bh=eadVfx4slZxwuyUsMhbKDfaoO7XPEyx6ukU0jcSuE1w=; b=J8MaIa/4xVI698g75Bn+cvSEYp0XorCpGBRL4WiWgd69Q+0CtD5SLF0veNdQrIU2jV 94m84tDxT64JAbMlOWbMau4KjATD+hBVEVE3aRyd409JESxs2u4HDt3A2LCGgPPGEe1f XmfBv+h2LXsEqb21pjJ6E2y6j58rew9eHKhl4xo0rWcnkReO6dM1QYEseHaKAigWrwdH kzbMk8lAEsO226IpFFu9WzMpuA8oyCxDrIGBvoEYESXCHF/BCF7mXuaC8pNpMFM9i3uM YbDLWWwelcawA+gK6snxkPTAvBlt4YjpOzOx0l2IToIn2UwoXXLGaQKIQD8XAVyBAVpg InPA== X-Gm-Message-State: ANhLgQ3s83qGc5cEnCCKWEQ+fh0BHa7rJ04Si+RlDEWSM7WjrmP6p0Gd A8epZGPUnflXy2pftn9deWbk1n01+8o= X-Google-Smtp-Source: ADFU+vsClw5FlvFexeN/TMJVfT0DgD4VZ9fZhViNBXG6Nlm9UVAu9GBUr+VUWiaKAtcQ/2mCSlM3xg== X-Received: by 2002:a1c:b4d4:: with SMTP id d203mr11716797wmf.85.1584114764400; Fri, 13 Mar 2020 08:52:44 -0700 (PDT) Received: from meru (lfbn-ann-1-269-240.w86-200.abo.wanadoo.fr. [86.200.224.240]) by smtp.gmail.com with ESMTPSA id m187sm17240809wme.16.2020.03.13.08.52.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 13 Mar 2020 08:52:43 -0700 (PDT) References: <87lfownqgd.fsf@inria.fr> <87h7zknepa.fsf@gmail.com> <87d0a73c3x.fsf@gnu.org> <875zfyvs15.fsf@gmail.com> <87blpqy282.fsf@gnu.org> User-agent: mu4e 1.2.0; emacs 26.3 From: Mathieu Othacehe To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: bug#39712: Partitions produced by the installer not properly unmounted? In-reply-to: <87blpqy282.fsf@gnu.org> Date: Fri, 13 Mar 2020 16:52:41 +0100 Message-ID: <87pndgz1yu.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 39712-done Cc: 39712-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) This is fixed by 64704be417ab6f2788e8e3bc36fede1db35470e7. Thanks, Mathieu ------------=_1584114782-27538-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 21 Feb 2020 11:13:28 +0000 Received: from localhost ([127.0.0.1]:46447 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j56FM-00013Z-Gd for submit@debbugs.gnu.org; Fri, 21 Feb 2020 06:13:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:40234) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j56FK-00013P-BE for submit@debbugs.gnu.org; Fri, 21 Feb 2020 06:13:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33295) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j56FJ-00071I-8F for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:26 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_40 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51326) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j56FJ-0002ou-4q for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:25 -0500 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=42032 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j56FI-0000z1-FL for bug-guix@gnu.org; Fri, 21 Feb 2020 06:13:24 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: bug-guix@gnu.org Subject: Partitions produced by the installer not properly unmounted? X-Debbugs-Cc: Mathieu Othacehe X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 3 =?utf-8?Q?Vent=C3=B4se?= an 228 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 21 Feb 2020 12:13:22 +0100 Message-ID: <87lfownqgd.fsf@inria.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Mathieu, I noticed that partitions created by the installer appear to not be properly unmounted, at least when running in the context of (gnu tests install): --8<---------------cut here---------------start------------->8--- ludo@ribbon ~$ qemu-img convert -O raw /gnu/store/2d3s2nbb3j2c1hmkz52xds9rf= bk4q3x3-installation /tmp/broken.raw ludo@ribbon ~$ sudo losetup -P /dev/loop0 /tmp/broken.raw=20 ludo@ribbon ~$ sudo dmesg |tail -3 [10703.869334] kvm [8936]: vcpu0, guest rIP: 0xffffffffac073dad disabled pe= rfctr wrmsr: 0xc2 data 0xffff [10742.475623] kvm [8957]: vcpu0, guest rIP: 0xffffffffaf073dad disabled pe= rfctr wrmsr: 0xc2 data 0xffff [11774.318468] loop0: p1 p2 p3 ludo@ribbon ~$ sudo fdisk -l /dev/loop0 Disk /dev/loop0: 2.15 GiB, 2306867200 bytes, 4505600 sectors Units: sectors of 1 * 512 =3D 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 213AE251-0E91-499E-9184-0CCEC6DA64C7 Dispositiu Start Final Sectors Size Tipus /dev/loop0p1 2048 6143 4096 2M BIOS boot /dev/loop0p2 6144 231423 225280 110M Intercanvi Linux /dev/loop0p3 231424 4503551 4272128 2G Linux filesystem ludo@ribbon ~$ sudo mount /dev/loop0p3 /mnt/usb ludo@ribbon ~$ sudo dmesg |tail -3 [11774.318468] loop0: p1 p2 p3 [11803.975300] EXT4-fs (loop0p3): recovery complete [11803.977277] EXT4-fs (loop0p3): mounted filesystem with ordered data mode= . Opts: (null) --8<---------------cut here---------------end--------------->8--- However, I=E2=80=99ve added logging in =E2=80=98umount-user-partitions=E2= =80=99 in (gnu installer parted), and the installer does seem to unmount partitions correctly. Could it be a side effect of the MS_MOVE dance in 1d02052067e04d7dd8fd1ec17557ca02a30b9bcf? (I=E2=80=99m observing this on =E2=80=98wip-installer-tests=E2=80=99, rough= ly based on 117d8467be232bcc1b0136d04f362d95d975ca95.) Thanks, Ludo=E2=80=99. ------------=_1584114782-27538-1--