From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DF31FC4167D for ; Tue, 31 Oct 2023 02:22:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232859AbjJaCWk (ORCPT ); Mon, 30 Oct 2023 22:22:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48190 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229766AbjJaCWi (ORCPT ); Mon, 30 Oct 2023 22:22:38 -0400 Received: from out-182.mta0.migadu.com (out-182.mta0.migadu.com [91.218.175.182]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9BECFE6 for ; Mon, 30 Oct 2023 19:22:35 -0700 (PDT) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1698718953; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mNw8ul+I6BQ2X/oU0NkDeNQ5/l80DZzthFkS3oH+jYk=; b=expCteQHZceW/SmaSz+BmFkaJAGdNEW1wCgtbeDUk1OT5xzRccWbL5cdW1Xj3Ch8TGa6tg 3I/Fb1gXzDAWVm7+HbDI2cEtQWOojBhVZr5MbLE79as2L58cPkOYk3Z83ICzgkPAg6C/hw ApfKl1WnLf7GiZalw+XhAcP2jTEdNU0= Date: Tue, 31 Oct 2023 10:22:01 +0800 MIME-Version: 1.0 Subject: Re: [RFC PATCH v3 4/7] slub: Change get_partial() interfaces to return slab Content-Language: en-US To: Vlastimil Babka , cl@linux.com, penberg@kernel.org Cc: rientjes@google.com, iamjoonsoo.kim@lge.com, akpm@linux-foundation.org, roman.gushchin@linux.dev, 42.hyeyoo@gmail.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Chengming Zhou References: <20231024093345.3676493-1-chengming.zhou@linux.dev> <20231024093345.3676493-5-chengming.zhou@linux.dev> <2a709f66-41a0-9ab2-9965-6f513f6c0524@suse.cz> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Chengming Zhou In-Reply-To: <2a709f66-41a0-9ab2-9965-6f513f6c0524@suse.cz> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/10/31 00:55, Vlastimil Babka wrote: > On 10/24/23 11:33, chengming.zhou@linux.dev wrote: >> From: Chengming Zhou >> >> We need all get_partial() related interfaces to return a slab, instead >> of returning the freelist (or object). >> >> Use the partial_context.object to return back freelist or object for >> now. This patch shouldn't have any functional changes. >> >> Signed-off-by: Chengming Zhou > > Reviewed-by: Vlastimil Babka > > I think you could even move patches 3/7 and 4/7 to the front of the series, > as cleanups that are useful on their own. > Right, I will move these two to the front in the next version. Thanks!