From: Kel Modderman <kel@otaku42.de>
To: Hugh Dickins <hugh@veritas.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Alexey Dobriyan <adobriyan@gmail.com>,
linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: tmpfs: kernel BUG at mm/shmem.c:814
Date: Sun, 27 Jul 2008 10:44:26 +1000 [thread overview]
Message-ID: <200807271044.26566.kel@otaku42.de> (raw)
In-Reply-To: <Pine.LNX.4.64.0807262318050.25997@blonde.site>
Hi Hugh,
On Sunday 27 July 2008 08:28:32 Hugh Dickins wrote:
> On Sat, 26 Jul 2008, Kel Modderman wrote:
> >
> > I am able to reproduce the triggering of BUG_ON() in shmem_delete_inode
> > function of mm/shmem.c, line 814, while testing the insserv program in a dir
> > on a tmpfs mount point with Linux 2.6.25.x and 2.6.26.
>
> Outstanding bug report and steps to reproduce: thank you so much.
> You should find this fixes it; though we may have some more work to
> do, maybe other filesystems are surprised by readahead on directories.
Ack, confirmed.
Thanks for such a prompt fix.
>
>
> [PATCH] tmpfs: fix kernel BUG in shmem_delete_inode
>
> SuSE's insserve initscript ordering program hits kernel BUG at mm/shmem.c:814
> on 2.6.26. It's using posix_fadvise on directories, and the shmem_readpage
> method added in 2.6.23 is letting POSIX_FADV_WILLNEED allocate useless pages
> to a tmpfs directory, incrementing i_blocks count but never decrementing it.
>
> Fix this by assigning shmem_aops (pointing to readpage and writepage and
> set_page_dirty) only when it's needed, on a regular file or a long symlink.
>
> Many thanks to Kel for outstanding bugreport and steps to reproduce it.
>
> Reported-by: Kel Modderman <kel@otaku42.de>
> Signed-off-by: Hugh Dickins <hugh@veritas.com>
> Cc: stable@kernel.org
> ---
> Other filesystems... ramfs looks as if it would allocate useless pages too,
> but should free them, and wouldn't BUG; are there other filesystems to be
> surprised by readahead on directories? I have not looked through yet.
>
> mm/shmem.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> --- 2.6.26-git/mm/shmem.c 2008-07-26 12:33:28.000000000 +0100
> +++ linux/mm/shmem.c 2008-07-26 22:46:28.000000000 +0100
> @@ -1513,7 +1513,6 @@ shmem_get_inode(struct super_block *sb,
> inode->i_uid = current->fsuid;
> inode->i_gid = current->fsgid;
> inode->i_blocks = 0;
> - inode->i_mapping->a_ops = &shmem_aops;
> inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
> inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
> inode->i_generation = get_seconds();
> @@ -1528,6 +1527,7 @@ shmem_get_inode(struct super_block *sb,
> init_special_inode(inode, mode, dev);
> break;
> case S_IFREG:
> + inode->i_mapping->a_ops = &shmem_aops;
> inode->i_op = &shmem_inode_operations;
> inode->i_fop = &shmem_file_operations;
> mpol_shared_policy_init(&info->policy,
> @@ -1929,6 +1929,7 @@ static int shmem_symlink(struct inode *d
> return error;
> }
> unlock_page(page);
> + inode->i_mapping->a_ops = &shmem_aops;
> inode->i_op = &shmem_symlink_inode_operations;
> kaddr = kmap_atomic(page, KM_USER0);
> memcpy(kaddr, symname, len);
>
next prev parent reply other threads:[~2008-07-27 0:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-26 12:10 Kel Modderman
2008-07-26 14:33 ` Alexey Dobriyan
2008-07-26 22:28 ` Hugh Dickins
2008-07-27 0:44 ` Kel Modderman [this message]
2008-07-27 3:31 ` Henrique de Moraes Holschuh
2008-07-27 3:59 ` Hugh Dickins
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=200807271044.26566.kel@otaku42.de \
--to=kel@otaku42.de \
--cc=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=hugh@veritas.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.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
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
all inboxes | Powered by JetHome®