linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sh: fix kernel build error
@ 2013-11-13 14:38 Wanlong Gao
  2013-11-13 17:14 ` Sergei Shtylyov
  0 siblings, 1 reply; 4+ messages in thread
From: Wanlong Gao @ 2013-11-13 14:38 UTC (permalink / raw)
  To: linux-sh, lethal; +Cc: linux-kernel, fengguang.wu, kbuild-all, Wanlong Gao

   arch/sh/kernel/kgdb.c: In function 'sleeping_thread_to_gdb_regs':
>> arch/sh/kernel/kgdb.c:225:32: error: implicit declaration of function 'task_stack_page' [-Werror=implicit-function-declaration]
>> arch/sh/kernel/kgdb.c:242:23: error: dereferencing pointer to incomplete type
>> arch/sh/kernel/kgdb.c:243:22: error: dereferencing pointer to incomplete type
   arch/sh/kernel/kgdb.c: In function 'singlestep_trap_handler':
>> arch/sh/kernel/kgdb.c:310:27: error: 'SIGTRAP' undeclared (first use in this function)
   arch/sh/kernel/kgdb.c:310:27: note: each undeclared identifier is reported only once for each function it appears in
   cc1: all warnings being treated as errors

This is introduced by commit 16559ae.

CC: kbuild-all@01.org
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
---
 arch/sh/kernel/kgdb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/sh/kernel/kgdb.c b/arch/sh/kernel/kgdb.c
index 38b3139..adad46e 100644
--- a/arch/sh/kernel/kgdb.c
+++ b/arch/sh/kernel/kgdb.c
@@ -13,6 +13,7 @@
 #include <linux/kdebug.h>
 #include <linux/irq.h>
 #include <linux/io.h>
+#include <linux/sched.h>
 #include <asm/cacheflush.h>
 #include <asm/traps.h>
 
-- 
1.8.5.rc1.17.g0ecd94d


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

* Re: [PATCH] sh: fix kernel build error
  2013-11-13 14:38 [PATCH] sh: fix kernel build error Wanlong Gao
@ 2013-11-13 17:14 ` Sergei Shtylyov
  2013-11-14  0:26   ` Wanlong Gao
  0 siblings, 1 reply; 4+ messages in thread
From: Sergei Shtylyov @ 2013-11-13 17:14 UTC (permalink / raw)
  To: Wanlong Gao, linux-sh, lethal; +Cc: linux-kernel, fengguang.wu, kbuild-all

Hello.

On 11/13/2013 05:38 PM, Wanlong Gao wrote:

>     arch/sh/kernel/kgdb.c: In function 'sleeping_thread_to_gdb_regs':
>>> arch/sh/kernel/kgdb.c:225:32: error: implicit declaration of function 'task_stack_page' [-Werror=implicit-function-declaration]
>>> arch/sh/kernel/kgdb.c:242:23: error: dereferencing pointer to incomplete type
>>> arch/sh/kernel/kgdb.c:243:22: error: dereferencing pointer to incomplete type
>     arch/sh/kernel/kgdb.c: In function 'singlestep_trap_handler':
>>> arch/sh/kernel/kgdb.c:310:27: error: 'SIGTRAP' undeclared (first use in this function)
>     arch/sh/kernel/kgdb.c:310:27: note: each undeclared identifier is reported only once for each function it appears in
>     cc1: all warnings being treated as errors

    Strange quoting...

> This is introduced by commit 16559ae.

    Please also specify that commit's summary line in parens.

> CC: kbuild-all@01.org
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>

WBR, Sergei


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

* Re: [PATCH] sh: fix kernel build error
  2013-11-13 17:14 ` Sergei Shtylyov
@ 2013-11-14  0:26   ` Wanlong Gao
  2013-11-14 12:31     ` Sergei Shtylyov
  0 siblings, 1 reply; 4+ messages in thread
From: Wanlong Gao @ 2013-11-14  0:26 UTC (permalink / raw)
  To: Sergei Shtylyov, linux-sh, lethal
  Cc: linux-kernel, fengguang.wu, kbuild-all, Wanlong Gao

On 11/14/2013 02:14 AM, Sergei Shtylyov wrote:
> Hello.
> 
> On 11/13/2013 05:38 PM, Wanlong Gao wrote:
> 
>>     arch/sh/kernel/kgdb.c: In function 'sleeping_thread_to_gdb_regs':
>>>> arch/sh/kernel/kgdb.c:225:32: error: implicit declaration of function 'task_stack_page' [-Werror=implicit-function-declaration]
>>>> arch/sh/kernel/kgdb.c:242:23: error: dereferencing pointer to incomplete type
>>>> arch/sh/kernel/kgdb.c:243:22: error: dereferencing pointer to incomplete type
>>     arch/sh/kernel/kgdb.c: In function 'singlestep_trap_handler':
>>>> arch/sh/kernel/kgdb.c:310:27: error: 'SIGTRAP' undeclared (first use in this function)
>>     arch/sh/kernel/kgdb.c:310:27: note: each undeclared identifier is reported only once for each function it appears in
>>     cc1: all warnings being treated as errors
> 
>    Strange quoting...

