Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp2769294ybc; Mon, 18 Nov 2019 04:28:26 -0800 (PST) X-Google-Smtp-Source: APXvYqx9+I2IB13zGYj0DgdJ7PzFKRSEIqoqhPpgaq5wByYNfNY3mR4pGw42Eiv9DZRS1PMpl7oj X-Received: by 2002:a17:906:b246:: with SMTP id ce6mr25584483ejb.298.1574080106044; Mon, 18 Nov 2019 04:28:26 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1574080106; cv=none; d=google.com; s=arc-20160816; b=ML4UyN8zd0GONxnFzPP2Nup6mLA1534IsF0k1yKVSzWCzd9f2ycqdU6B5agJ5ocs8G /3E5/vrkwknxpxZpfud9BnnFstjNSBslpobVEqEIISaYrXCixtDpUWXO6Mqw99VMe4ea jdVzYJKae4OkMMahseVBmEETcXeQsoTF1PipKffhydR+nwOwFS8hbBxaPkwK6KI46CfY 2zc4OkVKVK3kZBYXhpR76lPtLZiS14tqIXtRy1wvf7Vbqt6DAEg/daBur/t2Y6Wz/VzR JJ3U2Gv/L7Q2i+7rNEQZxB7ucDOGIH+aqdcO6uSy6x3vRKWprvA7JyhX93uvUuq2jjh/ T7Hw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=6HRLaF1ViTpKBQ+DnYhsONVSvQaknC041YVwu/27zBM=; b=E8h7aid0V6dysl4XqgfWhZ8q/+FFJXdZ3DiPu66VwXh8agrDVtJTzytkSR6t/rXZqf bxhXWBCMMJ0fcZmkZ4mm1j1KPFJzAQGSp7nJ2A7xvHYCV+2gO+sLAW5KOUnaLc0Zanbw ZvEMtMH1K9nlw/MEuRNA/8iGdBn+pPKS7LbEn83gFnShSjxQ++CwP70hqjfP7lwIX1k5 erLu+oiIjrZdkX42uprGfoyrfpGyYtBlPrFxuTQ9dhgp1fZbhfb2tIavZ3hWqoLaw6UE nwMS7P4tSK1gcUnURB9JRg6RsTcU5kAwtNMgOyHFviIJ8vIorLqd/55zR8ShbB+/9xiJ fNfA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id z58si12981148edz.141.2019.11.18.04.28.01; Mon, 18 Nov 2019 04:28:26 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726822AbfKRMYJ (ORCPT + 99 others); Mon, 18 Nov 2019 07:24:09 -0500 Received: from szxga07-in.huawei.com ([45.249.212.35]:35822 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726464AbfKRMYJ (ORCPT ); Mon, 18 Nov 2019 07:24:09 -0500 Received: from DGGEMS407-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 485C4D65A578D96687A4; Mon, 18 Nov 2019 20:24:07 +0800 (CST) Received: from huawei.com (10.175.105.18) by DGGEMS407-HUB.china.huawei.com (10.3.19.207) with Microsoft SMTP Server id 14.3.439.0; Mon, 18 Nov 2019 20:23:57 +0800 From: linmiaohe To: , , , , , , , , , , , , CC: , , Subject: [PATCH v4] mm: get rid of odd jump labels in find_mergeable_anon_vma() Date: Mon, 18 Nov 2019 20:24:04 +0800 Message-ID: <1574079844-17493-1-git-send-email-linmiaohe@huawei.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.105.18] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Miaohe Lin The jump labels try_prev and none are not really needed in find_mergeable_anon_vma(), eliminate them to improve readability. Reviewed-by: David Hildenbrand Reviewed-by: John Hubbard Signed-off-by: Miaohe Lin --- -v2: Fix commit descriptions and further simplify the code as suggested by David Hildenbrand and John Hubbard. -v3: Rewrite patch version info. Don't show this in commit log. -v4: Get rid of var near completely as well. --- mm/mmap.c | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/mm/mmap.c b/mm/mmap.c index 91d5e097a4ed..4d93bda30eac 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -1273,26 +1273,22 @@ static struct anon_vma *reusable_anon_vma(struct vm_area_struct *old, struct vm_ */ struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) { - struct anon_vma *anon_vma; - struct vm_area_struct *near; - - near = vma->vm_next; - if (!near) - goto try_prev; - - anon_vma = reusable_anon_vma(near, vma, near); - if (anon_vma) - return anon_vma; -try_prev: - near = vma->vm_prev; - if (!near) - goto none; - - anon_vma = reusable_anon_vma(near, near, vma); - if (anon_vma) - return anon_vma; -none: + struct anon_vma *anon_vma = NULL; + + /* Try next first. */ + if (vma->vm_next) { + anon_vma = reusable_anon_vma(vma->vm_next, vma, vma->vm_next); + if (anon_vma) + return anon_vma; + } + + /* Try prev next. */ + if (vma->vm_prev) + anon_vma = reusable_anon_vma(vma->vm_prev, vma->vm_prev, vma); + /* + * We might reach here with anon_vma == NULL if we can't find + * any reusable anon_vma. * There's no absolute need to look only at touching neighbours: * we could search further afield for "compatible" anon_vmas. * But it would probably just be a waste of time searching, @@ -1300,7 +1296,7 @@ struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *vma) * We're trying to allow mprotect remerging later on, * not trying to minimize memory used for anon_vmas. */ - return NULL; + return anon_vma; } /* -- 2.21.GIT