* mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning")
@ 2023-08-30 11:40 Sudip Mukherjee (Codethink)
2023-08-30 13:06 ` Linux regression tracking (Thorsten Leemhuis)
0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee (Codethink) @ 2023-08-30 11:40 UTC (permalink / raw)
To: Guo Ren, Oleg Nesterov, Guo Ren
Cc: linux-csky, linux-kernel, Linus Torvalds, regressions
Hi All,
The latest mainline kernel branch fails to build csky allmodconfig with
the error:
In file included from ./arch/csky/include/asm/ptrace.h:7,
from ./arch/csky/include/asm/processor.h:8,
from ./include/linux/prefetch.h:15,
from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
./arch/csky/include/asm/traps.h:43:11: error: expected ';' before 'void'
43 | asmlinkage void do_trap_unknown(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:44:11: error: expected ';' before 'void'
44 | asmlinkage void do_trap_zdiv(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:45:11: error: expected ';' before 'void'
45 | asmlinkage void do_trap_buserr(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:46:11: error: expected ';' before 'void'
46 | asmlinkage void do_trap_misaligned(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:47:11: error: expected ';' before 'void'
47 | asmlinkage void do_trap_bkpt(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:48:11: error: expected ';' before 'void'
48 | asmlinkage void do_trap_illinsn(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:49:11: error: expected ';' before 'void'
49 | asmlinkage void do_trap_fpe(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:50:11: error: expected ';' before 'void'
50 | asmlinkage void do_trap_priv(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:51:11: error: expected ';' before 'void'
51 | asmlinkage void trap_c(struct pt_regs *regs);
| ^~~~~
| ;
./arch/csky/include/asm/traps.h:53:11: error: expected ';' before 'void'
53 | asmlinkage void do_notify_resume(struct pt_regs *regs,
| ^~~~~
| ;
In file included from ./arch/csky/include/asm/processor.h:8,
from ./include/linux/prefetch.h:15,
from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
./arch/csky/include/asm/ptrace.h:99:11: error: expected ';' before 'int'
99 | asmlinkage int syscall_trace_enter(struct pt_regs *regs);
| ^~~~
| ;
./arch/csky/include/asm/ptrace.h:100:11: error: expected ';' before 'void'
100 | asmlinkage void syscall_trace_exit(struct pt_regs *regs);
| ^~~~~
| ;
git bisect pointed to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning").
Reverting the commit has fixed the build failure.
I will be happy to test any patch or provide any extra log if needed.
#regzbot introduced: c8171a86b27401aa1f492dd1f080f3102264f1ab
--
Regards
Sudip
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning")
2023-08-30 11:40 mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning") Sudip Mukherjee (Codethink)
@ 2023-08-30 13:06 ` Linux regression tracking (Thorsten Leemhuis)
2023-08-31 1:15 ` Guo Ren
0 siblings, 1 reply; 4+ messages in thread
From: Linux regression tracking (Thorsten Leemhuis) @ 2023-08-30 13:06 UTC (permalink / raw)
To: Sudip Mukherjee (Codethink), Guo Ren, Oleg Nesterov, Guo Ren
Cc: linux-csky, linux-kernel, Linus Torvalds, regressions
On 30.08.23 13:40, Sudip Mukherjee (Codethink) wrote:
>
> The latest mainline kernel branch fails to build csky allmodconfig with
> the error:
Thx for the report and involving regzbot. To make one thing more obvious:
Guo Ren, it seems to be caused by a commit of yours.
And fun fact: seem 0day bot found the same problem nearly thee weeks
ago, but nobody cared afaics:
https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
Ciao, Thorsten
> In file included from ./arch/csky/include/asm/ptrace.h:7,
> from ./arch/csky/include/asm/processor.h:8,
> from ./include/linux/prefetch.h:15,
> from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
> ./arch/csky/include/asm/traps.h:43:11: error: expected ';' before 'void'
> 43 | asmlinkage void do_trap_unknown(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:44:11: error: expected ';' before 'void'
> 44 | asmlinkage void do_trap_zdiv(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:45:11: error: expected ';' before 'void'
> 45 | asmlinkage void do_trap_buserr(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:46:11: error: expected ';' before 'void'
> 46 | asmlinkage void do_trap_misaligned(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:47:11: error: expected ';' before 'void'
> 47 | asmlinkage void do_trap_bkpt(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:48:11: error: expected ';' before 'void'
> 48 | asmlinkage void do_trap_illinsn(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:49:11: error: expected ';' before 'void'
> 49 | asmlinkage void do_trap_fpe(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:50:11: error: expected ';' before 'void'
> 50 | asmlinkage void do_trap_priv(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:51:11: error: expected ';' before 'void'
> 51 | asmlinkage void trap_c(struct pt_regs *regs);
> | ^~~~~
> | ;
> ./arch/csky/include/asm/traps.h:53:11: error: expected ';' before 'void'
> 53 | asmlinkage void do_notify_resume(struct pt_regs *regs,
> | ^~~~~
> | ;
> In file included from ./arch/csky/include/asm/processor.h:8,
> from ./include/linux/prefetch.h:15,
> from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
> ./arch/csky/include/asm/ptrace.h:99:11: error: expected ';' before 'int'
> 99 | asmlinkage int syscall_trace_enter(struct pt_regs *regs);
> | ^~~~
> | ;
> ./arch/csky/include/asm/ptrace.h:100:11: error: expected ';' before 'void'
> 100 | asmlinkage void syscall_trace_exit(struct pt_regs *regs);
> | ^~~~~
> | ;
>
> git bisect pointed to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning").
>
> Reverting the commit has fixed the build failure.
>
> I will be happy to test any patch or provide any extra log if needed.
>
> #regzbot introduced: c8171a86b27401aa1f492dd1f080f3102264f1ab
#regzbot monitor:
https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning")
2023-08-30 13:06 ` Linux regression tracking (Thorsten Leemhuis)
@ 2023-08-31 1:15 ` Guo Ren
2023-08-31 5:44 ` Linux regression tracking #update (Thorsten Leemhuis)
0 siblings, 1 reply; 4+ messages in thread
From: Guo Ren @ 2023-08-31 1:15 UTC (permalink / raw)
To: Linux regressions mailing list
Cc: Sudip Mukherjee (Codethink),
Guo Ren, Oleg Nesterov, linux-csky, linux-kernel, Linus Torvalds
On Wed, Aug 30, 2023 at 9:07 PM Linux regression tracking (Thorsten
Leemhuis) <regressions@leemhuis.info> wrote:
>
> On 30.08.23 13:40, Sudip Mukherjee (Codethink) wrote:
> >
> > The latest mainline kernel branch fails to build csky allmodconfig with
> > the error:
>
> Thx for the report and involving regzbot. To make one thing more obvious:
>
> Guo Ren, it seems to be caused by a commit of yours.
>
> And fun fact: seem 0day bot found the same problem nearly thee weeks
> ago, but nobody cared afaics:
> https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
>
> Ciao, Thorsten
>
> > In file included from ./arch/csky/include/asm/ptrace.h:7,
> > from ./arch/csky/include/asm/processor.h:8,
> > from ./include/linux/prefetch.h:15,
> > from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
> > ./arch/csky/include/asm/traps.h:43:11: error: expected ';' before 'void'
> > 43 | asmlinkage void do_trap_unknown(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:44:11: error: expected ';' before 'void'
> > 44 | asmlinkage void do_trap_zdiv(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:45:11: error: expected ';' before 'void'
> > 45 | asmlinkage void do_trap_buserr(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:46:11: error: expected ';' before 'void'
> > 46 | asmlinkage void do_trap_misaligned(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:47:11: error: expected ';' before 'void'
> > 47 | asmlinkage void do_trap_bkpt(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:48:11: error: expected ';' before 'void'
> > 48 | asmlinkage void do_trap_illinsn(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:49:11: error: expected ';' before 'void'
> > 49 | asmlinkage void do_trap_fpe(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:50:11: error: expected ';' before 'void'
> > 50 | asmlinkage void do_trap_priv(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:51:11: error: expected ';' before 'void'
> > 51 | asmlinkage void trap_c(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> > ./arch/csky/include/asm/traps.h:53:11: error: expected ';' before 'void'
> > 53 | asmlinkage void do_notify_resume(struct pt_regs *regs,
> > | ^~~~~
> > | ;
> > In file included from ./arch/csky/include/asm/processor.h:8,
> > from ./include/linux/prefetch.h:15,
> > from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
> > ./arch/csky/include/asm/ptrace.h:99:11: error: expected ';' before 'int'
> > 99 | asmlinkage int syscall_trace_enter(struct pt_regs *regs);
> > | ^~~~
> > | ;
> > ./arch/csky/include/asm/ptrace.h:100:11: error: expected ';' before 'void'
> > 100 | asmlinkage void syscall_trace_exit(struct pt_regs *regs);
> > | ^~~~~
> > | ;
> >
> > git bisect pointed to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning").
> >
> > Reverting the commit has fixed the build failure.
> >
> > I will be happy to test any patch or provide any extra log if needed.
> >
> > #regzbot introduced: c8171a86b27401aa1f492dd1f080f3102264f1ab
>
> #regzbot monitor:
> https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
Sorry, Fixes have been sent, I'm waiting for it into the linux-next,
and then I will send 2nd pull request.
https://lore.kernel.org/linux-csky/20230830094653.2833443-1-guoren@kernel.org/
--
Best Regards
Guo Ren
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning")
2023-08-31 1:15 ` Guo Ren
@ 2023-08-31 5:44 ` Linux regression tracking #update (Thorsten Leemhuis)
0 siblings, 0 replies; 4+ messages in thread
From: Linux regression tracking #update (Thorsten Leemhuis) @ 2023-08-31 5:44 UTC (permalink / raw)
To: Guo Ren, Linux regressions mailing list
Cc: Sudip Mukherjee (Codethink),
Guo Ren, Oleg Nesterov, linux-csky, linux-kernel, Linus Torvalds
On 31.08.23 03:15, Guo Ren wrote:
> On Wed, Aug 30, 2023 at 9:07 PM Linux regression tracking (Thorsten
> Leemhuis) <regressions@leemhuis.info> wrote:
>>
>> On 30.08.23 13:40, Sudip Mukherjee (Codethink) wrote:
>>>
>>> The latest mainline kernel branch fails to build csky allmodconfig with
>>> the error:
>>
>> Thx for the report and involving regzbot. To make one thing more obvious:
>>
>> Guo Ren, it seems to be caused by a commit of yours.
>>
>> And fun fact: seem 0day bot found the same problem nearly thee weeks
>> ago, but nobody cared afaics:
>> https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
>>
>>> In file included from ./arch/csky/include/asm/ptrace.h:7,
>>> from ./arch/csky/include/asm/processor.h:8,
>>> from ./include/linux/prefetch.h:15,
>>> from drivers/net/ethernet/intel/i40e/i40e_txrx.c:4:
>>> ./arch/csky/include/asm/traps.h:43:11: error: expected ';' before 'void'
>>> 43 | asmlinkage void do_trap_unknown(struct pt_regs *regs);
>>> | ^~~~~
>>> | ;
>>> [...]
>>>
>>> git bisect pointed to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning").
>>>
>>> Reverting the commit has fixed the build failure.
>>>
>>> I will be happy to test any patch or provide any extra log if needed.
>>>
>>> #regzbot introduced: c8171a86b27401aa1f492dd1f080f3102264f1ab
>>
>> #regzbot monitor:
>> https://lore.kernel.org/all/202308120502.MXpchFC1-lkp@intel.com/
>
> Sorry, Fixes have been sent, I'm waiting for it into the linux-next,
> and then I will send 2nd pull request.
>
> https://lore.kernel.org/linux-csky/20230830094653.2833443-1-guoren@kernel.org/
Ohh, it seems Guenter ran into this as well... Whatever, things happen.
Thx for taking care of this.
#regzbot monitor:
https://lore.kernel.org/all/20230830094653.2833443-1-guoren@kernel.org/
#regzbot monitor:
https://lore.kernel.org/all/cd3924fb-8639-4fa5-8aae-bc2b20a63dec@roeck-us.net/
#regzbot fix: csky: Fixup compile error
Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)
--
Everything you wanna know about Linux kernel regression tracking:
https://linux-regtracking.leemhuis.info/about/#tldr
That page also explains what to do if mails like this annoy you.
#regzbot ignore-activity
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-08-31 5:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-30 11:40 mainline build failure due to c8171a86b274 ("csky: Fixup -Wmissing-prototypes warning") Sudip Mukherjee (Codethink)
2023-08-30 13:06 ` Linux regression tracking (Thorsten Leemhuis)
2023-08-31 1:15 ` Guo Ren
2023-08-31 5:44 ` Linux regression tracking #update (Thorsten Leemhuis)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®