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 A1308C7EE2E for ; Tue, 13 Jun 2023 02:19:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238930AbjFMCTX (ORCPT ); Mon, 12 Jun 2023 22:19:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39684 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231476AbjFMCTS (ORCPT ); Mon, 12 Jun 2023 22:19:18 -0400 Received: from out-51.mta1.migadu.com (out-51.mta1.migadu.com [95.215.58.51]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 658EF10EA for ; Mon, 12 Jun 2023 19:19:16 -0700 (PDT) Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1686622752; 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=uou5ls9pyCqhIbOJJaAoM7xAehoXLMNstLhmTAo7OhU=; b=IrhSsn/xh3QD55/RzjLcma7iGkedEPhSXluN8rW/zEUtAAbP5Cs9WL0RMZVdf6gIGnCUEW GW5HaK/yDppZBwthBrUQilCSAh9aHpt+nQY8af4n8rFyceUVHp+aEnu7u7yvS8OynObOrW IUw+6wD3JxM2JSRjIkgmjKbBrgangWw= MIME-Version: 1.0 Subject: Re: [PATCH] [mm-unstable] mm/folio: Replace set_compound_order with folio_set_order X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20230612093514.689846-1-tsahu@linux.ibm.com> Date: Tue, 13 Jun 2023 10:18:29 +0800 Cc: Linux Memory Management List , Andrew Morton , Mike Kravetz , "Aneesh Kumar K . V" , "Matthew Wilcox (Oracle)" , Sidhartha Kumar , Gerald Schaefer , linux-kernel@vger.kernel.org, jaypatel@linux.ibm.com Content-Transfer-Encoding: 7bit Message-Id: <33402181-6C78-4380-A02A-A36EDEBE4F30@linux.dev> References: <20230612093514.689846-1-tsahu@linux.ibm.com> To: Tarun Sahu X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > On Jun 12, 2023, at 17:35, Tarun Sahu wrote: > > The patch [1] removed the need for special handling of order = 0 > in folio_set_order. Now, folio_set_order and set_compound_order becomes > similar function. This patch removes the set_compound_order and uses > folio_set_order instead. > > [1] https://lore.kernel.org/all/20230609183032.13E08C433D2@smtp.kernel.org/ > > Signed-off-by: Tarun Sahu Reviewed-by: Muchun Song Thanks.