Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp1268788pxb; Thu, 4 Mar 2021 07:25:45 -0800 (PST) X-Google-Smtp-Source: ABdhPJyrveoXjIlz6b32pZR3ZQdwIpE6C22JO2PqlKn7KZzKQ+TcVLPpR+Cb1qC+gSiyxdRfD84C X-Received: by 2002:a17:906:33d9:: with SMTP id w25mr4997969eja.413.1614871545393; Thu, 04 Mar 2021 07:25:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1614871545; cv=none; d=google.com; s=arc-20160816; b=NFMHFvrJu3BiI13wj1IjVmpxPbphfbYpGhqCnQ/bDJOkqi+fO2giBoOpK1o+LPpXj7 kB48c8xlOoGJlEzihJkJWjTFcjHljEMlI+Mk7slZt4fNIlNkMOoNYLkNjXx3P355t4o5 Zw+0eQTwug1Kh/yX09cBHAPF74WZqBtlHETCOgeH4Q8sv8Y73FeM9Qx0H5zWM2sP8rFj Nsz51s3H2pE98My3BvhIPleKrk4pDS7aX+FYgoLokDLoYze+C2Gm3HjB1Ls7P45ZNJ04 GBOnq5PKI8qCevDN+0suk3q10J1OTcmzWWIjYQdvy2r4dPEimp+c7PbsHMFSUEoCzxx2 aQwg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=sLOOiIU6NLCwhZNO2pOpbi0lqxTgLF96DizMZIJptn8=; b=aFOR9NXYbR1rUhFPVbYUTwZRd6JiWZONHzbM5GM1hbn84PaKy7sAmjfkvcu/DeilMl w82XdbVm6HgcPpJs1frnwAaqGbR/QECUkPR9r+OJYgT8oOdMlOM5zjHRjBhMrlJVayw/ lh4t224k7xdG1HtMqsk5aF9VTUUsWX+fQ9n9CJ9xUj3bKqVA2dVHgFRKYiA9bneVhtGZ Wnhu7WZDpIw3ZXhBIiDwFiG0n7qOAIu7KGQJ/fJjRZfJT7vAW5A+xHXINwBSy2qlOa1w KwCUZsZYwlZ7uXCArIkwSgn9N5MNCE1lpTFerkOMqq/wb1WMtshH5FlT11oIHXgf24mH m1jw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u20si10479250ejr.511.2021.03.04.07.25.22; Thu, 04 Mar 2021 07:25:45 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234131AbhCDHoC (ORCPT + 99 others); Thu, 4 Mar 2021 02:44:02 -0500 Received: from szxga06-in.huawei.com ([45.249.212.32]:13430 "EHLO szxga06-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233627AbhCDHng (ORCPT ); Thu, 4 Mar 2021 02:43:36 -0500 Received: from DGGEMS412-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga06-in.huawei.com (SkyGuard) with ESMTP id 4DrjVM2BJyzjV7R; Thu, 4 Mar 2021 15:41:31 +0800 (CST) Received: from huawei.com (10.175.112.208) by DGGEMS412-HUB.china.huawei.com (10.3.19.212) with Microsoft SMTP Server id 14.3.498.0; Thu, 4 Mar 2021 15:42:44 +0800 From: Zhou Guanghui To: , CC: , , , , , , , , , , , Subject: [PATCH v2 2/2] mm/memcg: set memcg when split page Date: Thu, 4 Mar 2021 07:40:53 +0000 Message-ID: <20210304074053.65527-3-zhouguanghui1@huawei.com> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20210304074053.65527-1-zhouguanghui1@huawei.com> References: <20210304074053.65527-1-zhouguanghui1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.112.208] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org As described in the split_page function comment, for the non-compound high order page, the sub-pages must be freed individually. If the memcg of the fisrt page is valid, the tail pages cannot be uncharged when be freed. For example, when alloc_pages_exact is used to allocate 1MB continuous physical memory, 2MB is charged(kmemcg is enabled and __GFP_ACCOUNT is set). When make_alloc_exact free the unused 1MB and free_pages_exact free the applied 1MB, actually, only 4KB(one page) is uncharged. Therefore, the memcg of the tail page needs to be set when split page. Signed-off-by: Zhou Guanghui --- mm/page_alloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 3e4b29ee2b1e..3ed783e25c3c 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -3310,6 +3310,7 @@ void split_page(struct page *page, unsigned int order) for (i = 1; i < (1 << order); i++) set_page_refcounted(page + i); split_page_owner(page, 1 << order); + split_page_memcg(page, 1 << order); } EXPORT_SYMBOL_GPL(split_page); -- 2.25.0