From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id OEnpMMXo8V+gWgAA0tVLHw (envelope-from ) for ; Sun, 03 Jan 2021 15:54:45 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id sCGxLMXo8V+PIAAAbx9fmQ (envelope-from ) for ; Sun, 03 Jan 2021 15:54:45 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 856E49403C9 for ; Sun, 3 Jan 2021 15:54:45 +0000 (UTC) Received: from localhost ([::1]:38460 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kw5iO-00069u-I4 for larch@yhetil.org; Sun, 03 Jan 2021 10:54:44 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:59588) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kw5e5-0003bk-NW for guix-devel@gnu.org; Sun, 03 Jan 2021 10:50:17 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:59362) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kw5e2-0007Cs-9S for guix-devel@gnu.org; Sun, 03 Jan 2021 10:50:17 -0500 Received: from localhost (80-110-127-104.cgn.dynamic.surfer.at [80.110.127.104]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 33D4B33656E5; Sun, 3 Jan 2021 16:50:11 +0100 (CET) Date: Sun, 3 Jan 2021 16:50:08 +0100 From: Danny Milosavljevic To: raid5atemyhomework Subject: Re: ZFS on Guix Message-ID: <20210103165008.6517c1bf@scratchpost.org> In-Reply-To: <4nnVFhbpUhipplsq55mHX9KtoMK9s0rZDC3D8rgKQ5O0nUtnapdkHZfPcAVpECgW1mnYm1BbmvyQ4SyTgvNyUgVgzM29gh6b8OL7p3YvczM=@protonmail.com> References: <_1CLe9QSGsoMlu5WxBMXm4CbFLM_M9iRG1XQF9GDsK0GP208jpngdymfix4tAfoLP94mhMTt-Tx6OP2xN_n78Jhx5KQzkiqPpIci_44C9OI=@protonmail.com> <4nnVFhbpUhipplsq55mHX9KtoMK9s0rZDC3D8rgKQ5O0nUtnapdkHZfPcAVpECgW1mnYm1BbmvyQ4SyTgvNyUgVgzM29gh6b8OL7p3YvczM=@protonmail.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/T.0D7w+uvv5=Qb_xN4xZA7/"; protocol="application/pgp-signature"; micalg=pgp-sha512 Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "guix-devel@gnu.org" Errors-To: guix-devel-bounces+larch=yhetil.org@gnu.org Sender: "Guix-devel" X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: -2.43 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-devel-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-devel-bounces@gnu.org X-Migadu-Queue-Id: 856E49403C9 X-Spam-Score: -2.43 X-Migadu-Scanner: scn0.migadu.com X-TUID: wh6fXO3TYZ6M --Sig_/T.0D7w+uvv5=Qb_xN4xZA7/ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, the reason is that our "zfs" package uses ("util-linux" ,util-linux "lib") and then does (substitute* "lib/libzfs/libzfs_mount.c" (("/bin/mount") (string-append util-linux "/bin/mount")) (("/bin/umount") (string-append util-linux "/bin/umount"))) . That can't work. zfs interna that will be patched by the Guix package are: ./lib/libzfs/libzfs_mount.c do_mount(const char *src, const char *mntpt, char *opts) char *argv[9] =3D { "/bin/mount", "--no-canonicalize", "-t", MNTTYPE_ZFS, "-o", opts, (char *)src, (char *)mntpt, (char *)NULL }; Easy fix would be to change our package to have both ("util-linux:lib" ,util-linux "lib") and ("util-linux" ,util-linux) . --Sig_/T.0D7w+uvv5=Qb_xN4xZA7/ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl/x57AACgkQ5xo1VCww uqU/twgAj/cjBsX+kyaDzsvq/HD8JOdN97/NFOVYYzRogSPyaOVoQHAmlrlEraEe KJwhQAmSCOxOgWpGgfR9SySFpjXGCiRjVdkSB1ZMftUCSgTT6G0Fl58GTm5ytl74 UtqjZU/1vuUdo4XyXzPNhKELGmE5pzHlDUGnv24EDX11SitqNzdeMhPmBfaWNMkq msunwgPqhHxv5fLsvzADH+BbkQlf1yQkzpPGJYd/GqOPWH4TgcTyaDOEN5frqKwn medt6RLUINbUJtsOudXgGqG0D0CGKxc28NTt/3+qb4NSqrfhvzbHB4v7paBZvLeE h9h3qEvm4xCxWBr1yY3oBU5czFA8UQ== =1hJT -----END PGP SIGNATURE----- --Sig_/T.0D7w+uvv5=Qb_xN4xZA7/--