Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp758057imm; Wed, 19 Sep 2018 06:31:04 -0700 (PDT) X-Google-Smtp-Source: ANB0Vdb5GaeUrznH+jwPqVm8JkjRqqxhZBVlkb1ba1t/+TjsHqLI+EXZmBTdq3sDQGFudGgbvUvd X-Received: by 2002:a17:902:6b47:: with SMTP id g7-v6mr35037099plt.128.1537363864474; Wed, 19 Sep 2018 06:31:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537363864; cv=none; d=google.com; s=arc-20160816; b=hAr0RRD5Mc6bIpRcs0JBQd+/Y3L1hAGw6KI9+MtuAsKzFPdN2hUuMhwZrVD81rcwhl UcBkdKTp6E81nHAkdrHHM7n26T/1V9ID7cJUj7grW0dOxh2HOG123uTIR5wK1etmmH+u t2MBxB9pN5pCOudDmCtokH+TkzrN7T6mgkzTnCpxKkHbjvdmeSSUuADbC0hXxpk9uh73 xkg++KO7stOomM4XJAIEa+relVa/15oFyyICR6QrQVOSw2jzp+J8iypLy1jop1DLcBAx mIC7B5ukxHx4QxHVEaYXgAIreYGaZDbuPaK0GlZZ6+YBqtlo/a7VKtnuXdyD7qGL5TZp kMAQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-transfer-encoding:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=mbD62cAIPWDmCaYP5C2MJxbQFR99QLGkHpoxMLnhIGg=; b=gaTY0UwlJKBIgCXUlo8o/oWUY6Em2+bQQ0AA13Y0phSIuEHriTAwNgWLf6XQ8gheyE psXoGL/txErFcvKhgCM5ac30iNDgPjLA6u+Fp1IRWU36EAx93cKBq229/JVSXw7+lPbN /NLr0gE9Tz+KJ/tS7epV5H9REOLDLGwzleW1acePnijsJgsXeJHT1+85L8996RPJpeMC zQizK7uRFTc8CUi3G79aaLd3fm82uZNQPufthecRtL+g9VW/Z8r7YwqJwp33KiAtqgkF epieM6RcQGJG2tuOwp1IVh6giTFvK9/pvRWu/R7UKQywJx/wlotXRVKXZwShqeFlMGnI XTjw== 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 y5-v6si18763607pll.89.2018.09.19.06.30.49; Wed, 19 Sep 2018 06:31:04 -0700 (PDT) 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 S1731890AbeISTH5 (ORCPT + 99 others); Wed, 19 Sep 2018 15:07:57 -0400 Received: from mx2.suse.de ([195.135.220.15]:51070 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1730876AbeISTH5 (ORCPT ); Wed, 19 Sep 2018 15:07:57 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id C468CAD9D; Wed, 19 Sep 2018 13:29:58 +0000 (UTC) Date: Wed, 19 Sep 2018 15:29:49 +0200 From: Borislav Petkov To: Lianbo Jiang Cc: linux-kernel@vger.kernel.org, kexec@lists.infradead.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, x86@kernel.org, akpm@linux-foundation.org, dan.j.williams@intel.com, thomas.lendacky@amd.com, bhelgaas@google.com, baiyaowei@cmss.chinamobile.com, tiwai@suse.de, brijesh.singh@amd.com, dyoung@redhat.com Subject: Re: [PATCH 1/3 v2] resource: fix an error which walks through iomem resources Message-ID: <20180919132949.GB9122@nazgul.tnic> References: <20180919125251.8181-1-lijiang@redhat.com> <20180919125251.8181-2-lijiang@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20180919125251.8181-2-lijiang@redhat.com> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Sep 19, 2018 at 08:52:49PM +0800, Lianbo Jiang wrote: ... > In fact, we should get the resource A and B when we walk through the > whole tree, but it only gets the resource A, the resource B is missed. > > Signed-off-by: Dave Young > Signed-off-by: Lianbo Jiang Before looking at this: the SOB chain of all three patches is wrong. Hint: see section 12) in Documentation/process/submitting-patches.rst -- Regards/Gruss, Boris. SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg) --