Hi Geert!
On 7/15/20 9:27 AM, Geert Uytterhoeven wrote:
> Hi Adrian,
>
> On Wed, Jul 15, 2020 at 1:14 AM John Paul Adrian Glaubitz
> <[email protected]> wrote:
>> However, independent of Christoph's series, the kernels throws two
>> backtraces during
>> boot which I think should require a git bisect (unless I missed a
>> configuration option
>> as I trimmed down the kernel a bit to make sure it's not too big).
>>
>> See the traces below and let me know what you think.
>
>> [ 1.560000] sh-sci.1: ttySC1 at MMIO 0xffeb0000 (irq = 44, base_baud = 0)
>> is a scif
>> [ 1.560000] BUG: spinlock bad magic on CPU#0, swapper/1
>> [ 1.560000] lock: sci_ports+0x1d8/0xb10, .magic: 00000000, .owner:
>> <none>/-1, .owner_cpu: 0
>
> [PATCH v1] serial: core: Initialise spin lock before use in
> uart_configure_port()
> https://lore.kernel.org/r/[email protected]
Yes, this patch fixes this particular problem.
There is just a typo in the code which causes a build problem but it's fixed by
replacing
"uport" with "port":
CC kernel/module.o
drivers/tty/serial/serial_core.c: In function ‘uart_configure_port’:
drivers/tty/serial/serial_core.c:2385:33: error: ‘uport’ undeclared (first use
in this function); did you mean ‘port’?
2385 | uart_any_port_spin_lock_init(uport);
| ^~~~~
| port
drivers/tty/serial/serial_core.c:2385:33: note: each undeclared identifier is
reported only once for each function it appears in
make[3]: *** [scripts/Makefile.build:280: drivers/tty/serial/serial_core.o]
Error 1
make[2]: *** [scripts/Makefile.build:497: drivers/tty/serial] Error 2
make[1]: *** [scripts/Makefile.build:497: drivers/tty] Error 2
make[1]: *** Waiting for unfinished jobs....
AR drivers/base/firmware_loader/built-in.a
Will test the other changes in a minute.
Can we include the serial fix?
Adrian
--
.''`. John Paul Adrian Glaubitz
: :' : Debian Developer - [email protected]
`. `' Freie Universitaet Berlin - [email protected]
`- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913