From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: NeilBrown <neilb@suse.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>,
Andreas Dilger <andreas.dilger@intel.com>,
James Simmons <jsimmons@infradead.org>,
lkml <linux-kernel@vger.kernel.org>,
lustre <lustre-devel@lists.lustre.org>
Subject: [lustre-devel] [PATCH 03/15] staging: lustre: replace simple cases of LIBCFS_ALLOC with kzalloc.
Date: Mon, 8 Jan 2018 15:51:57 +0100 [thread overview]
Message-ID: <20180108145157.GA32570@kroah.com> (raw)
In-Reply-To: <151355799030.6200.8100283223734974485.stgit@noble>
On Mon, Dec 18, 2017 at 11:46:30AM +1100, NeilBrown wrote:
> All usages of the form
> LIBCFS_ALLOC(variable, sizeof(variable))
> or
> LIBCFS_ALLOC(variable, sizeof(variable's-type))
>
> are changed to
> variable = kzalloc(sizeof(...), GFP_NOFS);
>
> Similarly, all
> LIBCFS_FREE(variable, sizeof(variable))
> become
> kfree(variable);
>
> None of these need the vmalloc option, or any of the other minor
> benefits of LIBCFS_ALLOC().
>
> Signed-off-by: NeilBrown <neilb@suse.com>
As this broke the kbuild system, I'll stop here in this patch series.
Can you please fix it up, rebase and resend the remaining ones in this
series?
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: NeilBrown <neilb@suse.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>,
Andreas Dilger <andreas.dilger@intel.com>,
James Simmons <jsimmons@infradead.org>,
lkml <linux-kernel@vger.kernel.org>,
lustre <lustre-devel@lists.lustre.org>
Subject: Re: [PATCH 03/15] staging: lustre: replace simple cases of LIBCFS_ALLOC with kzalloc.
Date: Mon, 8 Jan 2018 15:51:57 +0100 [thread overview]
Message-ID: <20180108145157.GA32570@kroah.com> (raw)
In-Reply-To: <151355799030.6200.8100283223734974485.stgit@noble>
On Mon, Dec 18, 2017 at 11:46:30AM +1100, NeilBrown wrote:
> All usages of the form
> LIBCFS_ALLOC(variable, sizeof(variable))
> or
> LIBCFS_ALLOC(variable, sizeof(variable's-type))
>
> are changed to
> variable = kzalloc(sizeof(...), GFP_NOFS);
>
> Similarly, all
> LIBCFS_FREE(variable, sizeof(variable))
> become
> kfree(variable);
>
> None of these need the vmalloc option, or any of the other minor
> benefits of LIBCFS_ALLOC().
>
> Signed-off-by: NeilBrown <neilb@suse.com>
As this broke the kbuild system, I'll stop here in this patch series.
Can you please fix it up, rebase and resend the remaining ones in this
series?
thanks,
greg k-h
next prev parent reply other threads:[~2018-01-08 14:51 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-18 0:46 [lustre-devel] [PATCH SERIES 1: 00/15] staging:lustre: convert most LIBCFS*ALLOC to k*malloc NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 05/15] staging: lustre: lnet: selftest: don't allocate small strings NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 09/15] staging: lustre: more LIBCFS_ALLOC conversions to GFP_KERNEL allocations NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 14/15] staging: lustre: opencode LIBCFS_ALLOC_ATOMIC calls NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 07/15] staging: lustre: change some LIBCFS_ALLOC calls to k?alloc(GFP_KERNEL) NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 11/15] staging: lustre: lnet-route: use kmalloc for small allocation NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 13/15] staging: lustre: cfs_percpt_alloc: use kvmalloc(GFP_KERNEL) NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 15/15] staging: lustre: remove LIBCFS_ALLOC and LIBCFS_ALLOC_ATOMIC NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 12/15] staging: lustre: use kmalloc for allocating ksock_tx NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 10/15] staging: lustre: more conversions to GFP_KERNEL allocations NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 08/15] staging: lustre: Convert more LIBCFS_ALLOC allocation to direct GFP_KERNEL NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 7:13 ` [lustre-devel] " NeilBrown
2017-12-18 7:13 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 02/15] staging: lustre: lnet: discard CFS_ALLOC_PTR NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 04/15] staging: lustre: lnet: switch to cpumask_var_t NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 03/15] staging: lustre: replace simple cases of LIBCFS_ALLOC with kzalloc NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-20 4:12 ` [lustre-devel] " kbuild test robot
2017-12-20 4:12 ` kbuild test robot
2017-12-20 7:14 ` [lustre-devel] " kbuild test robot
2017-12-20 7:14 ` kbuild test robot
2017-12-21 9:40 ` [lustre-devel] " kbuild test robot
2017-12-21 9:40 ` kbuild test robot
2017-12-21 9:40 ` [lustre-devel] [PATCH] staging: lustre: fix ifnullfree.cocci warnings kbuild test robot
2017-12-21 9:40 ` kbuild test robot
2018-01-08 14:51 ` Greg Kroah-Hartman [this message]
2018-01-08 14:51 ` [PATCH 03/15] staging: lustre: replace simple cases of LIBCFS_ALLOC with kzalloc Greg Kroah-Hartman
2018-01-08 21:39 ` [lustre-devel] " NeilBrown
2018-01-08 21:39 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 06/15] staging: lustre: lnet: use kmalloc/kvmalloc in router_proc NeilBrown
2017-12-18 0:46 ` NeilBrown
2017-12-18 0:46 ` [lustre-devel] [PATCH 01/15] staging: lustre: lnet-lib: opencode some alloc/free functions NeilBrown
2017-12-18 0:46 ` NeilBrown
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=20180108145157.GA32570@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=andreas.dilger@intel.com \
--cc=jsimmons@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lustre-devel@lists.lustre.org \
--cc=neilb@suse.com \
--cc=oleg.drokin@intel.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.