Received: by 2002:ac0:aed5:0:0:0:0:0 with SMTP id t21csp3102693imb; Tue, 5 Mar 2019 00:36:43 -0800 (PST) X-Google-Smtp-Source: APXvYqwNsqtemUQSmNcldb6bbTawsxqm1gqfkVf2Azsf6aWLm19TFn467yPpetoA3APw7FvwvmVI X-Received: by 2002:aa7:91d7:: with SMTP id z23mr725979pfa.137.1551775003330; Tue, 05 Mar 2019 00:36:43 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1551775003; cv=none; d=google.com; s=arc-20160816; b=OXI3erWQRR8UeeuNutm2zIMAmb6+yy+jprHpCsa3tdJgB8RysiN+Gihg4KXftVoAbS DROynqCSvK/Qg+W97JSfqaBSMbf4cXl5xO1saCULuLrW5gvQWnklDnJSUqm67e8/Tg3p DLYQkIJ5HrB3Qey/wVmL6VeAGRPMxSmBmqWf/M1mm8ACExf5CLsqnrlAw6uhUXAiZBFv 7y2alsC68LTiHOFIkoAflyaE6/4ZZTc+sdyZF92di/X66t/XkJKW3d9lDvpy5ioOqin+ 1YetIoCpFRadyz6U6I46YXzOg1So+n0rKzvrbrydPD3HBVwKiXX6ZvNK4NmP5432hRIq sPWg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=7nb75kTOcQdxiLAJ3qmTGFcJfCYtZx1UTN6PYfGWh84=; b=uenu/DinQfbLP3y80+L6XsWuT1FaRo/9JE8z0FtmjgOQVoyBCsBledSCrXFROOJs6j k7wC4zdtTWtelTQ4+hkLDqoTKJ1BpRnU8EHziufboLy3xxOlaWQFlr4k/rCzNYyqVRsr c1jygYKMxOY6Vci4eZvhqO6pjAo4GKRIe7bKjB0eu2Zb18jeMINSK5N2l3GYOVYNqczD fiKjCEJnlHuQnj6n660NMYtjdDivLooMWOoA8XzioCtiF0OcJv1cjYdNpiN08VQuBDRV cxORDjhI7bNeT7fBCMuCK1eq2OKKNZCHrV1tNMkLwk50ZntkM980pjElFftpjStpPa4L anPQ== 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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id h124si7282041pgc.25.2019.03.05.00.36.27; Tue, 05 Mar 2019 00:36:43 -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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727207AbfCEIfL (ORCPT + 99 others); Tue, 5 Mar 2019 03:35:11 -0500 Received: from mga12.intel.com ([192.55.52.136]:37942 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726597AbfCEIfK (ORCPT ); Tue, 5 Mar 2019 03:35:10 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Mar 2019 00:35:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,443,1544515200"; d="scan'208";a="324304554" Received: from richard.sh.intel.com (HELO localhost) ([10.239.159.54]) by fmsmga006.fm.intel.com with ESMTP; 05 Mar 2019 00:35:08 -0800 From: Wei Yang To: linux-kernel@vger.kernel.org Cc: jack@suse.cz, dan.j.williams@intel.com, bp@suse.de, bhelgaas@google.com, mingo@kernel.org, akpm@linux-foundation.org, tiwai@suse.de, rdunlap@infradead.org, Wei Yang Subject: [RESEND PATCH] kernel, resource: use resource_overlaps() to simplify region_intersects() Date: Tue, 5 Mar 2019 16:34:32 +0800 Message-Id: <20190305083432.23675-1-richardw.yang@linux.intel.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The three checks in region_intersects() is to see whether two resources overlap. This means it could be simplified with one resource_overlaps(). Also fix two typo in related function. Signed-off-by: Wei Yang Reviewed-by: Like Xu Reviewed-by: Yuan Yao --- kernel/iomem.c | 4 ++-- kernel/resource.c | 11 +++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/kernel/iomem.c b/kernel/iomem.c index f7525e14ebc6..93c264444510 100644 --- a/kernel/iomem.c +++ b/kernel/iomem.c @@ -55,7 +55,7 @@ static void *try_ram_remap(resource_size_t offset, size_t size, * * MEMREMAP_WB - matches the default mapping for System RAM on * the architecture. This is usually a read-allocate write-back cache. - * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM + * Moreover, if MEMREMAP_WB is specified and the requested remap region is RAM * memremap() will bypass establishing a new mapping and instead return * a pointer into the direct map. * @@ -86,7 +86,7 @@ void *memremap(resource_size_t offset, size_t size, unsigned long flags) /* Try all mapping types requested until one returns non-NULL */ if (flags & MEMREMAP_WB) { /* - * MEMREMAP_WB is special in that it can be satisifed + * MEMREMAP_WB is special in that it can be satisfied * from the direct map. Some archs depend on the * capability of memremap() to autodetect cases where * the requested range is potentially in System RAM. diff --git a/kernel/resource.c b/kernel/resource.c index b0fbf685c77a..34dfb94305bb 100644 --- a/kernel/resource.c +++ b/kernel/resource.c @@ -521,21 +521,20 @@ EXPORT_SYMBOL_GPL(page_is_ram); int region_intersects(resource_size_t start, size_t size, unsigned long flags, unsigned long desc) { - resource_size_t end = start + size - 1; + struct resource res; int type = 0; int other = 0; struct resource *p; + res.start = start; + res.end = start + size - 1; + read_lock(&resource_lock); for (p = iomem_resource.child; p ; p = p->sibling) { bool is_type = (((p->flags & flags) == flags) && ((desc == IORES_DESC_NONE) || (desc == p->desc))); - if (start >= p->start && start <= p->end) - is_type ? type++ : other++; - if (end >= p->start && end <= p->end) - is_type ? type++ : other++; - if (p->start >= start && p->end <= end) + if (resource_overlaps(p, &res)) is_type ? type++ : other++; } read_unlock(&resource_lock); -- 2.19.1