From: NeilBrown <neilb@cse.unsw.edu.au>
To: Marcelo Tosatti <marcelo@conectiva.com.br>
Cc: linux-raid@vger.kernel.org
Subject: [PATCH] md - 1 of 3 - Fix bug in /proc/mdstat
Date: Wed, 18 Jun 2003 10:28:46 +1000 [thread overview]
Message-ID: <E19SQog-0000Vc-00@notabene> (raw)
[These 3 patches for 2.4.22-pre - thanks]
If /proc/mdstat is large, or reads are for a small size,
then the last line of /proc/mdstat is repeated nearly 65536 times.
This patch will fix it.
diff ./drivers/md/md.c~current~ ./drivers/md/md.c
--- ./drivers/md/md.c~current~ 2003-06-18 10:02:57.000000000 +1000
+++ ./drivers/md/md.c 2003-06-18 10:02:57.000000000 +1000
@@ -3155,7 +3155,7 @@ static void *md_seq_start(struct seq_fil
loff_t l = *pos;
mddev_t *mddev;
- if (l > 0x10000)
+ if (l >= 0x10000)
return NULL;
if (!l--)
/* header */
@@ -3166,7 +3166,9 @@ static void *md_seq_start(struct seq_fil
mddev = list_entry(tmp, mddev_t, all_mddevs);
return mddev;
}
- return (void*)2;/* tail */
+ if (!l--)
+ return (void*)2;/* tail */
+ return NULL;
}
static void *md_seq_next(struct seq_file *seq, void *v, loff_t *pos)
reply other threads:[~2003-06-18 0:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=E19SQog-0000Vc-00@notabene \
--to=neilb@cse.unsw.edu.au \
--cc=linux-raid@vger.kernel.org \
--cc=marcelo@conectiva.com.br \
/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