Strange? It's the build error log.

> 
>> This is introduced by commit 16559ae.
> 
>    Please also specify that commit's summary line in parens.

commit 16559ae48c76f1ceb970b9719dea62b77eb5d06b
Author: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Date:   Mon Feb 4 15:35:26 2013 -0800

    kgdb: remove #include <linux/serial_8250.h> from kgdb.h
    
    There's no reason kgdb.h itself needs to include the 8250 serial port
    header file.  So push it down to the _very_ limited number of individual
    drivers that need the values in that file, and fix up the places where
    people really wanted serial_core.h and platform_device.h.
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>


And the line caused this build error is:

diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h
index 4dff0c6..c6e091b 100644
--- a/include/linux/kgdb.h
+++ b/include/linux/kgdb.h
@@ -13,7 +13,6 @@
 #ifndef _KGDB_H_
 #define _KGDB_H_
 
-#include <linux/serial_8250.h>
 #include <linux/linkage.h>
 #include <linux/init.h>
 #include <linux/atomic.h>


Thanks,
Wanlong Gao

> 
>> CC: kbuild-all@01.org
>> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
>> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
> 
> WBR, Sergei
> 
> 


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

* Re: [PATCH] sh: fix kernel build error
  2013-11-14  0:26   ` Wanlong Gao
@ 2013-11-14 12:31     ` Sergei Shtylyov
  0 siblings, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2013-11-14 12:31 UTC (permalink / raw)
  To: gaowanlong, linux-sh, lethal; +Cc: linux-kernel, fengguang.wu, kbuild-all

Hello.

On 14-11-2013 4:26, Wanlong Gao wrote:

>>>      arch/sh/kernel/kgdb.c: In function 'sleeping_thread_to_gdb_regs':
>>>>> arch/sh/kernel/kgdb.c:225:32: error: implicit declaration of function 'task_stack_page' [-Werror=implicit-function-declaration]
>>>>> arch/sh/kernel/kgdb.c:242:23: error: dereferencing pointer to incomplete type
>>>>> arch/sh/kernel/kgdb.c:243:22: error: dereferencing pointer to incomplete type
>>>      arch/sh/kernel/kgdb.c: In function 'singlestep_trap_handler':
>>>>> arch/sh/kernel/kgdb.c:310:27: error: 'SIGTRAP' undeclared (first use in this function)
>>>      arch/sh/kernel/kgdb.c:310:27: note: each undeclared identifier is reported only once for each function it appears in
>>>      cc1: all warnings being treated as errors

>>     Strange quoting...

> Strange? It's the build error log.

    I've never seen the leading > characters in gcc's error output.

>>> This is introduced by commit 16559ae.

>>     Please also specify that commit's summary line in parens.

> commit 16559ae48c76f1ceb970b9719dea62b77eb5d06b
> Author: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Date:   Mon Feb 4 15:35:26 2013 -0800

>      kgdb: remove #include <linux/serial_8250.h> from kgdb.h
>
>      There's no reason kgdb.h itself needs to include the 8250 serial port
>      header file.  So push it down to the _very_ limited number of individual
>      drivers that need the values in that file, and fix up the places where
>      people really wanted serial_core.h and platform_device.h.

>      Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>


> And the line caused this build error is:

> diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h
> index 4dff0c6..c6e091b 100644
> --- a/include/linux/kgdb.h
> +++ b/include/linux/kgdb.h
> @@ -13,7 +13,6 @@
>   #ifndef _KGDB_H_
>   #define _KGDB_H_
>
> -#include <linux/serial_8250.h>
>   #include <linux/linkage.h>
>   #include <linux/init.h>
>   #include <linux/atomic.h>

    That's all interesting but what I asked you to do is add the summary line 
("kgdb: remove #include <linux/serial_8250.h> from kgdb.h" in this case) 
enclosed into parentheses to your commit log. There was no need to tell me all 
the gory details of your fix. :-)

> Thanks,
> Wanlong Gao

WBR, Sergei


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

end of thread, other threads:[~2013-11-14 12:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-13 14:38 [PATCH] sh: fix kernel build error Wanlong Gao
2013-11-13 17:14 ` Sergei Shtylyov
2013-11-14  0:26   ` Wanlong Gao
2013-11-14 12:31     ` Sergei Shtylyov

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).