Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] parselogs: Add bluetoothd error to list of mips
@ 2018-07-30 15:04 Armin Kuster
  2018-07-30 15:55 ` Burton, Ross
  0 siblings, 1 reply; 3+ messages in thread
From: Armin Kuster @ 2018-07-30 15:04 UTC (permalink / raw)
  To: akuster808, openembedded-core

do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access from 0000000000000030
[   21.402249] epc = 000000852c3a0438 in libc-2.27.so[852c310000+19b000]
[   21.402505] ra  = 000000852c3ae0cc in libc-2.27.so[852c310000+19b000]

This causes the xorg testcase to fail.

[Yocto #12845]

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index f0bcd16..e902299 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -90,10 +90,12 @@ ignore_errors = {
         'Failed to load module "glx"',
         'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
         'cacheinfo: Failed to find cpu0 device node',
+        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
         ] + common_errors,
     'qemumips64' : [
         'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
         'cacheinfo: Failed to find cpu0 device node',
+        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
          ] + common_errors,
     'qemuppc' : [
         'PCI 0000:00 Cannot reserve Legacy IO [io  0x0000-0x0fff]',
-- 
2.7.4



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

* Re: [PATCH] parselogs: Add bluetoothd error to list of mips
  2018-07-30 15:04 [PATCH] parselogs: Add bluetoothd error to list of mips Armin Kuster
@ 2018-07-30 15:55 ` Burton, Ross
  2018-07-30 16:17   ` akuster808
  0 siblings, 1 reply; 3+ messages in thread
From: Burton, Ross @ 2018-07-30 15:55 UTC (permalink / raw)
  To: Armin Kuster; +Cc: OE-core

Wouldn't it be better to fix bluez?  It's crashing....

Ross

On 30 July 2018 at 16:04, Armin Kuster <akuster808@gmail.com> wrote:
> do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access from 0000000000000030
> [   21.402249] epc = 000000852c3a0438 in libc-2.27.so[852c310000+19b000]
> [   21.402505] ra  = 000000852c3ae0cc in libc-2.27.so[852c310000+19b000]
>
> This causes the xorg testcase to fail.
>
> [Yocto #12845]
>
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
> ---
>  meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
> index f0bcd16..e902299 100644
> --- a/meta/lib/oeqa/runtime/cases/parselogs.py
> +++ b/meta/lib/oeqa/runtime/cases/parselogs.py
> @@ -90,10 +90,12 @@ ignore_errors = {
>          'Failed to load module "glx"',
>          'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
>          'cacheinfo: Failed to find cpu0 device node',
> +        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
>          ] + common_errors,
>      'qemumips64' : [
>          'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
>          'cacheinfo: Failed to find cpu0 device node',
> +        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
>           ] + common_errors,
>      'qemuppc' : [
>          'PCI 0000:00 Cannot reserve Legacy IO [io  0x0000-0x0fff]',
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] parselogs: Add bluetoothd error to list of mips
  2018-07-30 15:55 ` Burton, Ross
@ 2018-07-30 16:17   ` akuster808
  0 siblings, 0 replies; 3+ messages in thread
From: akuster808 @ 2018-07-30 16:17 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core



On 07/30/2018 08:55 AM, Burton, Ross wrote:
> Wouldn't it be better to fix bluez?  It's crashing....
The quick search I did over the weekend found Mips is not listed as a
supported platforms on bluez.org. So it may be a case of adding support
for Mips for bluez. 

So are you going to hold up the xorg-server update because bluez crashes?

Why do we have all those exception errors in the parselog, if not used
for these cases? In any case, a new bug should be opened for the bluez.

- armin


>
> Ross
>
> On 30 July 2018 at 16:04, Armin Kuster <akuster808@gmail.com> wrote:
>> do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access from 0000000000000030
>> [   21.402249] epc = 000000852c3a0438 in libc-2.27.so[852c310000+19b000]
>> [   21.402505] ra  = 000000852c3ae0cc in libc-2.27.so[852c310000+19b000]
>>
>> This causes the xorg testcase to fail.
>>
>> [Yocto #12845]
>>
>> Signed-off-by: Armin Kuster <akuster808@gmail.com>
>> ---
>>  meta/lib/oeqa/runtime/cases/parselogs.py | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
>> index f0bcd16..e902299 100644
>> --- a/meta/lib/oeqa/runtime/cases/parselogs.py
>> +++ b/meta/lib/oeqa/runtime/cases/parselogs.py
>> @@ -90,10 +90,12 @@ ignore_errors = {
>>          'Failed to load module "glx"',
>>          'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
>>          'cacheinfo: Failed to find cpu0 device node',
>> +        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
>>          ] + common_errors,
>>      'qemumips64' : [
>>          'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
>>          'cacheinfo: Failed to find cpu0 device node',
>> +        'do_page_fault(): sending SIGSEGV to bluetoothd for invalid read access',
>>           ] + common_errors,
>>      'qemuppc' : [
>>          'PCI 0000:00 Cannot reserve Legacy IO [io  0x0000-0x0fff]',
>> --
>> 2.7.4
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core




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

end of thread, other threads:[~2018-07-30 16:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-30 15:04 [PATCH] parselogs: Add bluetoothd error to list of mips Armin Kuster
2018-07-30 15:55 ` Burton, Ross
2018-07-30 16:17   ` akuster808

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox