All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@infradead.org>
To: Andries Brouwer <aebr@win.tue.nl>
Cc: Jan Kasprzak <kas@informatics.muni.cz>,
	linux-kernel@vger.kernel.org, hch@infradead.org,
	marcelo@conectiva.com.br
Subject: Re: 2.4.20-pre11 /proc/partitions read
Date: Tue, 22 Oct 2002 19:45:14 +0100	[thread overview]
Message-ID: <20021022194514.B3867@infradead.org> (raw)
In-Reply-To: <20021022184034.GA26585@win.tue.nl>; from aebr@win.tue.nl on Tue, Oct 22, 2002 at 08:40:34PM +0200

On Tue, Oct 22, 2002 at 08:40:34PM +0200, Andries Brouwer wrote:
> On Tue, Oct 22, 2002 at 04:19:57PM +0200, Jan Kasprzak wrote:
> 
> > 	I.e. if you read the /proc/partitions in single read() call,
> > it gets read OK. However, if you read() with smaller-sized blocks,
> > you get the truncated contents.
> 
> Having statistics in /proc/partitions leads to such problems.
> Make sure you do not ask for them.

Andries,

have you actually CHECKED whether he has it enabled?

I rather suspect it's the following bug (introduce by me, but not
depend on CONFIG_BLK_STATS):

--- 1.23/drivers/block/genhd.c	Wed Aug 21 10:03:48 2002
+++ edited/drivers/block/genhd.c	Tue Oct 22 20:43:16 2002
@@ -155,13 +155,14 @@
 
 #ifdef CONFIG_PROC_FS
 /* iterator */
-static void *part_start(struct seq_file *s, loff_t *pos)
+static void *part_start(struct seq_file *s, loff_t *ppos)
 {
 	struct gendisk *gp;
+	loff_t pos = *ppos;
 
 	read_lock(&gendisk_lock);
 	for (gp = gendisk_head; gp; gp = gp->next)
-		if (!*pos--)
+		if (!pos--)
 			return gp;
 	return NULL;
 }

  parent reply	other threads:[~2002-10-22 18:39 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-22 14:19 2.4.20-pre11 /proc/partitions read Jan Kasprzak
2002-10-22 15:10 ` Richard B. Johnson
2002-10-22 16:14   ` Jan Kasprzak
2002-10-22 18:40 ` Andries Brouwer
2002-10-22 18:10   ` Marcelo Tosatti
2002-10-23  8:36     ` Jan Kasprzak
2002-10-22 18:45   ` Christoph Hellwig [this message]
2002-10-22 18:59     ` Andries Brouwer
2002-10-22 18:26       ` Marcelo Tosatti
2002-10-22 19:32         ` Andries Brouwer
2002-10-22 19:35           ` Christoph Hellwig
2002-10-22 19:58             ` Andries Brouwer
2002-10-22 20:32               ` Alan Cox
2002-10-23  8:39             ` Jan Kasprzak
2002-10-23  9:13     ` Jan Kasprzak

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=20021022194514.B3867@infradead.org \
    --to=hch@infradead.org \
    --cc=aebr@win.tue.nl \
    --cc=kas@informatics.muni.cz \
    --cc=linux-kernel@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 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.