From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 10 09:23:58 2024 Received: (at submit) by debbugs.gnu.org; 10 Jul 2024 13:23:58 +0000 Received: from localhost ([127.0.0.1]:55135 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRXIb-0001xo-NB for submit@debbugs.gnu.org; Wed, 10 Jul 2024 09:23:58 -0400 Received: from lists.gnu.org ([209.51.188.17]:32926) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRXIZ-0001xe-71 for submit@debbugs.gnu.org; Wed, 10 Jul 2024 09:23:56 -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 1sRXIS-0003l0-Ol for guix-patches@gnu.org; Wed, 10 Jul 2024 09:23:48 -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 1sRXIS-00022L-E6; Wed, 10 Jul 2024 09:23:48 -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:Subject:To:From:in-reply-to: references; bh=2PXDOkr+IVcgL2hEo7b6c8zL0gLLUdGMJKYfctbI3KM=; b=B19hjbhzjyj1Cs oPYv6Rfy9INJVbfGS87rV8d0NEiUKvL69bso5SQ3boUZftdrMJSs70SoSDIH+X2Yotod3vYOf1Tuw XuuwJmbQNDOi6rI17NwrcTBY+7STH0RzCjmXqWSW/IgKTnF6eXfrKDewo296SXHzkuI+BhS2cDx0F 5ficmsRZBmjTt7tNuajrBL+izHivrMYGhiofCfVZdm9az+1l0VDNd8SYJqdlsmi8BvLicj9wk4jeD ZrDGHKptno2cSoG9ZmMmR4njgNGOxvCY9O4QTRX7I92ARuyxu+tSX+nZIiIVNYHHJFhJZHc0xVxc3 cWSFIgVYhnz31gTwjQ0A==; From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= To: guix-patches@gnu.org Subject: [PATCH] =?UTF-8?q?installer:=20Create=20ext4=20file=20systems=20w?= =?UTF-8?q?ith=20=E2=80=98-O=20large=5Fdir=E2=80=99.?= Date: Wed, 10 Jul 2024 15:23:32 +0200 Message-ID: <7976069f078b5ba5c7d75e4a427f35f06c70c058.1720617776.git.ludo@gnu.org> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Debbugs-Cc: Josselin Poiret , Ludovic Courtès , Mathieu Othacehe Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Ludovic=20Court=C3=A8s?= 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 (---) * gnu/installer/parted.scm (create-ext4-file-system): Pass ‘-O large_dir’ to ‘mkfs.ext4’. Change-Id: Ie34039ed03f273505e7f7fb5c3241120e3395ba2 --- gnu/installer/parted.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index 51fa7cf9d9c..dbdec1bba82 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018, 2019 Mathieu Othacehe -;;; Copyright © 2019, 2020, 2022 Ludovic Courtès +;;; Copyright © 2019-2020, 2022, 2024 Ludovic Courtès ;;; Copyright © 2020 Tobias Geerinckx-Rice ;;; Copyright © 2022 Josselin Poiret ;;; @@ -1187,7 +1187,13 @@ (define (create-btrfs-file-system partition) (define (create-ext4-file-system partition) "Create an ext4 file-system for PARTITION file-name." - ((run-command-in-installer) "mkfs.ext4" "-F" partition)) + ;; Enable the 'large_dir' feature so users can have a store of several TiBs. + ;; Failing to do that, the directory index (enabled by 'dir_index') can fill + ;; up and adding new files would fail with ENOSPC despite there being plenty + ;; of free space and inodes: + ;; . + ((run-command-in-installer) "mkfs.ext4" "-F" partition + "-O" "large_dir")) (define (create-fat16-file-system partition) "Create a fat16 file-system for PARTITION file-name." base-commit: 922e943059050f05532ac8274e55e25ebe711cf5 -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 31 13:10:59 2024 Received: (at control) by debbugs.gnu.org; 31 Aug 2024 17:10:59 +0000 Received: from localhost ([127.0.0.1]:56000 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skRco-0005w8-UD for submit@debbugs.gnu.org; Sat, 31 Aug 2024 13:10:59 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skRcm-0005vn-G6 for control@debbugs.gnu.org; Sat, 31 Aug 2024 13:10:56 -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 1skRbk-0003Qp-RR for control@debbugs.gnu.org; Sat, 31 Aug 2024 13:09:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:Subject:From:To:Date:in-reply-to: references; bh=ftGdY2gw5PTU1Hma+MRMxPhH9rNPPF/sGXZnZCOcjWc=; b=nsu4QKRxZqVtk/ eGpOipQFn68teFTJOMH22PtCGPwNHJJWdeHiYiOIF0tMPB6+A7i1Mix0c+2vwuhjjUrBqcij9LnK+ Fs+5DM9o1dmnfMZez8zlTdhtogJcQKhjSUEwQF1zdhThQG6tEO8yKxFUVbOgdCTwUWOZRwcPKz0Cy +5elIl4l4zYS+isEw4AlHPzkIUxIBdKyHHrY9mjNilkYkeB1SfkUOm/j/AyvAnzv7wUzT165xaRRi j2gWkYMzs+WjTmrMyW1le+72tnl1Cs5WSk1EM8b7viyAshhFoXcIAoQT0pjztNfHDmDrih1LVfIlI Yj9oSf2qwkuOHOvYXEZQ==; Date: Sat, 31 Aug 2024 19:09:51 +0200 Message-Id: <87h6b0hb4w.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #72035 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) 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: -3.3 (---) close 72035 quit From unknown Fri Sep 05 09:10:03 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 29 Sep 2024 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator