From: Tao Ma <tao.ma@oracle.com>
To: Amerigo Wang <amwang@redhat.com>
Cc: linux-kernel@vger.kernel.org, Jeff Mahoney <jeffm@suse.com>,
Yan Zheng <zheng.yan@oracle.com>, Josef Bacik <jbacik@redhat.com>,
Arjan <arjan@infradead.org>, Chris Mason <chris.mason@oracle.com>,
akpm@linux-foundation.org, linux-btrfs@vger.kernel.org,
Sven Wegener <sven.wegener@stealer.net>
Subject: Re: [Patch v2] btrfs: use file_remove_suid() after i_mutex is held
Date: Mon, 06 Jul 2009 15:42:51 +0800 [thread overview]
Message-ID: <4A51AAFB.1000601@oracle.com> (raw)
In-Reply-To: <20090706072043.6555.13669.sendpatchset@localhost.localdomain>
Hi Amerigo,
Amerigo Wang wrote:
> V1 -> V2:
> Move kmalloc() before mutex_lock(), suggested by Arjan.
>
> file_remove_suid() should be called with i_mutex held,
> file_update_time() too. So move them after mutex_lock().
>
> Plus, check the return value of kmalloc().
>
> Signed-off-by: WANG Cong <amwang@redhat.com>
> Cc: Arjan <arjan@infradead.org>
> Cc: Chris Mason <chris.mason@oracle.com>
> Cc: Yan Zheng <zheng.yan@oracle.com>
> Cc: Sven Wegener <sven.wegener@stealer.net>
> Cc: Josef Bacik <jbacik@redhat.com>
> Cc: Jeff Mahoney <jeffm@suse.com>
>
> ---
> diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
> index 7c3cd24..09ef5d6 100644
> --- a/fs/btrfs/file.c
> +++ b/fs/btrfs/file.c
> @@ -944,14 +944,17 @@ static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
> if (count == 0)
> goto out_nolock;
>
> + pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
> + if (!pages)
> + goto out_nolock;
I guess you need to set err to -ENOMEM here so that the caller knows
what's wrong. With your patch, this function just return 0(since
num_written and err are both 0) with no error, and I guess it is worse
than kernel BUG out when the NULL pages is used later.
Regards,
Tao
next prev parent reply other threads:[~2009-07-06 7:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-06 7:18 [Patch v2] btrfs: use file_remove_suid() after i_mutex is held Amerigo Wang
2009-07-06 7:42 ` Tao Ma [this message]
2009-07-06 9:12 ` Amerigo Wang
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=4A51AAFB.1000601@oracle.com \
--to=tao.ma@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=amwang@redhat.com \
--cc=arjan@infradead.org \
--cc=chris.mason@oracle.com \
--cc=jbacik@redhat.com \
--cc=jeffm@suse.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sven.wegener@stealer.net \
--cc=zheng.yan@oracle.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.