From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932510AbbA0Q5o (ORCPT ); Tue, 27 Jan 2015 11:57:44 -0500 Received: from resqmta-po-02v.sys.comcast.net ([96.114.154.161]:40336 "EHLO resqmta-po-02v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932446AbbA0Q5i (ORCPT ); Tue, 27 Jan 2015 11:57:38 -0500 Date: Tue, 27 Jan 2015 10:57:36 -0600 (CST) From: Christoph Lameter X-X-Sender: cl@gentwo.org To: Joonsoo Kim cc: akpm@linuxfoundation.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, penberg@kernel.org, iamjoonsoo@lge.com, Jesper Dangaard Brouer Subject: Re: [RFC 1/3] Slab infrastructure for array operations In-Reply-To: <20150127082132.GE11358@js1304-P5Q-DELUXE> Message-ID: References: <20150123213727.142554068@linux.com> <20150123213735.590610697@linux.com> <20150127082132.GE11358@js1304-P5Q-DELUXE> Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 27 Jan 2015, Joonsoo Kim wrote: > IMHO, exposing these options is not a good idea. It's really > implementation specific. And, this flag won't show consistent performance > according to specific slab implementation. For example, to get best > performance, if SLAB is used, GFP_SLAB_ARRAY_LOCAL would be the best option, > but, for the same purpose, if SLUB is used, GFP_SLAB_ARRAY_NEW would > be the best option. And, performance could also depend on number of objects > and size. Why would slab show a better performance? SLUB also can have partial allocated pages per cpu and could also get data quite fast if only a minimal number of objects are desired. SLAB is slightly better because the number of cachelines touches stays small due to the arrangement of the freelist on the slab page and the queueing approach that does not involve linked lists. GFP_SLAB_ARRAY new is best for large quantities in either allocator since SLAB also has to construct local metadata structures. > And, overriding gfp flag isn't a good idea. Someday gfp could use > these values and they can't notice that these are used in slab > subsystem with different meaning. We can put a BUILD_BUG_ON in there to ensure that the GFP flags do not get too high. The upper portion of the GFP flags is also used elsewhere. And it is an allocation option so it naturally fits in there.