From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- zarb-ml/mageia-dev/2013-March/023465.html | 152 ++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 zarb-ml/mageia-dev/2013-March/023465.html (limited to 'zarb-ml/mageia-dev/2013-March/023465.html') diff --git a/zarb-ml/mageia-dev/2013-March/023465.html b/zarb-ml/mageia-dev/2013-March/023465.html new file mode 100644 index 000000000..f661db378 --- /dev/null +++ b/zarb-ml/mageia-dev/2013-March/023465.html @@ -0,0 +1,152 @@ + + + + [Mageia-dev] RFC: Patch e2fsprogs to not print the "clean" message on fsck. + + + + + + + + + +

[Mageia-dev] RFC: Patch e2fsprogs to not print the "clean" message on fsck.

+ Colin Guthrie + mageia at colin.guthr.ie +
+ Wed Mar 13 13:35:36 CET 2013 +

+
+ +
Hi,
+
+I would like to propose that we push a patch to e2fsprogs to make it not
+print out the "clean" message when it checks the filesystem.
+
+In my current boot (which is an experiment without initrds), it prints
+this message over the top of plymouth and stays during the nice fade
+transition to gdm and generally makes the boot ugly.
+
+I believe only the e2fsprogs print this message and the others do not
+e.g. see this comparison with XFS:
+
+[root at jimmy ~]# dd if=/dev/zero of=xfs.img bs=1M count=100 >/dev/null
+2>&1; mkfs.xfs xfs.img >/dev/null 2>&1; xfs_check xfs.img
+[root at jimmy ~]# dd if=/dev/zero of=ext4.img bs=1M count=100 >/dev/null
+2>&1; mkfs.ext4 -F ext4.img >/dev/null 2>&1; fsck.ext4 -a ext4.img
+ext4.img: clean, 11/25688 files, 8896/102400 blocks
+
+
+
+My patch would propose to not print the "clean" message when the -a
+option was passed. This is similar logic which prevents showing the
+version when -a is passed.
+
+I've not tested this but I will before committing if no-one disapproves
+of this approach.
+
+--- e2fsprogs-1.42.7/e2fsck/unix.c.orig	2013-03-13 10:57:22.349126868 +0000
++++ e2fsprogs-1.42.7/e2fsck/unix.c	2013-03-13 12:33:08.340522834 +0000
+@@ -421,13 +421,14 @@
+ 	}
+
+ 	/* Print the summary message when we're skipping a full check */
+-	log_out(ctx, _("%s: clean, %u/%u files, %llu/%llu blocks"),
+-		ctx->device_name,
+-		fs->super->s_inodes_count - fs->super->s_free_inodes_count,
+-		fs->super->s_inodes_count,
+-		ext2fs_blocks_count(fs->super) -
+-		ext2fs_free_blocks_count(fs->super),
+-		ext2fs_blocks_count(fs->super));
++	if (!(ctx->options & E2F_OPT_PREEN))
++		log_out(ctx, _("%s: clean, %u/%u files, %llu/%llu blocks"),
++			ctx->device_name,
++			fs->super->s_inodes_count - fs->super->s_free_inodes_count,
++			fs->super->s_inodes_count,
++			ext2fs_blocks_count(fs->super) -
++			ext2fs_free_blocks_count(fs->super),
++			ext2fs_blocks_count(fs->super));
+ 	next_check = 100000;
+ 	if (fs->super->s_max_mnt_count > 0) {
+ 		next_check = fs->super->s_max_mnt_count - fs->super->s_mnt_count;
+
+
+-- 
+
+Colin Guthrie
+colin(at)mageia.org
+http://colin.guthr.ie/
+
+Day Job:
+  Tribalogic Limited http://www.tribalogic.net/
+Open Source:
+  Mageia Contributor http://www.mageia.org/
+  PulseAudio Hacker http://www.pulseaudio.org/
+  Trac Hacker http://trac.edgewall.org/
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ +
+More information about the Mageia-dev +mailing list
+ -- cgit v1.2.1