From: Greg KH <gregkh@linuxfoundation.org>
To: Alexandre Ghiti <alex@ghiti.fr>
Cc: Palmer Dabbelt <palmer@rivosinc.com>,
stable@vger.kernel.org, linux-riscv@lists.infradead.org,
kernel test robot <lkp@intel.com>
Subject: Re: [PATCH linux-5.15.y] RISC-V: Fix up a cherry-pick warning in setup_vm_final()
Date: Sat, 6 May 2023 09:56:30 +0900 [thread overview]
Message-ID: <2023050606-emote-motion-38b3@gregkh> (raw)
In-Reply-To: <dc9c1ba9-a6b5-67f0-4499-f044fbca92f1@ghiti.fr>
On Mon, May 01, 2023 at 09:33:25AM +0200, Alexandre Ghiti wrote:
> Hi Palmer,
>
> On 4/30/23 00:43, Palmer Dabbelt wrote:
> > This triggers a -Wdeclaration-after-statement as the code has changed a
> > bit since upstream. It might be better to hoist the whole block up, but
> > this is a smaller change so I went with it.
> >
> > arch/riscv/mm/init.c:755:16: warning: mixing declarations and code is a C99 extension [-Wdeclaration-after-statement]
> > unsigned long idx = pgd_index(__fix_to_virt(FIX_FDT));
> > ^
> > 1 warning generated.
> >
> > Reported-by: kernel test robot <lkp@intel.com>
> > Link: https://lore.kernel.org/oe-kbuild-all/202304300429.SXZOA5up-lkp@intel.com/
> > Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
> > ---
> > I haven't even build tested this one, but it looks simple enough that I figured
> > I'd just send it. Be warned, though: I broke glibc and missed a merged
> > conflict yesterday...
> > ---
> > arch/riscv/mm/init.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
> > index e800d7981e99..8d67f43f1865 100644
> > --- a/arch/riscv/mm/init.c
> > +++ b/arch/riscv/mm/init.c
> > @@ -717,6 +717,7 @@ static void __init setup_vm_final(void)
> > uintptr_t va, map_size;
> > phys_addr_t pa, start, end;
> > u64 i;
> > + unsigned long idx;
> > /**
> > * MMU is enabled at this point. But page table setup is not complete yet.
> > @@ -735,7 +736,7 @@ static void __init setup_vm_final(void)
> > * directly in swapper_pg_dir in addition to the pgd entry that points
> > * to fixmap_pte.
> > */
> > - unsigned long idx = pgd_index(__fix_to_virt(FIX_FDT));
> > + idx = pgd_index(__fix_to_virt(FIX_FDT));
> > set_pgd(&swapper_pg_dir[idx], early_pg_dir[idx]);
> > #endif
>
> The above results to in rv64:
>
> ../arch/riscv/mm/init.c: In function ‘setup_vm_final’:
> ../arch/riscv/mm/init.c:720:16: warning: unused variable ‘idx’
> [-Wunused-variable]
> 720 | unsigned long idx;
>
>
> The following fixes this warning:
>
>
> diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
> index 8d67f43f1865..e69d82d573f1 100644
> --- a/arch/riscv/mm/init.c
> +++ b/arch/riscv/mm/init.c
> @@ -717,7 +717,7 @@ static void __init setup_vm_final(void)
> uintptr_t va, map_size;
> phys_addr_t pa, start, end;
> u64 i;
> - unsigned long idx;
> + unsigned long idx __maybe_unused;
>
> /**
> * MMU is enabled at this point. But page table setup is not
> complete yet.
>
>
> Let me know if you want me to send a proper patch as I'm the one to blame
> here.
As the original fix here will not work, a "correct" one might be best to
have :)
thanks,
greg k-h
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <gregkh@linuxfoundation.org>
To: Alexandre Ghiti <alex@ghiti.fr>
Cc: Palmer Dabbelt <palmer@rivosinc.com>,
stable@vger.kernel.org, linux-riscv@lists.infradead.org,
kernel test robot <lkp@intel.com>
Subject: Re: [PATCH linux-5.15.y] RISC-V: Fix up a cherry-pick warning in setup_vm_final()
Date: Sat, 6 May 2023 09:56:30 +0900 [thread overview]
Message-ID: <2023050606-emote-motion-38b3@gregkh> (raw)
In-Reply-To: <dc9c1ba9-a6b5-67f0-4499-f044fbca92f1@ghiti.fr>
On Mon, May 01, 2023 at 09:33:25AM +0200, Alexandre Ghiti wrote:
> Hi Palmer,
>
> On 4/30/23 00:43, Palmer Dabbelt wrote:
> > This triggers a -Wdeclaration-after-statement as the code has changed a
> > bit since upstream. It might be better to hoist the whole block up, but
> > this is a smaller change so I went with it.
> >
> > arch/riscv/mm/init.c:755:16: warning: mixing declarations and code is a C99 extension [-Wdeclaration-after-statement]
> > unsigned long idx = pgd_index(__fix_to_virt(FIX_FDT));
> > ^
> > 1 warning generated.
> >
> > Reported-by: kernel test robot <lkp@intel.com>
> > Link: https://lore.kernel.org/oe-kbuild-all/202304300429.SXZOA5up-lkp@intel.com/
> > Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
> > ---
> > I haven't even build tested this one, but it looks simple enough that I figured
> > I'd just send it. Be warned, though: I broke glibc and missed a merged
> > conflict yesterday...
> > ---
> > arch/riscv/mm/init.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
> > index e800d7981e99..8d67f43f1865 100644
> > --- a/arch/riscv/mm/init.c
> > +++ b/arch/riscv/mm/init.c
> > @@ -717,6 +717,7 @@ static void __init setup_vm_final(void)
> > uintptr_t va, map_size;
> > phys_addr_t pa, start, end;
> > u64 i;
> > + unsigned long idx;
> > /**
> > * MMU is enabled at this point. But page table setup is not complete yet.
> > @@ -735,7 +736,7 @@ static void __init setup_vm_final(void)
> > * directly in swapper_pg_dir in addition to the pgd entry that points
> > * to fixmap_pte.
> > */
> > - unsigned long idx = pgd_index(__fix_to_virt(FIX_FDT));
> > + idx = pgd_index(__fix_to_virt(FIX_FDT));
> > set_pgd(&swapper_pg_dir[idx], early_pg_dir[idx]);
> > #endif
>
> The above results to in rv64:
>
> ../arch/riscv/mm/init.c: In function ‘setup_vm_final’:
> ../arch/riscv/mm/init.c:720:16: warning: unused variable ‘idx’
> [-Wunused-variable]
> 720 | unsigned long idx;
>
>
> The following fixes this warning:
>
>
> diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
> index 8d67f43f1865..e69d82d573f1 100644
> --- a/arch/riscv/mm/init.c
> +++ b/arch/riscv/mm/init.c
> @@ -717,7 +717,7 @@ static void __init setup_vm_final(void)
> uintptr_t va, map_size;
> phys_addr_t pa, start, end;
> u64 i;
> - unsigned long idx;
> + unsigned long idx __maybe_unused;
>
> /**
> * MMU is enabled at this point. But page table setup is not
> complete yet.
>
>
> Let me know if you want me to send a proper patch as I'm the one to blame
> here.
As the original fix here will not work, a "correct" one might be best to
have :)
thanks,
greg k-h
next prev parent reply other threads:[~2023-05-06 5:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-29 22:43 [PATCH linux-5.15.y] RISC-V: Fix up a cherry-pick warning in setup_vm_final() Palmer Dabbelt
2023-04-29 22:43 ` Palmer Dabbelt
2023-05-01 7:33 ` Alexandre Ghiti
2023-05-01 7:33 ` Alexandre Ghiti
2023-05-06 0:56 ` Greg KH [this message]
2023-05-06 0:56 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2023050606-emote-motion-38b3@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=alex@ghiti.fr \
--cc=linux-riscv@lists.infradead.org \
--cc=lkp@intel.com \
--cc=palmer@rivosinc.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.