From: Andrew Morton <akpm@linux-foundation.org>
To: Changli Gao <xiaosuo@gmail.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>,
Jiri Slaby <jslaby@suse.cz>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
Alexey Dobriyan <adobriyan@gmail.com>,
Ingo Molnar <mingo@elte.hu>,
Peter Zijlstra <peterz@infradead.org>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
Avi Kivity <avi@redhat.com>,
Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Subject: Re: [PATCH v2] fs: use kmalloc() to allocate fdmem if possible
Date: Tue, 4 May 2010 15:27:13 -0700 [thread overview]
Message-ID: <20100504152713.0c72a087.akpm@linux-foundation.org> (raw)
In-Reply-To: <1272826920-8899-1-git-send-email-xiaosuo@gmail.com>
On Mon, 3 May 2010 03:02:00 +0800
Changli Gao <xiaosuo@gmail.com> wrote:
> use kmalloc() to allocate fdmem if possible.
>
> vmalloc() is used as a fallback solution for fdmem allocation. A new helper
> function __free_fdtable() is introduced to reduce the lines of code.
>
> A potential bug, vfree() a memory allocated by kmalloc(), is fixed.
>
Seems a reasonable thing to do. It might also be reasonable to make
vmalloc() try kmalloc() first, but that's a separate exercise.
> ----
> fs/file.c | 55 ++++++++++++++++++++++---------------------------------
> 1 file changed, 22 insertions(+), 33 deletions(-)
> diff --git a/fs/file.c b/fs/file.c
> index 34bb7f7..9af31ae 100644
> --- a/fs/file.c
> +++ b/fs/file.c
> @@ -39,28 +39,27 @@ int sysctl_nr_open_max = 1024 * 1024; /* raised later */
> */
> static DEFINE_PER_CPU(struct fdtable_defer, fdtable_defer_list);
>
> -static inline void * alloc_fdmem(unsigned int size)
> +static inline void *alloc_fdmem(unsigned int size)
> {
> - if (size <= PAGE_SIZE)
> - return kmalloc(size, GFP_KERNEL);
> - else
> - return vmalloc(size);
> + void *data;
> +
> + data = kmalloc(size, GFP_KERNEL);
This most definitely should have __GFP_NOWARN.
> + if (data != NULL)
> + return data;
> +
> + return vmalloc(size);
> }
>
> -static inline void free_fdarr(struct fdtable *fdt)
> +static inline void free_fdmem(void *ptr)
> {
> - if (fdt->max_fds <= (PAGE_SIZE / sizeof(struct file *)))
> - kfree(fdt->fd);
> - else
> - vfree(fdt->fd);
> + is_vmalloc_addr(ptr) ? vfree(ptr) : kfree(ptr);
> }
>
> -static inline void free_fdset(struct fdtable *fdt)
> +static inline void __free_fdtable(struct fdtable *fdt)
> {
> - if (fdt->max_fds <= (PAGE_SIZE * BITS_PER_BYTE / 2))
> - kfree(fdt->open_fds);
> - else
> - vfree(fdt->open_fds);
> + free_fdmem(fdt->fd);
> + free_fdmem(fdt->open_fds);
> + kfree(fdt);
> }
And these should be uninlined - they're too large to be inlined.
My version of gcc seems to just uninline them anyway, but forcing them
to be inlined with __always_inline indeed causes 70-80 bytes more text,
and we figure that larger text generally causes a slower kernel due to
cache eviction effects.
next prev parent reply other threads:[~2010-05-04 22:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-02 19:02 [PATCH v2] fs: use kmalloc() to allocate fdmem if possible Changli Gao
2010-05-04 22:27 ` Andrew Morton [this message]
2010-05-05 7:18 ` Jiri Slaby
2010-05-05 7:33 ` Eric Dumazet
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=20100504152713.0c72a087.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=adobriyan@gmail.com \
--cc=avi@redhat.com \
--cc=jslaby@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=paulmck@linux.vnet.ibm.com \
--cc=penguin-kernel@i-love.sakura.ne.jp \
--cc=peterz@infradead.org \
--cc=viro@zeniv.linux.org.uk \
--cc=xiaosuo@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).