From: Vlastimil Babka <vbabka@suse.cz> To: Michal Hocko <mhocko@kernel.org>, Andrew Morton <akpm@linux-foundation.org> Cc: David Rientjes <rientjes@google.com>, Mel Gorman <mgorman@suse.de>, Johannes Weiner <hannes@cmpxchg.org>, Al Viro <viro@zeniv.linux.org.uk>, linux-mm@kvack.org, LKML <linux-kernel@vger.kernel.org>, Michal Hocko <mhocko@suse.com>, Tom Herbert <tom@herbertland.com>, Eric Dumazet <eric.dumazet@gmail.com> Subject: Re: [PATCH 4/9] ila: simplify a strange allocation pattern Date: Mon, 30 Jan 2017 16:21:08 +0100 Message-ID: <7d8d27b2-2556-efb1-f319-666133014f2b@suse.cz> (raw) In-Reply-To: <20170130094940.13546-5-mhocko@kernel.org> On 01/30/2017 10:49 AM, Michal Hocko wrote: > From: Michal Hocko <mhocko@suse.com> > > alloc_ila_locks seemed to c&p from alloc_bucket_locks allocation > pattern which is quite unusual. The default allocation size is 320 * > sizeof(spinlock_t) which is sub page unless lockdep is enabled when the > performance benefit is really questionable and not worth the subtle code > IMHO. Also note that the context when we call ila_init_net (modprobe or > a task creating a net namespace) has to be properly configured. > > Let's just simplify the code and use kvmalloc helper which is a > transparent way to use kmalloc with vmalloc fallback. > > Cc: Tom Herbert <tom@herbertland.com> > Cc: Eric Dumazet <eric.dumazet@gmail.com> > Signed-off-by: Michal Hocko <mhocko@suse.com> Acked-by: Vlastimil Babka <vbabka@suse.cz> > --- > net/ipv6/ila/ila_xlat.c | 8 +------- > 1 file changed, 1 insertion(+), 7 deletions(-) > > diff --git a/net/ipv6/ila/ila_xlat.c b/net/ipv6/ila/ila_xlat.c > index af8f52ee7180..2fd5ca151dcf 100644 > --- a/net/ipv6/ila/ila_xlat.c > +++ b/net/ipv6/ila/ila_xlat.c > @@ -41,13 +41,7 @@ static int alloc_ila_locks(struct ila_net *ilan) > size = roundup_pow_of_two(nr_pcpus * LOCKS_PER_CPU); > > if (sizeof(spinlock_t) != 0) { > -#ifdef CONFIG_NUMA > - if (size * sizeof(spinlock_t) > PAGE_SIZE) > - ilan->locks = vmalloc(size * sizeof(spinlock_t)); > - else > -#endif > - ilan->locks = kmalloc_array(size, sizeof(spinlock_t), > - GFP_KERNEL); > + ilan->locks = kvmalloc(size * sizeof(spinlock_t), GFP_KERNEL); > if (!ilan->locks) > return -ENOMEM; > for (i = 0; i < size; i++) > -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply index Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top 2017-01-30 9:49 [PATCH 0/6 v3] kvmalloc Michal Hocko 2017-01-30 9:49 ` [PATCH 1/9] mm: introduce kv[mz]alloc helpers Michal Hocko 2017-01-30 9:49 ` [PATCH 2/9] mm: support __GFP_REPEAT in kvmalloc_node for >32kB Michal Hocko 2017-01-30 9:49 ` [PATCH 3/9] rhashtable: simplify a strange allocation pattern Michal Hocko 2017-01-30 14:04 ` Vlastimil Babka 2017-01-30 9:49 ` [PATCH 4/9] ila: " Michal Hocko 2017-01-30 15:21 ` Vlastimil Babka [this message] 2017-01-30 9:49 ` [PATCH 5/9] treewide: use kv[mz]alloc* rather than opencoded variants Michal Hocko 2017-01-30 10:21 ` Leon Romanovsky 2017-01-30 16:14 ` Vlastimil Babka 2017-01-30 19:24 ` Kees Cook 2017-01-30 9:49 ` [PATCH 6/9] net: use kvmalloc with __GFP_REPEAT rather than open coded variant Michal Hocko 2017-01-30 16:36 ` Vlastimil Babka 2017-01-30 9:49 ` [PATCH 7/9] md: use kvmalloc rather than opencoded variant Michal Hocko 2017-01-30 16:42 ` Vlastimil Babka 2017-02-01 17:29 ` Mikulas Patocka 2017-02-01 17:58 ` Michal Hocko 2017-01-30 9:49 ` [PATCH 8/9] bcache: use kvmalloc Michal Hocko 2017-01-30 16:47 ` Vlastimil Babka 2017-01-30 17:25 ` Michal Hocko 2017-01-30 9:49 ` [PATCH 9/9] net, bpf: use kvzalloc helper Michal Hocko 2017-01-30 17:20 ` Michal Hocko 2017-02-05 10:23 ` [PATCH 0/6 v3] kvmalloc Michal Hocko 2017-03-06 10:30 [PATCH 0/6 v5] kvmalloc Michal Hocko 2017-03-06 10:30 ` [PATCH 4/9] ila: simplify a strange allocation pattern Michal Hocko
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=7d8d27b2-2556-efb1-f319-666133014f2b@suse.cz \ --to=vbabka@suse.cz \ --cc=akpm@linux-foundation.org \ --cc=eric.dumazet@gmail.com \ --cc=hannes@cmpxchg.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mm@kvack.org \ --cc=mgorman@suse.de \ --cc=mhocko@kernel.org \ --cc=mhocko@suse.com \ --cc=rientjes@google.com \ --cc=tom@herbertland.com \ --cc=viro@zeniv.linux.org.uk \ /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
Linux-mm Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/linux-mm/0 linux-mm/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 linux-mm linux-mm/ https://lore.kernel.org/linux-mm \ linux-mm@kvack.org public-inbox-index linux-mm Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kvack.linux-mm AGPL code for this site: git clone https://public-inbox.org/public-inbox.git