[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <cb35df10-feac-6eff-f847-4cfba74a5bca@gmail.com>
Date: Tue, 6 Dec 2016 14:47:01 -0800
From: Florian Fainelli <f.fainelli@...il.com>
To: Chris Brandt <Chris.Brandt@...esas.com>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>
Cc: "linux@...linux.org.uk" <linux@...linux.org.uk>,
"nicolas.pitre@...aro.org" <nicolas.pitre@...aro.org>,
"panand@...hat.com" <panand@...hat.com>,
"arnd@...db.de" <arnd@...db.de>,
"jonathan.austin@....com" <jonathan.austin@....com>,
"pawel.moll@....com" <pawel.moll@....com>,
"vladimir.murzin@....com" <vladimir.murzin@....com>,
"mark.rutland@....com" <mark.rutland@....com>,
"ard.biesheuvel@...aro.org" <ard.biesheuvel@...aro.org>,
"keescook@...omium.org" <keescook@...omium.org>,
"matt@...eblueprint.co.uk" <matt@...eblueprint.co.uk>,
"labbott@...oraproject.org" <labbott@...oraproject.org>,
"kirill.shutemov@...ux.intel.com" <kirill.shutemov@...ux.intel.com>,
"ben@...adent.org.uk" <ben@...adent.org.uk>,
"js07.lee@...sung.com" <js07.lee@...sung.com>,
"stefan@...er.ch" <stefan@...er.ch>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/3] ARM: Define KERNEL_START and KERNEL_END
On 12/06/2016 02:43 PM, Chris Brandt wrote:
> On 12/6/2016, Florian Fainelli wrote:
>> diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c
>> index 4001dd15818d..18ef688a796e 100644
>> --- a/arch/arm/mm/mmu.c
>> +++ b/arch/arm/mm/mmu.c
>> @@ -1437,12 +1437,8 @@ static void __init kmap_init(void)
>> static void __init map_lowmem(void)
>> {
>> struct memblock_region *reg;
>> -#ifdef CONFIG_XIP_KERNEL
>> - phys_addr_t kernel_x_start = round_down(__pa(_sdata), SECTION_SIZE);
>> -#else
>> - phys_addr_t kernel_x_start = round_down(__pa(_stext), SECTION_SIZE);
>> -#endif
>> - phys_addr_t kernel_x_end = round_up(__pa(__init_end), SECTION_SIZE);
>> + phys_addr_t kernel_x_start = round_down(__pa(KERNEL_START),
>> SECTION_SIZE);
>> + phys_addr_t kernel_x_end = round_down(__pa(_end), SECTION_SIZE);
>
> Why are you changing the end of executable kernel (hence the 'x' in
> kernel_x_end) from __init_end to _end which basically maps the entire
> kernel image including text and data?
That's a typo, was not intentional thanks for spotting it.
--
Florian
Powered by blists - more mailing lists