|
Message-ID: <1a358862-0c0c-e4c6-9dd7-f626c0a904b0@arm.com> Date: Tue, 22 Oct 2019 14:56:51 +0100 From: Robin Murphy <robin.murphy@....com> To: Shyam Saini <mayhs11saini@...il.com>, kernel-hardening@...ts.openwall.com Cc: iommu@...ts.linux-foundation.org, linux-kernel@...r.kernel.org, linux-mm@...ck.org, Christoph Hellwig <hch@....de>, Marek Szyprowski <m.szyprowski@...sung.com>, Matthew Wilcox <willy@...radead.org>, Christopher Lameter <cl@...ux.com>, Kees Cook <keescook@...omium.org> Subject: Re: [PATCH V2] kernel: dma: contigous: Make CMA parameters __initdata/__initconst On 20/10/2019 06:03, Shyam Saini wrote: > These parameters are only referenced by __init routine calls during early > boot so they should be marked as __initdata and __initconst accordingly. Reviewed-by: Robin Murphy <robin.murphy@....com> > Cc: Christoph Hellwig <hch@....de> > Cc: Marek Szyprowski <m.szyprowski@...sung.com> > Cc: Robin Murphy <robin.murphy@....com> > Cc: Matthew Wilcox <willy@...radead.org> > Cc: Christopher Lameter <cl@...ux.com> > Cc: Kees Cook <keescook@...omium.org> > Signed-off-by: Shyam Saini <mayhs11saini@...il.com> > --- > V1->V2: > mark cma parameters as __initdata/__initconst > instead of __ro_after_init. As these parameters > are only used by __init calls and never used afterwards > which contrast the __ro_after_init usage. > --- > kernel/dma/contiguous.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/kernel/dma/contiguous.c b/kernel/dma/contiguous.c > index 69cfb4345388..10bfc8c44c54 100644 > --- a/kernel/dma/contiguous.c > +++ b/kernel/dma/contiguous.c > @@ -42,10 +42,10 @@ struct cma *dma_contiguous_default_area; > * Users, who want to set the size of global CMA area for their system > * should use cma= kernel parameter. > */ > -static const phys_addr_t size_bytes = (phys_addr_t)CMA_SIZE_MBYTES * SZ_1M; > -static phys_addr_t size_cmdline = -1; > -static phys_addr_t base_cmdline; > -static phys_addr_t limit_cmdline; > +static const phys_addr_t size_bytes __initconst = (phys_addr_t)CMA_SIZE_MBYTES * SZ_1M; > +static phys_addr_t size_cmdline __initdata = -1; > +static phys_addr_t base_cmdline __initdata; > +static phys_addr_t limit_cmdline __initdata; > > static int __init early_cma(char *p) > { >
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.