linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled
@ 2021-05-25 10:50 Bixuan Cui
  2021-05-25 18:21 ` Stephen Boyd
  2021-05-26 12:09 ` Jessica Yu
  0 siblings, 2 replies; 4+ messages in thread
From: Bixuan Cui @ 2021-05-25 10:50 UTC (permalink / raw)
  To: jeyu; +Cc: sfr, swboyd, akpm, linux-kernel, Bixuan Cui

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="y", Size: 1434 bytes --]

Fix build error when disable CONFIG_SYSFS:
kernel/module.c:2805:8: error: implicit declaration of function ‘sect_empty’; did you mean ‘desc_empty’? [-Werror=implicit-function-declaration]
 2805 |   if (!sect_empty(sechdr) && sechdr->sh_type == SHT_NOTE &&

Fixes: 9ee6682aa528 ("module: add printk formats to add module build ID to stacktraces")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Bixuan Cui <cuibixuan@huawei.com>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
---
Changes from v2:
Put the sect_empty() definition outside of #ifdef CONFIG_SYSFS.

 kernel/module.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/kernel/module.c b/kernel/module.c
index decf4601e943..0543b44db81d 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -1462,6 +1462,13 @@ resolve_symbol_wait(struct module *mod,
 	return ksym;
 }
 
+#ifdef CONFIG_KALLSYMS
+static inline bool sect_empty(const Elf_Shdr *sect)
+{
+	return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
+}
+#endif
+
 /*
  * /sys/module/foo/sections stuff
  * J. Corbet <corbet@lwn.net>
@@ -1469,11 +1476,6 @@ resolve_symbol_wait(struct module *mod,
 #ifdef CONFIG_SYSFS
 
 #ifdef CONFIG_KALLSYMS
-static inline bool sect_empty(const Elf_Shdr *sect)
-{
-	return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
-}
-
 struct module_sect_attr {
 	struct bin_attribute battr;
 	unsigned long address;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled
  2021-05-25 10:50 [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled Bixuan Cui
@ 2021-05-25 18:21 ` Stephen Boyd
  2021-05-26 12:09 ` Jessica Yu
  1 sibling, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2021-05-25 18:21 UTC (permalink / raw)
  To: Bixuan Cui, jeyu; +Cc: sfr, akpm, linux-kernel

Quoting Bixuan Cui (2021-05-25 03:50:49)
> Fix build error when disable CONFIG_SYSFS:
> kernel/module.c:2805:8: error: implicit declaration of function ���sect_empty���; did you mean ���desc_empty���? [-Werror=implicit-function-declaration]
>  2805 |   if (!sect_empty(sechdr) && sechdr->sh_type == SHT_NOTE &&
>
> Fixes: 9ee6682aa528 ("module: add printk formats to add module build ID to stacktraces")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Bixuan Cui <cuibixuan@huawei.com>
> Signed-off-by: Stephen Boyd <swboyd@chromium.org>

Ok. The SoB chain is wrong but you may have my SoB.

> ---
> Changes from v2:
> Put the sect_empty() definition outside of #ifdef CONFIG_SYSFS.
>
>  kernel/module.c | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/kernel/module.c b/kernel/module.c
> index decf4601e943..0543b44db81d 100644
> --- a/kernel/module.c
> +++ b/kernel/module.c
> @@ -1462,6 +1462,13 @@ resolve_symbol_wait(struct module *mod,
>         return ksym;
>  }
>
> +#ifdef CONFIG_KALLSYMS
> +static inline bool sect_empty(const Elf_Shdr *sect)
> +{
> +       return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
> +}
> +#endif
> +
>  /*
>   * /sys/module/foo/sections stuff
>   * J. Corbet <corbet@lwn.net>
> @@ -1469,11 +1476,6 @@ resolve_symbol_wait(struct module *mod,
>  #ifdef CONFIG_SYSFS
>
>  #ifdef CONFIG_KALLSYMS
> -static inline bool sect_empty(const Elf_Shdr *sect)
> -{
> -       return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
> -}
> -
>  struct module_sect_attr {
>         struct bin_attribute battr;
>         unsigned long address;
> --
> 2.17.1
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled
  2021-05-25 10:50 [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled Bixuan Cui
  2021-05-25 18:21 ` Stephen Boyd
@ 2021-05-26 12:09 ` Jessica Yu
  2021-05-27  1:47   ` Bixuan Cui
  1 sibling, 1 reply; 4+ messages in thread
From: Jessica Yu @ 2021-05-26 12:09 UTC (permalink / raw)
  To: Bixuan Cui; +Cc: sfr, swboyd, akpm, linux-kernel

+++ Bixuan Cui [25/05/21 18:50 +0800]:
>Fix build error when disable CONFIG_SYSFS:
>kernel/module.c:2805:8: error: implicit declaration of function ‘sect_empty’; did you mean ‘desc_empty’? [-Werror=implicit-function-declaration]
> 2805 |   if (!sect_empty(sechdr) && sechdr->sh_type == SHT_NOTE &&
>
>Fixes: 9ee6682aa528 ("module: add printk formats to add module build ID to stacktraces")

Hm, can't find this commit in the next-20210526 tree. Commit 7685f91fed25
("module: add printk formats to add module build ID to stacktraces")
seems to be the correct one.

>Reported-by: Hulk Robot <hulkci@huawei.com>
>Signed-off-by: Bixuan Cui <cuibixuan@huawei.com>
>Signed-off-by: Stephen Boyd <swboyd@chromium.org>

Acked-by: Jessica Yu <jeyu@kernel.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled
  2021-05-26 12:09 ` Jessica Yu
@ 2021-05-27  1:47   ` Bixuan Cui
  0 siblings, 0 replies; 4+ messages in thread
From: Bixuan Cui @ 2021-05-27  1:47 UTC (permalink / raw)
  To: Jessica Yu; +Cc: sfr, swboyd, akpm, linux-kernel



On 2021/5/26 20:09, Jessica Yu wrote:
>> Fix build error when disable CONFIG_SYSFS:
>> kernel/module.c:2805:8: error: implicit declaration of function ‘sect_empty’; did you mean ‘desc_empty’? [-Werror=implicit-function-declaration]
>> 2805 |   if (!sect_empty(sechdr) && sechdr->sh_type == SHT_NOTE &&
>>
>> Fixes: 9ee6682aa528 ("module: add printk formats to add module build ID to stacktraces")
> 
> Hm, can't find this commit in the next-20210526 tree. Commit 7685f91fed25
> ("module: add printk formats to add module build ID to stacktraces")
> seems to be the correct one.
It was my linux-next repository that was abnormal. :-(  I re-downloaded it and commit id is 7685f91fed25.

Thanks,
Bixuan Cui

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-27  1:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-25 10:50 [PATCH -next v2] module: fix build error when CONFIG_SYSFS is disabled Bixuan Cui
2021-05-25 18:21 ` Stephen Boyd
2021-05-26 12:09 ` Jessica Yu
2021-05-27  1:47   ` Bixuan Cui

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).