From: "Michael A. Kangin" <mak@complife.ru> To: ALT Linux sysadmins' discussion <sysadmins@lists.altlinux.org> Subject: Re: [Sysadmins] [грязный хак для объезда] P7: Проблема с softRAID при старте системы Date: Thu, 15 Aug 2013 13:41:30 +0400 Message-ID: <520CA24A.8040203@complife.ru> (raw) In-Reply-To: <520A3ADE.8080901@elserv.msk.su> 13.08.2013 17:55, Alex Moskalenko пишет: > По результатам дискуссии поправил /etc/rc.d/scripts/raidstart следующим > образом: Да, у меня похожий хак вышел: if [ -x "$f" ]; then echo -n "(using mdadm) " for i in 1 2 3 4 5 6 7 8 9 10; do grep -q inactive /proc/mdstat || break echo wait arrays ready... sleep 1s done Тут ждём потому что иногда у меня очень долго стартует модуль для четырёх дисков из восьми всего (они на другом чипе) sleep 1s if grep -q inactive /proc/mdstat ; then problem_md=$(grep inactive /proc/mdstat |cut -f1 -d:) "$f" --stop /dev/$problem_md "$f" --assemble /dev/$problem_md fi return $? fi > --- raidstart.orig 2013-02-07 02:27:40.000000000 +0400 > +++ raidstart 2013-08-13 14:38:03.000000000 +0400 > @@ -32,11 +32,16 @@ > > start_raid_using_mdadm() > { > - local f > + local f arr > > f="$(absolute mdadm 2>/dev/null)" > if [ -x "$f" ]; then > echo -n "(using mdadm) " > +#fix bitmap on ro root fs > + for arr in $(awk '/^m.*: inactive/{print "/dev/"$1}' > /proc/mdstat); do > + "$f" --stop "$arr" > + done > +#end fix > "$f" --assemble --scan > return $? > fi > > То есть тупо останавливаются все найденные массивы в состоянии inactive, > после чего продолжается штатное исполнение - запускается mdadm > --assemble --scan. > > Мыслей о правильном решении проблемы так и не появилось... Думал о 2х > вариантах - 1) не собирать массивы udev'ом вообще или 2) запускать udev > после того, как / будет перемонтирован в rw. Оба варианта не нравятся. > > Еще вариант объезда - не использовать external bitmap. > > Прошу сообщество поделиться мыслями на этот счет. Возможно, есть смысл > завести багу на что-нибудь?... > -- wbr, Michael A. Kangin
next prev parent reply other threads:[~2013-08-15 9:41 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2013-08-08 9:58 [Sysadmins] " Alex Moskalenko 2013-08-08 11:22 ` Michael Shigorin 2013-08-08 11:52 ` Alex Moskalenko 2013-08-11 13:39 ` Michael A. Kangin 2013-08-12 12:40 ` Anton Farygin 2013-08-13 13:55 ` [Sysadmins] [грязный хак для объезда] " Alex Moskalenko 2013-08-13 16:48 ` Michael Shigorin 2013-08-14 10:26 ` Alex Moskalenko 2013-08-14 15:21 ` Michael Shigorin 2013-08-14 11:59 ` Alex Moskalenko 2013-08-15 9:41 ` Michael A. Kangin [this message] 2013-08-18 7:12 ` [Sysadmins] " Vladimir Karpinsky 2013-09-07 8:35 ` Vladimir Karpinsky
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=520CA24A.8040203@complife.ru \ --to=mak@complife.ru \ --cc=sysadmins@lists.altlinux.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
ALT Linux sysadmins discussion This inbox may be cloned and mirrored by anyone: git clone --mirror http://lore.altlinux.org/sysadmins/0 sysadmins/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 sysadmins sysadmins/ http://lore.altlinux.org/sysadmins \ sysadmins@lists.altlinux.org sysadmins@lists.altlinux.ru sysadmins@lists.altlinux.com public-inbox-index sysadmins Example config snippet for mirrors. Newsgroup available over NNTP: nntp://lore.altlinux.org/org.altlinux.lists.sysadmins AGPL code for this site: git clone https://public-inbox.org/public-inbox.git