From nobody Tue Apr 7 03:50:46 2026 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 545FBECAAD3 for ; Wed, 31 Aug 2022 05:27:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229518AbiHaF1u convert rfc822-to-8bit (ORCPT ); Wed, 31 Aug 2022 01:27:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37920 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbiHaF1r (ORCPT ); Wed, 31 Aug 2022 01:27:47 -0400 Received: from mx0a-00082601.pphosted.com (mx0b-00082601.pphosted.com [67.231.153.30]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 32B03AB07D for ; Tue, 30 Aug 2022 22:27:47 -0700 (PDT) Received: from pps.filterd (m0089730.ppops.net [127.0.0.1]) by m0089730.ppops.net (8.17.1.5/8.17.1.5) with ESMTP id 27V0pjRe002560 for ; Tue, 30 Aug 2022 22:27:46 -0700 Received: from maileast.thefacebook.com ([163.114.130.16]) by m0089730.ppops.net (PPS) with ESMTPS id 3j9hpwp297-3 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 30 Aug 2022 22:27:46 -0700 Received: from twshared2273.16.frc2.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:83::7) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Tue, 30 Aug 2022 22:27:44 -0700 Received: by devbig932.frc1.facebook.com (Postfix, from userid 4523) id 209EFC44FB53; Tue, 30 Aug 2022 22:27:39 -0700 (PDT) From: Song Liu To: , CC: , Song Liu , Uladzislau Rezki , Baoquan He , Andrew Morton Subject: [PATCH] mm/vmalloc: Extend find_vmap_lowest_match_check with extra arguments Date: Tue, 30 Aug 2022 22:27:34 -0700 Message-ID: <20220831052734.3423079-1-song@kernel.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe X-Proofpoint-ORIG-GUID: WYxidV84ob5_UFWUm7tjoAZbMEnrpCkY X-Proofpoint-GUID: WYxidV84ob5_UFWUm7tjoAZbMEnrpCkY X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.895,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-08-31_01,2022-08-30_01,2022-06-22_01 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" find_vmap_lowest_match() is now able to handle different roots. Make similar changes to find_vmap_lowest_match_check() and find_vmap_lowest_linear_match() to handle different trees. Fixes: f9863be49312 ("mm/vmalloc: extend __alloc_vmap_area() with extra arg= uments") Cc: Uladzislau Rezki (Sony) Cc: Baoquan He Cc: Andrew Morton Signed-off-by: Song Liu Reviewed-by: Baoquan He Reviewed-by: Uladzislau Rezki (Sony) --- mm/vmalloc.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mm/vmalloc.c b/mm/vmalloc.c index dd6cdb201195..088b421601c4 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -1300,12 +1300,12 @@ find_vmap_lowest_match(struct rb_root *root, unsign= ed long size, #include =20 static struct vmap_area * -find_vmap_lowest_linear_match(unsigned long size, +find_vmap_lowest_linear_match(struct list_head *head, unsigned long size, unsigned long align, unsigned long vstart) { struct vmap_area *va; =20 - list_for_each_entry(va, &free_vmap_area_list, list) { + list_for_each_entry(va, head, list) { if (!is_within_this_va(va, size, align, vstart)) continue; =20 @@ -1316,7 +1316,8 @@ find_vmap_lowest_linear_match(unsigned long size, } =20 static void -find_vmap_lowest_match_check(unsigned long size, unsigned long align) +find_vmap_lowest_match_check(struct rb_root *root, struct list_head *head, + unsigned long size, unsigned long align) { struct vmap_area *va_1, *va_2; unsigned long vstart; @@ -1325,8 +1326,8 @@ find_vmap_lowest_match_check(unsigned long size, unsi= gned long align) get_random_bytes(&rnd, sizeof(rnd)); vstart =3D VMALLOC_START + rnd; =20 - va_1 =3D find_vmap_lowest_match(size, align, vstart, false); - va_2 =3D find_vmap_lowest_linear_match(size, align, vstart); + va_1 =3D find_vmap_lowest_match(root, size, align, vstart, false); + va_2 =3D find_vmap_lowest_linear_match(head, size, align, vstart); =20 if (va_1 !=3D va_2) pr_emerg("not lowest: t: 0x%p, l: 0x%p, v: 0x%lx\n", @@ -1513,7 +1514,7 @@ __alloc_vmap_area(struct rb_root *root, struct list_h= ead *head, return vend; =20 #if DEBUG_AUGMENT_LOWEST_MATCH_CHECK - find_vmap_lowest_match_check(size, align); + find_vmap_lowest_match_check(root, head, size, align); #endif =20 return nva_start_addr; --=20 2.30.2