2020-07-16 06:16:06

by Zong Li

[permalink] [raw]
Subject: [PATCH 0/2] Fix some build warnings when W=1

These patches fix some build warnings when W=1, the most of warnings are
missing prototype as follows:

arch/riscv/mm/init.c:520:13: warning: no previous prototype for 'resource_init' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:130:5: warning: no previous prototype for 'set_memory_ro' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:136:5: warning: no previous prototype for 'set_memory_rw' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:142:5: warning: no previous prototype for 'set_memory_x' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:147:5: warning: no previous prototype for 'set_memory_nx' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:152:5: warning: no previous prototype for 'set_direct_map_invalid_noflush' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:169:5: warning: no previous prototype for 'set_direct_map_default_noflush' [-Wmissing-prototypes]
arch/riscv/mm/pageattr.c:97:1: warning: 'static' is not at beginning of declaration [-Wold-style-declaration]

Zong Li (2):
riscv: Fix build warning for mm/init
riscv: fix build warning of mm/pageattr

arch/riscv/mm/init.c | 2 +-
arch/riscv/mm/pageattr.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)

--
2.27.0


2020-07-16 06:16:14

by Zong Li

[permalink] [raw]
Subject: [PATCH 2/2] riscv: fix build warning of mm/pageattr

Add hearder for missing prototype. Also, static keyword should be at
beginning of declaration.

Signed-off-by: Zong Li <[email protected]>
---
arch/riscv/mm/pageattr.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/riscv/mm/pageattr.c b/arch/riscv/mm/pageattr.c
index 289a9a5ea5b5..19fecb362d81 100644
--- a/arch/riscv/mm/pageattr.c
+++ b/arch/riscv/mm/pageattr.c
@@ -7,6 +7,7 @@
#include <linux/pgtable.h>
#include <asm/tlbflush.h>
#include <asm/bitops.h>
+#include <asm/set_memory.h>

struct pageattr_masks {
pgprot_t set_mask;
@@ -94,7 +95,7 @@ static int pageattr_pte_hole(unsigned long addr, unsigned long next,
return 0;
}

-const static struct mm_walk_ops pageattr_ops = {
+static const struct mm_walk_ops pageattr_ops = {
.pgd_entry = pageattr_pgd_entry,
.p4d_entry = pageattr_p4d_entry,
.pud_entry = pageattr_pud_entry,
--
2.27.0

2020-07-16 06:19:09

by Zong Li

[permalink] [raw]
Subject: [PATCH 1/2] riscv: Fix build warning for mm/init

Add static keyword for resource_init, this function is only used in this
object file.

Signed-off-by: Zong Li <[email protected]>
---
arch/riscv/mm/init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
index 92002952c621..66f5952f39c0 100644
--- a/arch/riscv/mm/init.c
+++ b/arch/riscv/mm/init.c
@@ -517,7 +517,7 @@ void mark_rodata_ro(void)
}
#endif

-void __init resource_init(void)
+static void __init resource_init(void)
{
struct memblock_region *region;

--
2.27.0

2020-07-16 07:14:30

by Pekka Enberg

[permalink] [raw]
Subject: Re: [PATCH 2/2] riscv: fix build warning of mm/pageattr

On Thu, Jul 16, 2020 at 9:16 AM Zong Li <[email protected]> wrote:
>
> Add hearder for missing prototype. Also, static keyword should be at
> beginning of declaration.
>
> Signed-off-by: Zong Li <[email protected]>

Which prototype is missing?

- Pekka

2020-07-16 07:14:31

by Pekka Enberg

[permalink] [raw]
Subject: Re: [PATCH 2/2] riscv: fix build warning of mm/pageattr

On Thu, Jul 16, 2020 at 10:11 AM Pekka Enberg <[email protected]> wrote:
>
> On Thu, Jul 16, 2020 at 9:16 AM Zong Li <[email protected]> wrote:
> >
> > Add hearder for missing prototype. Also, static keyword should be at
> > beginning of declaration.
> >
> > Signed-off-by: Zong Li <[email protected]>
>
> Which prototype is missing?

Aah, never mind, you mention them in the cover letter. I think patch
description would be a better place to ensure they end up in git logs.

For both patches:

Reviewed-by: Pekka Enberg <[email protected]>

- Pekka

2020-07-16 07:28:00

by Andreas Schwab

[permalink] [raw]
Subject: Re: [PATCH 2/2] riscv: fix build warning of mm/pageattr

On Jul 16 2020, Zong Li wrote:

> Add hearder for missing prototype. Also, static keyword should be at

s/hearder/header/

Andreas.

--
Andreas Schwab, [email protected]
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
"And now for something completely different."

2020-07-16 07:50:25

by Zong Li

[permalink] [raw]
Subject: Re: [PATCH 2/2] riscv: fix build warning of mm/pageattr

On Thu, Jul 16, 2020 at 3:24 PM Andreas Schwab <[email protected]> wrote:
>
> On Jul 16 2020, Zong Li wrote:
>
> > Add hearder for missing prototype. Also, static keyword should be at
>
> s/hearder/header/
>
> Andreas.
>
> --
> Andreas Schwab, [email protected]
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
> "And now for something completely different."

Hi all,

Let me describe the details in the commit message and fix the typo in
the next version.
Thanks for reviewing.

2020-07-25 18:26:01

by Palmer Dabbelt

[permalink] [raw]
Subject: Re: [PATCH 0/2] Fix some build warnings when W=1

On Wed, 15 Jul 2020 23:15:25 PDT (-0700), [email protected] wrote:
> These patches fix some build warnings when W=1, the most of warnings are
> missing prototype as follows:
>
> arch/riscv/mm/init.c:520:13: warning: no previous prototype for 'resource_init' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:130:5: warning: no previous prototype for 'set_memory_ro' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:136:5: warning: no previous prototype for 'set_memory_rw' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:142:5: warning: no previous prototype for 'set_memory_x' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:147:5: warning: no previous prototype for 'set_memory_nx' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:152:5: warning: no previous prototype for 'set_direct_map_invalid_noflush' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:169:5: warning: no previous prototype for 'set_direct_map_default_noflush' [-Wmissing-prototypes]
> arch/riscv/mm/pageattr.c:97:1: warning: 'static' is not at beginning of declaration [-Wold-style-declaration]
>
> Zong Li (2):
> riscv: Fix build warning for mm/init
> riscv: fix build warning of mm/pageattr
>
> arch/riscv/mm/init.c | 2 +-
> arch/riscv/mm/pageattr.c | 3 ++-
> 2 files changed, 3 insertions(+), 2 deletions(-)

Thanks, these are on for-next.