Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754454Ab3HBQGh (ORCPT ); Fri, 2 Aug 2013 12:06:37 -0400 Received: from g4t0014.houston.hp.com ([15.201.24.17]:40650 "EHLO g4t0014.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754320Ab3HBQGf (ORCPT ); Fri, 2 Aug 2013 12:06:35 -0400 Message-ID: <1375459527.10300.77.camel@misato.fc.hp.com> Subject: Re: [PATCH v2 10/18] x86, acpi: Try to find if SRAT is overrided earlier. From: Toshi Kani To: Tang Chen Cc: rjw@sisk.pl, lenb@kernel.org, tglx@linutronix.de, mingo@elte.hu, hpa@zytor.com, akpm@linux-foundation.org, tj@kernel.org, trenn@suse.de, yinghai@kernel.org, jiang.liu@huawei.com, wency@cn.fujitsu.com, laijs@cn.fujitsu.com, isimatu.yasuaki@jp.fujitsu.com, izumi.taku@jp.fujitsu.com, mgorman@suse.de, minchan@kernel.org, mina86@mina86.com, gong.chen@linux.intel.com, vasilis.liaskovitis@profitbricks.com, lwoodman@redhat.com, riel@redhat.com, jweiner@redhat.com, prarit@redhat.com, zhangyanfei@cn.fujitsu.com, yanghy@cn.fujitsu.com, x86@kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-acpi@vger.kernel.org Date: Fri, 02 Aug 2013 10:05:27 -0600 In-Reply-To: <51FB485A.9070801@cn.fujitsu.com> References: <1375340800-19332-1-git-send-email-tangchen@cn.fujitsu.com> <1375340800-19332-11-git-send-email-tangchen@cn.fujitsu.com> <1375406353.10300.73.camel@misato.fc.hp.com> <51FB485A.9070801@cn.fujitsu.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 (3.6.4-3.fc18) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1483 Lines: 51 On Fri, 2013-08-02 at 13:49 +0800, Tang Chen wrote: > On 08/02/2013 09:19 AM, Toshi Kani wrote: > ...... > >> +phys_addr_t __init early_acpi_override_srat(void) > >> +{ > >> + int i; > >> + u32 length; > >> + long offset; > >> + void *ramdisk_vaddr; > >> + struct acpi_table_header *table; > >> + struct cpio_data file; > >> + unsigned long map_step = NR_FIX_BTMAPS<< PAGE_SHIFT; > >> + phys_addr_t ramdisk_image = get_ramdisk_image(); > >> + char cpio_path[32] = "kernel/firmware/acpi/"; > > > > Don't you need to check if ramdisk is present before parsing the table? > > You may need something like: > > > > if (!ramdisk_image || !get_ramdisk_size()) > > return 0; > > Yes, it is better to do such a check here. But is there a possibility that > no ramdisk is present and we come to setup_arch() ? Without a ramdisk, the boot procedure will likely fail in mounting the root disk due to missing drivers. But it should come to setup_arch() without it. Thanks, -Toshi > > ...... > >> + > >> + return ramdisk_image; > > > > Doesn't this function return a physical address regardless of SRAT if a > > ramdisk is present? > > Yes, and it is not good. I'll add the check above so that this won't happen. > > Thanks. > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/