Message ID | 1479806768-39911-10-git-send-email-vladimir.murzin@arm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, Nov 22, 2016 at 09:26:06AM +0000, Vladimir Murzin wrote: > Pickup defines from pgtable-2level.h to make NOMMU build happy. This needs more detail. > > Cc: Russell King <linux@armlinux.org.uk> > Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com> > --- > arch/arm/include/asm/pgtable-nommu.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/arch/arm/include/asm/pgtable-nommu.h b/arch/arm/include/asm/pgtable-nommu.h > index add094d..9115801 100644 > --- a/arch/arm/include/asm/pgtable-nommu.h > +++ b/arch/arm/include/asm/pgtable-nommu.h > @@ -35,6 +35,11 @@ > > #define PGDIR_SIZE (1UL << PGDIR_SHIFT) > #define PGDIR_MASK (~(PGDIR_SIZE-1)) > + > +#define SECTION_SHIFT 20 > +#define SECTION_SIZE (1UL << SECTION_SHIFT) > +#define SECTION_MASK (~(SECTION_SIZE-1)) > + > /* FIXME */ > > #define PAGE_NONE __pgprot(0) > -- > 1.7.9.5 >
On 22/11/16 10:07, Russell King - ARM Linux wrote: > On Tue, Nov 22, 2016 at 09:26:06AM +0000, Vladimir Murzin wrote: >> Pickup defines from pgtable-2level.h to make NOMMU build happy. > > This needs more detail. > It comes from CC arch/arm/kernel/setup.o arch/arm/kernel/setup.c: In function 'reserve_crashkernel': arch/arm/kernel/setup.c:1001:25: error: 'SECTION_SIZE' undeclared (first use in this function) crash_size, SECTION_SIZE); ^ arch/arm/kernel/setup.c:1001:25: note: each undeclared identifier is reported only once for each function it appears in make[1]: *** [arch/arm/kernel/setup.o] Error 1 make: *** [arch/arm/kernel] Error 2 Cheers Vladimir >> >> Cc: Russell King <linux@armlinux.org.uk> >> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com> >> --- >> arch/arm/include/asm/pgtable-nommu.h | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/arch/arm/include/asm/pgtable-nommu.h b/arch/arm/include/asm/pgtable-nommu.h >> index add094d..9115801 100644 >> --- a/arch/arm/include/asm/pgtable-nommu.h >> +++ b/arch/arm/include/asm/pgtable-nommu.h >> @@ -35,6 +35,11 @@ >> >> #define PGDIR_SIZE (1UL << PGDIR_SHIFT) >> #define PGDIR_MASK (~(PGDIR_SIZE-1)) >> + >> +#define SECTION_SHIFT 20 >> +#define SECTION_SIZE (1UL << SECTION_SHIFT) >> +#define SECTION_MASK (~(SECTION_SIZE-1)) >> + >> /* FIXME */ >> >> #define PAGE_NONE __pgprot(0) >> -- >> 1.7.9.5 >> >
On Tue, Nov 22, 2016 at 11:50:57AM +0000, Vladimir Murzin wrote: > On 22/11/16 10:07, Russell King - ARM Linux wrote: > > On Tue, Nov 22, 2016 at 09:26:06AM +0000, Vladimir Murzin wrote: > >> Pickup defines from pgtable-2level.h to make NOMMU build happy. > > > > This needs more detail. > > > > It comes from > > CC arch/arm/kernel/setup.o > arch/arm/kernel/setup.c: In function 'reserve_crashkernel': > arch/arm/kernel/setup.c:1001:25: error: 'SECTION_SIZE' undeclared (first use in this function) > crash_size, SECTION_SIZE); > ^ > arch/arm/kernel/setup.c:1001:25: note: each undeclared identifier is reported only once for each function it appears in > make[1]: *** [arch/arm/kernel/setup.o] Error 1 > make: *** [arch/arm/kernel] Error 2 Hmm, I decided not to use CRASH_ALIGN there because I didn't want to break anyone's existing setup unnecessarily, however arguably it should be CRASH_ALIGN to ensure that the new kernel is properly positioned. I wonder if we can get away with changing that, rather than unnecessarily introducing these otherwise meaningless definitions for R-class.
On 22/11/16 11:54, Russell King - ARM Linux wrote: > On Tue, Nov 22, 2016 at 11:50:57AM +0000, Vladimir Murzin wrote: >> On 22/11/16 10:07, Russell King - ARM Linux wrote: >>> On Tue, Nov 22, 2016 at 09:26:06AM +0000, Vladimir Murzin wrote: >>>> Pickup defines from pgtable-2level.h to make NOMMU build happy. >>> >>> This needs more detail. >>> >> >> It comes from >> >> CC arch/arm/kernel/setup.o >> arch/arm/kernel/setup.c: In function 'reserve_crashkernel': >> arch/arm/kernel/setup.c:1001:25: error: 'SECTION_SIZE' undeclared (first use in this function) >> crash_size, SECTION_SIZE); >> ^ >> arch/arm/kernel/setup.c:1001:25: note: each undeclared identifier is reported only once for each function it appears in >> make[1]: *** [arch/arm/kernel/setup.o] Error 1 >> make: *** [arch/arm/kernel] Error 2 > > Hmm, I decided not to use CRASH_ALIGN there because I didn't want to > break anyone's existing setup unnecessarily, however arguably it > should be CRASH_ALIGN to ensure that the new kernel is properly > positioned. > > I wonder if we can get away with changing that, rather than > unnecessarily introducing these otherwise meaningless definitions > for R-class. > CRASH_ALIGN works fine but it seems not only user of SECTION_SIZE In file included from ./include/linux/cache.h:4:0, from ./include/linux/printk.h:8, from ./include/linux/kernel.h:13, from arch/arm/mach-omap2/omap-secure.c:15: arch/arm/mach-omap2/omap-secure.c: In function 'omap_secure_ram_reserve_memblock': arch/arm/mach-omap2/omap-secure.c:65:21: error: 'SECTION_SIZE' undeclared (first use in this function) size = ALIGN(size, SECTION_SIZE); ^ ./include/uapi/linux/kernel.h:10:47: note: in definition of macro '__ALIGN_KERNEL_MASK' #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) ^ ./include/linux/kernel.h:48:22: note: in expansion of macro '__ALIGN_KERNEL' #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) ^ arch/arm/mach-omap2/omap-secure.c:65:9: note: in expansion of macro 'ALIGN' size = ALIGN(size, SECTION_SIZE); ^ arch/arm/mach-omap2/omap-secure.c:65:21: note: each undeclared identifier is reported only once for each function it appears in size = ALIGN(size, SECTION_SIZE); ^ ./include/uapi/linux/kernel.h:10:47: note: in definition of macro '__ALIGN_KERNEL_MASK' #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) ^ ./include/linux/kernel.h:48:22: note: in expansion of macro '__ALIGN_KERNEL' #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) ^ arch/arm/mach-omap2/omap-secure.c:65:9: note: in expansion of macro 'ALIGN' size = ALIGN(size, SECTION_SIZE); ^ make[1]: *** [arch/arm/mach-omap2/omap-secure.o] Error 1 Cheers Vladimir
On 22/11/16 17:03, Vladimir Murzin wrote: > On 22/11/16 11:54, Russell King - ARM Linux wrote: >> On Tue, Nov 22, 2016 at 11:50:57AM +0000, Vladimir Murzin wrote: >>> On 22/11/16 10:07, Russell King - ARM Linux wrote: >>>> On Tue, Nov 22, 2016 at 09:26:06AM +0000, Vladimir Murzin wrote: >>>>> Pickup defines from pgtable-2level.h to make NOMMU build happy. >>>> >>>> This needs more detail. >>>> >>> >>> It comes from >>> >>> CC arch/arm/kernel/setup.o >>> arch/arm/kernel/setup.c: In function 'reserve_crashkernel': >>> arch/arm/kernel/setup.c:1001:25: error: 'SECTION_SIZE' undeclared (first use in this function) >>> crash_size, SECTION_SIZE); >>> ^ >>> arch/arm/kernel/setup.c:1001:25: note: each undeclared identifier is reported only once for each function it appears in >>> make[1]: *** [arch/arm/kernel/setup.o] Error 1 >>> make: *** [arch/arm/kernel] Error 2 >> >> Hmm, I decided not to use CRASH_ALIGN there because I didn't want to >> break anyone's existing setup unnecessarily, however arguably it >> should be CRASH_ALIGN to ensure that the new kernel is properly >> positioned. >> >> I wonder if we can get away with changing that, rather than >> unnecessarily introducing these otherwise meaningless definitions >> for R-class. >> > > CRASH_ALIGN works fine but it seems not only user of SECTION_SIZE > > In file included from ./include/linux/cache.h:4:0, > from ./include/linux/printk.h:8, > from ./include/linux/kernel.h:13, > from arch/arm/mach-omap2/omap-secure.c:15: > arch/arm/mach-omap2/omap-secure.c: In function 'omap_secure_ram_reserve_memblock': > arch/arm/mach-omap2/omap-secure.c:65:21: error: 'SECTION_SIZE' undeclared (first use in this function) > size = ALIGN(size, SECTION_SIZE); > ^ > ./include/uapi/linux/kernel.h:10:47: note: in definition of macro '__ALIGN_KERNEL_MASK' > #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) > ^ > ./include/linux/kernel.h:48:22: note: in expansion of macro '__ALIGN_KERNEL' > #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) > ^ > arch/arm/mach-omap2/omap-secure.c:65:9: note: in expansion of macro 'ALIGN' > size = ALIGN(size, SECTION_SIZE); > ^ > arch/arm/mach-omap2/omap-secure.c:65:21: note: each undeclared identifier is reported only once for each function it appears in > size = ALIGN(size, SECTION_SIZE); > ^ > ./include/uapi/linux/kernel.h:10:47: note: in definition of macro '__ALIGN_KERNEL_MASK' > #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) > ^ > ./include/linux/kernel.h:48:22: note: in expansion of macro '__ALIGN_KERNEL' > #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) > ^ > arch/arm/mach-omap2/omap-secure.c:65:9: note: in expansion of macro 'ALIGN' > size = ALIGN(size, SECTION_SIZE); > ^ > make[1]: *** [arch/arm/mach-omap2/omap-secure.o] Error 1 Russell, do you have further comment on this? I would try to address them in the next version. Thanks! Vladimir > > Cheers > Vladimir > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel >
diff --git a/arch/arm/include/asm/pgtable-nommu.h b/arch/arm/include/asm/pgtable-nommu.h index add094d..9115801 100644 --- a/arch/arm/include/asm/pgtable-nommu.h +++ b/arch/arm/include/asm/pgtable-nommu.h @@ -35,6 +35,11 @@ #define PGDIR_SIZE (1UL << PGDIR_SHIFT) #define PGDIR_MASK (~(PGDIR_SIZE-1)) + +#define SECTION_SHIFT 20 +#define SECTION_SIZE (1UL << SECTION_SHIFT) +#define SECTION_MASK (~(SECTION_SIZE-1)) + /* FIXME */ #define PAGE_NONE __pgprot(0)
Pickup defines from pgtable-2level.h to make NOMMU build happy. Cc: Russell King <linux@armlinux.org.uk> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com> --- arch/arm/include/asm/pgtable-nommu.h | 5 +++++ 1 file changed, 5 insertions(+)