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 kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A424CCA47B for ; Wed, 8 Jun 2022 03:46:05 +0000 (UTC) Received: by kanga.kvack.org (Postfix) id 55EBF6B0071; Tue, 7 Jun 2022 23:46:04 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 4E6DF6B0072; Tue, 7 Jun 2022 23:46:04 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 387B36B0073; Tue, 7 Jun 2022 23:46:04 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from relay.hostedemail.com (smtprelay0010.hostedemail.com [216.40.44.10]) by kanga.kvack.org (Postfix) with ESMTP id 236996B0071 for ; Tue, 7 Jun 2022 23:46:04 -0400 (EDT) Received: from smtpin10.hostedemail.com (a10.router.float.18 [10.200.18.1]) by unirelay02.hostedemail.com (Postfix) with ESMTP id EF7D7348EA for ; Wed, 8 Jun 2022 03:46:03 +0000 (UTC) X-FDA: 79553680206.10.916535C Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by imf02.hostedemail.com (Postfix) with ESMTP id 6688B8001D for ; Wed, 8 Jun 2022 03:46:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1654659962; 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: in-reply-to:in-reply-to:references:references; bh=YUmAGufRF5e6pAPW7PwCGUiza+JMsiV+6BcB+5BhN0c=; b=bUxo5iatD4bmcCV9JgDSfTFRZDjqm4VEm0PMmfxJNXmei6GFPN2HPqZHWQEm5EfYo+a+4l tauiTEUwVALabtBAj0oiEBrC1sGkhzR2EgPfPcWO7wUxMAf5Wmf+g7fEXAkIVKAp+Ma8my fbjviIf0qjDBxws+vqdWHKl9AyKs4WU= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-191-x8bg9Z3CM7ib8IIcEqdF6A-1; Tue, 07 Jun 2022 23:46:01 -0400 X-MC-Unique: x8bg9Z3CM7ib8IIcEqdF6A-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E0D703806704; Wed, 8 Jun 2022 03:46:00 +0000 (UTC) Received: from localhost (ovpn-12-81.pek2.redhat.com [10.72.12.81]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 351622166B26; Wed, 8 Jun 2022 03:45:59 +0000 (UTC) Date: Wed, 8 Jun 2022 11:45:57 +0800 From: Baoquan He To: "Uladzislau Rezki (Sony)" Cc: Andrew Morton , linux-mm@kvack.org, LKML , Christoph Hellwig , Matthew Wilcox , Nicholas Piggin , Oleksiy Avramchenko Subject: Re: [PATCH 1/5] mm/vmalloc: Make link_va()/unlink_va() common to different rb_root Message-ID: References: <20220607093449.3100-1-urezki@gmail.com> <20220607093449.3100-2-urezki@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220607093449.3100-2-urezki@gmail.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Rspam-User: X-Rspamd-Server: rspam02 X-Rspamd-Queue-Id: 6688B8001D X-Stat-Signature: pwsrr4bzopdttm7cn3636j9b4bu3c36n Authentication-Results: imf02.hostedemail.com; dkim=pass header.d=redhat.com header.s=mimecast20190719 header.b=bUxo5iat; dmarc=pass (policy=none) header.from=redhat.com; spf=none (imf02.hostedemail.com: domain of bhe@redhat.com has no SPF policy when checking 170.10.129.124) smtp.mailfrom=bhe@redhat.com X-HE-Tag: 1654659963-691689 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On 06/07/22 at 11:34am, Uladzislau Rezki (Sony) wrote: > Currently link_va() and unlik_va(), in order to figure out a tree > type, compares a passed root value with a global free_vmap_area_root > variable to distinguish the augmented rb-tree from a regular one. It > is hard coded since such functions can manipulate only with specific > "free_vmap_area_root" tree that represents a global free vmap space. > > Make it common by introducing "_augment" versions of both internal > functions, so it is possible to deal with different trees. > > There is no functional change as a result of this patch. Patch looks good to me. Looking forward to seeing the later per-cpu vmalloc allocation patches. Reviewed-by: Baoquan He > > Signed-off-by: Uladzislau Rezki (Sony) > --- > mm/vmalloc.c | 60 +++++++++++++++++++++++++++++++++++++++++----------- > 1 file changed, 48 insertions(+), 12 deletions(-) > > diff --git a/mm/vmalloc.c b/mm/vmalloc.c > index be8ed06804a5..0102d6d5fcdf 100644 > --- a/mm/vmalloc.c > +++ b/mm/vmalloc.c > @@ -911,8 +911,9 @@ get_va_next_sibling(struct rb_node *parent, struct rb_node **link) > } > > static __always_inline void > -link_va(struct vmap_area *va, struct rb_root *root, > - struct rb_node *parent, struct rb_node **link, struct list_head *head) > +__link_va(struct vmap_area *va, struct rb_root *root, > + struct rb_node *parent, struct rb_node **link, > + struct list_head *head, bool augment) > { > /* > * VA is still not in the list, but we can > @@ -926,7 +927,7 @@ link_va(struct vmap_area *va, struct rb_root *root, > > /* Insert to the rb-tree */ > rb_link_node(&va->rb_node, parent, link); > - if (root == &free_vmap_area_root) { > + if (augment) { > /* > * Some explanation here. Just perform simple insertion > * to the tree. We do not set va->subtree_max_size to > @@ -950,12 +951,28 @@ link_va(struct vmap_area *va, struct rb_root *root, > } > > static __always_inline void > -unlink_va(struct vmap_area *va, struct rb_root *root) > +link_va(struct vmap_area *va, struct rb_root *root, > + struct rb_node *parent, struct rb_node **link, > + struct list_head *head) > +{ > + __link_va(va, root, parent, link, head, false); > +} > + > +static __always_inline void > +link_va_augment(struct vmap_area *va, struct rb_root *root, > + struct rb_node *parent, struct rb_node **link, > + struct list_head *head) > +{ > + __link_va(va, root, parent, link, head, true); > +} > + > +static __always_inline void > +__unlink_va(struct vmap_area *va, struct rb_root *root, bool augment) > { > if (WARN_ON(RB_EMPTY_NODE(&va->rb_node))) > return; > > - if (root == &free_vmap_area_root) > + if (augment) > rb_erase_augmented(&va->rb_node, > root, &free_vmap_area_rb_augment_cb); > else > @@ -965,6 +982,18 @@ unlink_va(struct vmap_area *va, struct rb_root *root) > RB_CLEAR_NODE(&va->rb_node); > } > > +static __always_inline void > +unlink_va(struct vmap_area *va, struct rb_root *root) > +{ > + __unlink_va(va, root, false); > +} > + > +static __always_inline void > +unlink_va_augment(struct vmap_area *va, struct rb_root *root) > +{ > + __unlink_va(va, root, true); > +} > + > #if DEBUG_AUGMENT_PROPAGATE_CHECK > /* > * Gets called when remove the node and rotate. > @@ -1060,7 +1089,7 @@ insert_vmap_area_augment(struct vmap_area *va, > link = find_va_links(va, root, NULL, &parent); > > if (link) { > - link_va(va, root, parent, link, head); > + link_va_augment(va, root, parent, link, head); > augment_tree_propagate_from(va); > } > } > @@ -1077,8 +1106,8 @@ insert_vmap_area_augment(struct vmap_area *va, > * ongoing. > */ > static __always_inline struct vmap_area * > -merge_or_add_vmap_area(struct vmap_area *va, > - struct rb_root *root, struct list_head *head) > +__merge_or_add_vmap_area(struct vmap_area *va, > + struct rb_root *root, struct list_head *head, bool augment) > { > struct vmap_area *sibling; > struct list_head *next; > @@ -1140,7 +1169,7 @@ merge_or_add_vmap_area(struct vmap_area *va, > * "normalized" because of rotation operations. > */ > if (merged) > - unlink_va(va, root); > + __unlink_va(va, root, augment); > > sibling->va_end = va->va_end; > > @@ -1155,16 +1184,23 @@ merge_or_add_vmap_area(struct vmap_area *va, > > insert: > if (!merged) > - link_va(va, root, parent, link, head); > + __link_va(va, root, parent, link, head, augment); > > return va; > } > > +static __always_inline struct vmap_area * > +merge_or_add_vmap_area(struct vmap_area *va, > + struct rb_root *root, struct list_head *head) > +{ > + return __merge_or_add_vmap_area(va, root, head, false); > +} > + > static __always_inline struct vmap_area * > merge_or_add_vmap_area_augment(struct vmap_area *va, > struct rb_root *root, struct list_head *head) > { > - va = merge_or_add_vmap_area(va, root, head); > + va = __merge_or_add_vmap_area(va, root, head, true); > if (va) > augment_tree_propagate_from(va); > > @@ -1348,7 +1384,7 @@ adjust_va_to_fit_type(struct vmap_area *va, > * V NVA V > * |---------------| > */ > - unlink_va(va, &free_vmap_area_root); > + unlink_va_augment(va, &free_vmap_area_root); > kmem_cache_free(vmap_area_cachep, va); > } else if (type == LE_FIT_TYPE) { > /* > -- > 2.30.2 > >