01:06
_whitelogger has joined #linux-exynos
03:03
mixfix41 has quit [Ping timeout: 246 seconds]
03:04
nighty- has joined #linux-exynos
07:24
_whitelogger has joined #linux-exynos
08:02
mszyprow has joined #linux-exynos
09:50
PabloPL has joined #linux-exynos
10:19
<
memeka >
mszyprow: Ping
10:20
<
memeka >
mszyprow: thermal thermal_zone0: failed to read out thermal zone (-22)
10:20
<
memeka >
For all thermal zones
11:06
<
krzk >
memeka: It might be known reason of too early probing
11:06
<
krzk >
We had such cases before, some were fixed
11:06
<
memeka >
is there a patch I can look at?
11:08
<
krzk >
memeka: for example ffe6e16f14faf5af6bae7293ebddb481a1d77ae6
11:08
<
memeka >
thanks i will try and check if i can fix ut
11:10
krzk has quit [Quit: leaving]
11:19
PabloPL has quit [Quit: PabloPL]
11:25
<
mszyprow >
memeka: pong
11:26
<
mszyprow >
memeka: if you mean the message during boot, then it is strange, but okay
11:26
<
mszyprow >
memeka: thermal core tries to read thermal zones before the driver gets registered fully
11:26
<
memeka >
mszyprow: yeah the messages during boot. ... i don't remember them during 4.18 (last i tried before 5.0)
11:26
<
mszyprow >
memeka: annoying, but harmless
11:26
<
memeka >
and they are not there in 4.14 either
11:28
<
mszyprow >
memeka: you can check in /sys that thermal zones are there and report correct values: cat /sys/class/thermal/thermal_zone*/temp
11:29
<
memeka >
mszyprow: they are there
11:30
<
memeka >
$ cat /sys/class/thermal/thermal_zone*/temp
11:32
<
mszyprow >
memeka: those messages are there for quite a long time
11:32
<
mszyprow >
memeka: quick grep shows me that they are since v4.17-rc1
11:33
<
mszyprow >
memeka: Bartlomiej Zolnierkiewicz worked on fixing thermal core, but maintainers are not very responsive afair...
11:34
<
memeka >
right, they were not in 4.14 then :P
11:37
krzk has joined #linux-exynos
11:41
<
memeka >
krzk: how does that patch make sense?
11:42
<
memeka >
if (a || b) then ... else if (b) ...
11:49
<
aalm >
huh, that doesn't make sense
11:49
<
mszyprow >
memeka: broken merge commit :/
11:50
<
mszyprow >
memeka: see what commit 19785cf93b6c4252981894394f2dbd35c5e5d1ec did on exynos_tmu.c :/
11:51
<
mszyprow >
memeka: no idea how the maintainer did that mess
11:59
<
memeka >
aalm: yes that makes sense :)
12:00
chewitt has quit [Quit: Adios!]
12:53
afaerber has quit [Quit: Leaving]
13:06
afaerber has joined #linux-exynos
13:33
afaerber has quit [Ping timeout: 250 seconds]
14:10
<
krzk >
I don't get why there was merge conflict at first place (no changes in the same time)...
14:56
<
mszyprow >
krzk: blame thermal maintainers for applying patches separately on -fixes and -next branches and not merging the first one to the latter later
15:15
PabloPL has joined #linux-exynos
15:22
PabloPL has quit [Remote host closed the connection]
15:43
PabloPL has joined #linux-exynos
15:46
<
PabloPL >
[<8014893c>] (do_raw_spin_lock) from [<8012d574>] (__queue_work+0x10c/0x304)
15:46
<
PabloPL >
[<8012d574>] (__queue_work) from [<8012d7a0>] (queue_work_on+0x34/0x40)
15:46
<
PabloPL >
[<8012d7a0>] (queue_work_on) from [<8016184c>] (call_timer_fn+0x24/0x94)
15:46
<
PabloPL >
[<8016184c>] (call_timer_fn) from [<80161944>] (expire_timers+0x88/0x94)
15:46
<
PabloPL >
[<80161944>] (expire_timers) from [<801626e8>] (run_timer_softirq+0xd0/0x1a4)
15:46
<
PabloPL >
[<801626e8>] (run_timer_softirq) from [<8010223c>] (__do_softirq+0xfc/0x2b8)
15:46
<
PabloPL >
[<8010223c>] (__do_softirq) from [<8011aa2c>] (irq_exit+0x10c/0x110)
15:46
<
PabloPL >
[<8011aa2c>] (irq_exit) from [<8014f2d0>] (__handle_domain_irq+0x58/0xa8)
15:46
<
PabloPL >
[<8014f2d0>] (__handle_domain_irq) from [<803933b0>] (vic_handle_irq+0x60/0xa0)
15:46
<
PabloPL >
[<803933b0>] (vic_handle_irq) from [<80101a0c>] (__irq_svc+0x6c/0xa8)
15:46
<
PabloPL >
Anyone have any idea what's going on ?
15:48
<
PabloPL >
Looking in kernel OOPS, it's in kernel/locking/spinlock_debug.c
15:48
<
PabloPL >
SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic");
15:48
<
PabloPL >
Unable to handle kernel paging request at virtual address 13a03004
15:49
<
PabloPL >
I'm getting this after starting pvrsrvinit library (to try init sgx540 gpu) - binary is running fine, but getting this kernel oops
15:52
mszyprow has quit [Ping timeout: 250 seconds]
16:08
afaerber has joined #linux-exynos
16:22
nighty- has quit [Remote host closed the connection]
16:34
<
krzk >
PabloPL: looks like memory corruption
16:35
<
krzk >
could be caused by wrong memory accesses (buffer overflow, no range checking, use-after-free)
16:36
<
PabloPL >
and i'm getting it only after trying to use powervr
16:36
<
PabloPL >
there are two irq used there (one from gpu and one from vsync - also used by fimd)
16:36
<
krzk >
PabloPL: I don't see anything which could help to narrow the case... you can try to enable regular debug configs - maybe it will slightly help
16:37
<
krzk >
DEBUG_ATOMIC_SLEEP, SCHED_STACK_END_CHECK, DEBUG_LOCK_ALLOC, DEBUG_RT_MUTEXES,DEBUG_LIST, DEBUG_PAGEALLOC, SPARSE_RCU_POINTER, DEBUG_NOTIFIERS, DEBUG_MUTEXES, DEBUG_SPINLOCK
16:37
<
krzk >
and maybe some more - I did not refresh this list for some time
16:44
genii has joined #linux-exynos
16:46
<
PabloPL >
but it's good - there is always something to do ;)
17:16
Wizzup has quit [Ping timeout: 246 seconds]
17:17
Wizzup has joined #linux-exynos
17:33
PabloPL has quit [Remote host closed the connection]
17:44
Wizzup has quit [Ping timeout: 240 seconds]
17:51
Wizzup has joined #linux-exynos
18:27
PabloPL has joined #linux-exynos
18:33
PabloPL has quit [Remote host closed the connection]
19:20
PabloPL has joined #linux-exynos
19:38
mszyprow|home has joined #linux-exynos
19:41
sle85276 has joined #linux-exynos
19:48
PabloPL has quit [Remote host closed the connection]
19:49
afaerber has quit [Quit: Leaving]
20:37
PabloPL has joined #linux-exynos
20:40
PabloPL has quit [Remote host closed the connection]
20:43
afaerber has joined #linux-exynos
21:23
mszyprow|home has quit [Ping timeout: 246 seconds]
21:47
mszyprow|home has joined #linux-exynos
22:26
mszyprow|home has quit [Ping timeout: 246 seconds]
23:05
Wizzup has quit [Ping timeout: 240 seconds]
23:23
Wizzup has joined #linux-exynos