From: Michael Evans <mjevans1983@gmail.com>
To: Nigel Cunningham <ncunningham@crca.org.au>, linux-raid@vger.kernel.org
Subject: Re: [TuxOnIce-devel] 3.0.99.44 now uploaded.
Date: Sun, 20 Dec 2009 20:08:48 -0800 [thread overview]
Message-ID: <4877c76c0912202008o3c7cc45i96e8bc23a59ddcd4@mail.gmail.com> (raw)
In-Reply-To: <4B2EEACC.2050003@crca.org.au>
[-- Attachment #1: Type: text/plain, Size: 1701 bytes --]
>> On Sun, Dec 20, 2009 at 5:31 PM, Nigel Cunningham
>> <ncunningham@crca.org.au> wrote:
>>> Hi.
>>>
>>> Michael Evans wrote:
>>>> On Sun, Dec 20, 2009 at 5:19 PM, Nigel Cunningham
>>>> <ncunningham@crca.org.au> wrote:
>>>>> Ooooooooh.
>>>>>
>>>>> I'm glad you did all that recording, because you hit a bug I've been
>>>>> trying to find the cause of for aaaaages. I'm going to be staring at
>>>>> this email veeeeeeery carefully! Must stop hitting those vowel keys
>>>>> repeatedly, though. How easily can you reproduce that?
>>>>>
>>>>> Nigel
>>>>>
>>>> I really am not sure. This was the first time I've noticed that
>>>> particular failure. Any suggestions on configuration or code
>>>> bisections?
>>> Not yet - still reading carefully. And I should be getting on with other
>>> things, so I might be a while (sorry!). I wouldn't worry too much about
>>> reproducing it. I'm hoping I have enough here to figure it out.
>>>
>>> The double logging just makes it a bit harder to read.
>>>
>>> Thanks!
>>>
>>> Nigel
>>>
On the very next try it happened again. I'm using this perl script to
filter out most of the more complicated duplicate cases.
I'll look at this later, I really need to take care of something else.
./plfilter.pl < cycle2.log | sed -e '/Writing: device/d;/Reading:
device/d' > cycle2.txt
#!/usr/bin/perl
use strict;
use warnings;
my @used;
my $ii;
for ($ii=8; $ii > 0; $ii--) {
$used[$ii - 1] = "";
}
outer: foreach (<main::stdin>) {
for ($ii=0; $ii < 8; $ii++) {
next outer if ($_ eq $used[$ii]);
}
for ($ii=8; $ii > 0; $ii--) {
$used[$ii] = $used[$ii - 1];
}
$used[0] = $_;
print $_;
}
[-- Attachment #2: cycle2.txt.lzma --]
[-- Type: application/x-lzma, Size: 13521 bytes --]
parent reply other threads:[~2009-12-21 4:08 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <4B2EEACC.2050003@crca.org.au>]
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=4877c76c0912202008o3c7cc45i96e8bc23a59ddcd4@mail.gmail.com \
--to=mjevans1983@gmail.com \
--cc=linux-raid@vger.kernel.org \
--cc=ncunningham@crca.org.au \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).