From unknown Sun Jun 22 07:59:01 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#66781] [PATCH] gnu: file-systems: Add xenfs to %pseudo-file-system-types. Resent-From: Skyler Ferris Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 27 Oct 2023 20:35:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 66781 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 66781@debbugs.gnu.org Cc: Skyler Ferris X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.169843889914671 (code B ref -1); Fri, 27 Oct 2023 20:35:02 +0000 Received: (at submit) by debbugs.gnu.org; 27 Oct 2023 20:34:59 +0000 Received: from localhost ([127.0.0.1]:37404 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qwTXn-0003oZ-BV for submit@debbugs.gnu.org; Fri, 27 Oct 2023 16:34:59 -0400 Received: from lists.gnu.org ([2001:470:142::17]:44516) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qwTXl-0003oN-Lw for submit@debbugs.gnu.org; Fri, 27 Oct 2023 16:34:58 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qwTXA-0000W9-M7 for guix-patches@gnu.org; Fri, 27 Oct 2023 16:34:20 -0400 Received: from c-24-143-119-132.customer.broadstripe.net ([24.143.119.132] helo=localhost) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qwTX8-0001XT-ON for guix-patches@gnu.org; Fri, 27 Oct 2023 16:34:20 -0400 Received: from [127.0.0.1] (helo=localhost.localdomain) by localhost with esmtp (Exim 4.96) (envelope-from ) id 1qwTX4-0000Fw-0R; Fri, 27 Oct 2023 13:34:14 -0700 From: Skyler Ferris Date: Fri, 27 Oct 2023 13:34:08 -0700 Message-ID: <80c472f1e80600584bdd37459f3fa45a3cb19ae5.1698438848.git.skyvine@protonmail.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: softfail client-ip=24.143.119.132; envelope-from=skyvine@protonmail.com; helo=localhost X-Spam_score_int: 60 X-Spam_score: 6.0 X-Spam_bar: ++++++ X-Spam_report: (6.0 / 5.0 requ) BAYES_00=-1.9, FREEMAIL_FROM=0.001, FSL_HELO_NON_FQDN_1=0.001, HELO_LOCALHOST=3.828, KHOP_HELO_FCRDNS=0.399, RDNS_DYNAMIC=0.982, SPF_SOFTFAIL=0.665, SPOOFED_FREEMAIL=1.999 autolearn=no autolearn_force=no X-Spam_action: reject X-Spam-Score: 3.0 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/system/file-systems.scm (%pseudo-file-system-types): Add xenfs. --- This patch lets me declare a xenfs filesystem in a guest instance like so: (operating-system ... (file-systems (cons (file-system (mount-point "/proc/xen") (device "xenfs") (type "xenfs"))))) gnu/system/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Content analysis details: (3.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (skyvine[at]protonmail.com) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 2.0 SPOOFED_FREEMAIL No description available. 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: -0.0 (/) * gnu/system/file-systems.scm (%pseudo-file-system-types): Add xenfs. --- This patch lets me declare a xenfs filesystem in a guest instance like so: (operating-system ... (file-systems (cons (file-system (mount-point "/proc/xen") (device "xenfs") (type "xenfs"))))) gnu/system/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm index 529f1536de..6d385d71d4 100644 --- a/gnu/system/file-systems.scm +++ b/gnu/system/file-systems.scm @@ -369,7 +369,7 @@ (define %pseudo-file-system-types ;; List of know pseudo file system types. This is used when validating file ;; system definitions. '("binfmt_misc" "cgroup" "cgroup2" "debugfs" "devpts" "devtmpfs" "efivarfs" "fusectl" - "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs")) + "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs" "xenfs")) (define %fuse-control-file-system ;; Control file system for Linux' file systems in user-space (FUSE). base-commit: e71864793021051cff35597abd59bb2d5649977d -- 2.41.0 From unknown Sun Jun 22 07:59:01 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: Skyler Ferris Subject: bug#66781: closed (Re: [bug#66781] [PATCH] gnu: file-systems: Add xenfs to %pseudo-file-system-types.) Message-ID: References: <87fs1t6mmu.fsf@gnu.org> <80c472f1e80600584bdd37459f3fa45a3cb19ae5.1698438848.git.skyvine@protonmail.com> X-Gnu-PR-Message: they-closed 66781 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 66781@debbugs.gnu.org Date: Sun, 29 Oct 2023 23:22:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1698621722-29254-1" This is a multi-part message in MIME format... ------------=_1698621722-29254-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #66781: [PATCH] gnu: file-systems: Add xenfs to %pseudo-file-system-types. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 66781@debbugs.gnu.org. --=20 66781: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D66781 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1698621722-29254-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 66781-done) by debbugs.gnu.org; 29 Oct 2023 23:22:00 +0000 Received: from localhost ([127.0.0.1]:44001 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qxF6W-0007bZ-DC for submit@debbugs.gnu.org; Sun, 29 Oct 2023 19:22:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57552) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qxF6R-0007bK-KE for 66781-done@debbugs.gnu.org; Sun, 29 Oct 2023 19:21:59 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qxF5p-0003mU-CC; Sun, 29 Oct 2023 19:21:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=7d1qFf/jJkNSKsq8dxCmKvFc7rK/PBhaMwlduiP8/GI=; b=MEil5P9e2zfOtThOzGg0 0GEyuP22SakwiLDOfthzX+mJKTLAP3joDj9cRMLW6Nq0uTdwPajV5oCW373cpeC1T5GS5HzytqQbH 42ZLiihpmsZnWu4JYwIoxGPnb1EMqYRBMiJyjlvVAGfeveajoVj6aXU8nXxJ4cmnnSta7Nu4wP3Wq 9bizyjIdAiDooWjZl78rUZdRkmanpZuODkWUJbkiWBWt/JPqaVq6g5i2brp7OwsNCeHFk6DjUuRNe PFY4Y/PygutDD3EJH8lAvzmT/YTjeix7iMGopQXStXHBem6MUz1TH2H3q5h7MV7foY6oy2lAchIew trXdS0/ZYeyG2A==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Skyler Ferris Subject: Re: [bug#66781] [PATCH] gnu: file-systems: Add xenfs to %pseudo-file-system-types. In-Reply-To: <80c472f1e80600584bdd37459f3fa45a3cb19ae5.1698438848.git.skyvine@protonmail.com> (Skyler Ferris's message of "Fri, 27 Oct 2023 13:34:08 -0700") References: <80c472f1e80600584bdd37459f3fa45a3cb19ae5.1698438848.git.skyvine@protonmail.com> Date: Mon, 30 Oct 2023 00:21:13 +0100 Message-ID: <87fs1t6mmu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 66781-done Cc: 66781-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: -3.3 (---) Hi, Skyler Ferris skribis: > * gnu/system/file-systems.scm (%pseudo-file-system-types): Add xenfs. Applied, thanks! Ludo=E2=80=99. ------------=_1698621722-29254-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Oct 2023 20:34:59 +0000 Received: from localhost ([127.0.0.1]:37404 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qwTXn-0003oZ-BV for submit@debbugs.gnu.org; Fri, 27 Oct 2023 16:34:59 -0400 Received: from lists.gnu.org ([2001:470:142::17]:44516) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qwTXl-0003oN-Lw for submit@debbugs.gnu.org; Fri, 27 Oct 2023 16:34:58 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qwTXA-0000W9-M7 for guix-patches@gnu.org; Fri, 27 Oct 2023 16:34:20 -0400 Received: from c-24-143-119-132.customer.broadstripe.net ([24.143.119.132] helo=localhost) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qwTX8-0001XT-ON for guix-patches@gnu.org; Fri, 27 Oct 2023 16:34:20 -0400 Received: from [127.0.0.1] (helo=localhost.localdomain) by localhost with esmtp (Exim 4.96) (envelope-from ) id 1qwTX4-0000Fw-0R; Fri, 27 Oct 2023 13:34:14 -0700 From: Skyler Ferris To: guix-patches@gnu.org Subject: [PATCH] gnu: file-systems: Add xenfs to %pseudo-file-system-types. Date: Fri, 27 Oct 2023 13:34:08 -0700 Message-ID: <80c472f1e80600584bdd37459f3fa45a3cb19ae5.1698438848.git.skyvine@protonmail.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: softfail client-ip=24.143.119.132; envelope-from=skyvine@protonmail.com; helo=localhost X-Spam_score_int: 60 X-Spam_score: 6.0 X-Spam_bar: ++++++ X-Spam_report: (6.0 / 5.0 requ) BAYES_00=-1.9, FREEMAIL_FROM=0.001, FSL_HELO_NON_FQDN_1=0.001, HELO_LOCALHOST=3.828, KHOP_HELO_FCRDNS=0.399, RDNS_DYNAMIC=0.982, SPF_SOFTFAIL=0.665, SPOOFED_FREEMAIL=1.999 autolearn=no autolearn_force=no X-Spam_action: reject X-Spam-Score: 3.0 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/system/file-systems.scm (%pseudo-file-system-types): Add xenfs. --- This patch lets me declare a xenfs filesystem in a guest instance like so: (operating-system ... (file-systems (cons (file-system (mount-point "/proc/xen") (device "xenfs") (type "xenfs"))))) gnu/system/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Content analysis details: (3.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (skyvine[at]protonmail.com) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 2.0 SPOOFED_FREEMAIL No description available. X-Debbugs-Envelope-To: submit Cc: Skyler Ferris 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: -0.0 (/) * gnu/system/file-systems.scm (%pseudo-file-system-types): Add xenfs. --- This patch lets me declare a xenfs filesystem in a guest instance like so: (operating-system ... (file-systems (cons (file-system (mount-point "/proc/xen") (device "xenfs") (type "xenfs"))))) gnu/system/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm index 529f1536de..6d385d71d4 100644 --- a/gnu/system/file-systems.scm +++ b/gnu/system/file-systems.scm @@ -369,7 +369,7 @@ (define %pseudo-file-system-types ;; List of know pseudo file system types. This is used when validating file ;; system definitions. '("binfmt_misc" "cgroup" "cgroup2" "debugfs" "devpts" "devtmpfs" "efivarfs" "fusectl" - "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs")) + "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs" "xenfs")) (define %fuse-control-file-system ;; Control file system for Linux' file systems in user-space (FUSE). base-commit: e71864793021051cff35597abd59bb2d5649977d -- 2.41.0 ------------=_1698621722-29254-1--