Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp5932326imu; Sun, 20 Jan 2019 23:44:17 -0800 (PST) X-Google-Smtp-Source: ALg8bN4OHRgTH+8JCcS4V1ZoqYoH0RWdBV3zNDVwCx56V7NathE4Z5NFLA9jDg+pQ0t08CebbfBg X-Received: by 2002:a17:902:f81:: with SMTP id 1mr28229699plz.174.1548056657736; Sun, 20 Jan 2019 23:44:17 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1548056657; cv=none; d=google.com; s=arc-20160816; b=vtY863yrY8SU9WL9h44vRQdjV5l3WrbdTsrSJmuEzZC+DPn79otVOtOUgqRmhKN5Fs FZisU5hhqtmwQUjR+OSPSg0UiTgMelwCBruykacGXqwBgGg2+mcqM2JsxITd4xFBoxX4 c+EYLBRGXaKB+Cy4l3v/qgMXY5QlwDIlt9fgxtzjG+YevOV9rE+Vs3MPAqAgs9kEQvMf 2ZrYZJ7ca6Ikq+kIjkd/sELTOD/Ld038/mgFztCxdZyNReKCJsAFNVe/3VG3s2tMuJSk O5/pPFdr9qjHnJ3/BS8D+lj4s/X4wvh3QBeKKG+dKafkT79DwvASbuIHKezEonvOgk+3 aLtg== 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=NxaN/r+GS1uS6uPAqTbVIUdhkGWQNP4j+NOvHMFG3ak=; b=S/iPGwhabGYYoKvsInPUn8Wj/ALR6yAuPbRHwKcIoTCdD/mp4K8HBa6zL+bj2sdg3T gNMe8Vmr/+mn6vMKRqKRv75OxOOiurvCQhRZTYjsEJWHO98wpZtH71oZrvHIWM3R4PG/ RilczHPifqMh7vMwZS/WkfjEh25pUwFVV6Ua9Fflzxu9yeTOf5w+iMSIIP69vHb93cGg AgWzesPp3xuk7BAC8CNwvdphPcH257tArGftUFgd7+hA0TSsjpq9ZHwm0lc91ZmdpRP+ LwAybxFjo4ZrCbMDNik1z5x4mORtpul413axhiYfR59OFWA/089L6N7Ajj1ST16dPRA2 ED0w== 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 t64si12217259pgd.202.2019.01.20.23.44.01; Sun, 20 Jan 2019 23:44:17 -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 S1728789AbfAUHln (ORCPT + 99 others); Mon, 21 Jan 2019 02:41:43 -0500 Received: from mga14.intel.com ([192.55.52.115]:22809 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728513AbfAUHlm (ORCPT ); Mon, 21 Jan 2019 02:41:42 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jan 2019 17:20:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,501,1539673200"; d="scan'208";a="127304364" Received: from richard.sh.intel.com (HELO localhost) ([10.239.159.37]) by FMSMGA003.fm.intel.com with ESMTP; 20 Jan 2019 17:20:53 -0800 From: Wei Yang To: linux-kernel@vger.kernel.org Cc: jack@suse.cz, dan.j.williams@intel.com, Wei Yang Subject: [PATCH] kernel, resource: use resource_overlaps() to simplify region_intersects() Date: Mon, 21 Jan 2019 09:20:28 +0800 Message-Id: <20190121012028.3913-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 --- 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