From: Karel Zak <kzak-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Michal Soltys <soltys-R61QfzASbfY@public.gmane.org>
Cc: initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 3/5] 95fstab-sys: use det_fs and wrap_fsck
Date: Tue, 24 May 2011 01:05:07 +0200 [thread overview]
Message-ID: <20110523230507.GC2659@nb.net.home> (raw)
In-Reply-To: <1305904167-14199-4-git-send-email-soltys-R61QfzASbfY@public.gmane.org>
On Fri, May 20, 2011 at 05:09:25PM +0200, Michal Soltys wrote:
> +fstab_mount() {
> + local _dev _mp _fs _opts _dump _pass _rest
> test -e "$1" || return 1
> info "Mounting from $1"
> - while read dev mp type opts rest; do
> - [ -z "${dev%%#*}" ]&& continue # Skip comment lines
> - mount -v -t $type -o $opts $dev $NEWROOT/$mp
> - done < $1 | vinfo
> + while read _dev _mp _fs _opts _dump _pass _rest; do
How does this code handle encoding in fstab? (e.g. /path/foo\x40bar)
> + [ -z "${_dev%%#*}" ] && continue # Skip comment lines
> + if [ ! -e "$_dev" ]; then
> + warn "Device $_dev doesn't exist, skipping mount."
> + continue
> + fi
> + if [ "$_pass" -gt 0 ] && ! strstr "$_opts" _netdev; then
> + wrap_fsck "$_dev"
> + fi
> + _fs=$(det_fs "$_dev" "$_fs" /etc/fstab.sys)
> + info "Mounting $_dev"
> + mount -v -t $_fs -o $_opts $_dev $NEWROOT/$_mp 2>&1 | vinfo
> + done < $1
It means that fsck is not running in parallel if you have more
devices in /ect/fstab.sys. Is it expected?
It would be better to call one fsck instance for all devices
fsck -T /dev/sda1 /dev/sda2 /dev/sdb1
or use the "-l" option for more instances.
Karel
--
Karel Zak <kzak-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
http://karelzak.blogspot.com
next prev parent reply other threads:[~2011-05-23 23:05 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-20 15:09 [RFC/PATCH] Expand fstab-sys, simplify rootfs-block Michal Soltys
[not found] ` <1305904167-14199-1-git-send-email-soltys-R61QfzASbfY@public.gmane.org>
2011-05-20 15:09 ` [PATCH 1/5] dracut-lib.sh: add vwarn() function Michal Soltys
2011-05-20 15:09 ` [PATCH 2/5] dracut-lib.sh: Add det_fs() and wrap_fsck() Michal Soltys
2011-05-20 15:09 ` [PATCH 3/5] 95fstab-sys: use det_fs and wrap_fsck Michal Soltys
[not found] ` <1305904167-14199-4-git-send-email-soltys-R61QfzASbfY@public.gmane.org>
2011-05-23 23:05 ` Karel Zak [this message]
[not found] ` <20110523230507.GC2659-sHeGUpI7y9L/9pzu0YdTqQ@public.gmane.org>
2011-05-24 20:50 ` Michal Soltys
[not found] ` <4DDC1A05.9030400-R61QfzASbfY@public.gmane.org>
2011-05-24 22:39 ` Karel Zak
[not found] ` <20110524223936.GG2659-sHeGUpI7y9L/9pzu0YdTqQ@public.gmane.org>
2011-05-25 13:16 ` Harald Hoyer
2011-05-25 14:32 ` Michal Soltys
[not found] ` <4DDD0E48.3060607@rasengan.ppgk.com.pl>
[not found] ` <4DDD0E48.3060607-dAhJnYnFfKxY6LDf3zcCrARSaAK4NQh3@public.gmane.org>
2011-05-25 14:33 ` Karel Zak
[not found] ` <20110525143311.GA14298-sHeGUpI7y9L/9pzu0YdTqQ@public.gmane.org>
2011-05-29 0:38 ` [RFC] fstab-sys: concept Michal Soltys
2011-05-25 14:31 ` [PATCH 3/5] 95fstab-sys: use det_fs and wrap_fsck Karel Zak
2011-05-20 15:09 ` [PATCH 4/5] 95rootfs-block/mount-root.sh: Rely on " Michal Soltys
2011-05-20 15:09 ` [PATCH 5/5] 95rootfs-block/block-genrules.sh: Use > instead of >> Michal Soltys
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110523230507.GC2659@nb.net.home \
--to=kzak-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=soltys-R61QfzASbfY@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.