From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1535744-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id CDE8615800D
	for <garchives@archives.gentoo.org>; Sat,  8 Jul 2023 04:04:54 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BED7EE07FE;
	Sat,  8 Jul 2023 04:04:53 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id A270CE07FE
	for <gentoo-commits@lists.gentoo.org>; Sat,  8 Jul 2023 04:04:53 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 84773340E1F
	for <gentoo-commits@lists.gentoo.org>; Sat,  8 Jul 2023 04:04:52 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id CC59EAC4
	for <gentoo-commits@lists.gentoo.org>; Sat,  8 Jul 2023 04:04:50 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1688788976.aaf5ebb65b16fd41877a04cde82fdd3d8cc90cfb.sam@gentoo>
Subject: [gentoo-commits] proj/baselayout:master commit in: share/
X-VCS-Repository: proj/baselayout
X-VCS-Files: share/fstab
X-VCS-Directories: share/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: aaf5ebb65b16fd41877a04cde82fdd3d8cc90cfb
X-VCS-Branch: master
Date: Sat,  8 Jul 2023 04:04:50 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 2436cfa2-7ed3-4d93-8b9a-0f7d129a2b31
X-Archives-Hash: b3af8ebbdde406d0e69b75e9833d6d1d

commit:     aaf5ebb65b16fd41877a04cde82fdd3d8cc90cfb
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  7 06:55:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  8 04:02:56 2023 +0000
URL:        https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=aaf5ebb6

share/fstab: drop reiserfs references and noatime, use defaults

ReiserFS was deprecated in Linux 5.18 and slated for removal in 2025.

Using 'noatime' does seldom really bring any noticeable performance
benefit. The default of 'relatime', which Linux supports for a long
time, is a good compromise. Having an (coarse-grained) atime allows
for certain use cases. For example, a tool that detects unused
packages in a system and suggest them for removal.

A generic configuration file like this should simply use the
defaults. Especially if those are sane ones. No need to continue the
noatime cargo cult.

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 share/fstab | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/share/fstab b/share/fstab
index 62dd22e5..7fd7852e 100644
--- a/share/fstab
+++ b/share/fstab
@@ -1,10 +1,4 @@
 # /etc/fstab: static file system information.
-#
-# noatime turns off atimes for increased performance (atimes normally aren't 
-# needed); notail increases performance of ReiserFS (at the expense of storage 
-# efficiency).  It's safe to drop the noatime options if you want and to 
-# switch between notail / tail freely.
-#
 # The root filesystem should have a pass number of either 0 or 1.
 # All other filesystems should have a pass number of 0 or greater than 1.
 #
@@ -13,7 +7,6 @@
 
 # <fs>			<mountpoint>	<type>		<opts>		<dump/pass>
 
-# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
 #
 # NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3
 #       filesystems.  This just tells the kernel to use the ext4 driver.
@@ -23,7 +16,7 @@
 #       documentation for details on setting a label. To obtain the UUID, use
 #       the blkid(8) command.
 
-#LABEL=boot		/boot		ext4		noauto,noatime	1 2
-#UUID=58e72203-57d1-4497-81ad-97655bd56494		/		ext4		noatime		0 1
+#LABEL=boot		/boot		ext4		defaults	1 2
+#UUID=58e72203-57d1-4497-81ad-97655bd56494		/		ext4		defaults		0 1
 #LABEL=swap		none		swap		sw		0 0
 #/dev/cdrom		/mnt/cdrom	auto		noauto,ro	0 0