From: Hans Reiser <reiser@namesys.com>
To: Neil Brown <neilb@suse.de>, vs <vs@thebsh.namesys.com>
Cc: reiserfs-dev@namesys.com, linux-kernel@vger.kernel.org
Subject: Re: Bug in fs/reiserfs/file.c
Date: Tue, 28 Feb 2006 10:53:13 -0800 [thread overview]
Message-ID: <44049C19.40509@namesys.com> (raw)
In-Reply-To: <17411.42877.14972.748051@cse.unsw.edu.au>
Thanks Neil, I'll have vs evaluate and fix this.
Hans
Neil Brown wrote:
>In fs/reiserfs/file.c, in reiserfs_file_write, at line 1400 in
>2.6.16-rc2-mm1 we have
>
> size_t blocks_to_allocate; /* how much blocks we need to allocate for this iteration */
>
>size_t is an unsigned type.
>
>Later (line 1467) we have code like:
>
> blocks_to_allocate =
> reiserfs_prepare_file_region_for_write(inode, pos,
> num_pages,
> write_bytes,
> prepared_pages);
> if (blocks_to_allocate < 0) {
> res = blocks_to_allocate;
> reiserfs_release_claimed_blocks(inode->i_sb,
> num_pages <<
> (PAGE_CACHE_SHIFT -
> inode->i_blkbits));
> break;
> }
>
>
>Spot the bug.... reiserfs_prepare_file_region_for_write can return a
>negative error status, but blocks_to_allocate won't store it, and
>things go wrong.
>
>The actual result if reiserfs_prepare_file_region_for_write returns
>negative is that a subsequent call to
> reiserfs_allocate_blocks_for_region(&th, inode, pos,
> num_pages,
> write_bytes,
> prepared_pages,
> blocks_to_allocate);
>trys to kmalloc an enormous amount of memory
> allocated_blocks = kmalloc((blocks_to_allocate + will_prealloc) *
> sizeof(b_blocknr_t), GFP_NOFS);
>
>and fails so
> if (res) {
> reiserfs_unprepare_pages(prepared_pages, num_pages);
> break;
> }
>
>which tries to unlock the pages in prepared_pages. But
>reiserfs_prepare_file_region_for_write didn't leave any locked pages
>in their (due to it's failure) and try_to_free_buffers BUGs out.
>
>The "obvious" fix it to change the 'size_t' to 'ssize_t', but I'll
>leave to to reiserfs-dev to create and submit a patch....
>
>
>As an aside,
> info gcc
>tells me that '-W' will cause a warning when
>
> * An unsigned value is compared against zero with `<' or `<='.
>
>It doesn't :-(
>
>NeilBrown
>
>
>
>
prev parent reply other threads:[~2006-02-28 18:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-28 1:29 Bug in fs/reiserfs/file.c Neil Brown
2006-02-28 3:55 ` Neil Brown
2006-02-28 18:53 ` Hans Reiser [this message]
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=44049C19.40509@namesys.com \
--to=reiser@namesys.com \
--cc=linux-kernel@vger.kernel.org \
--cc=neilb@suse.de \
--cc=reiserfs-dev@namesys.com \
--cc=vs@thebsh.namesys.com \
/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.