On Mon, 23 Sep 2024 08:44:33 -0700 jose....@metztli.com said: > On 2024-09-22 17:05, Carsten Haitzler wrote: > > On Sun, 22 Sep 2024 05:47:09 -0700 jose....@metztli.com said: > > > >> On 2024-09-21 04:43, Carsten Haitzler wrote: > >> > On Sat, 21 Sep 2024 00:37:32 -0700 jose....@metztli.com said: > >> > > >> > > >> >> I installed all these dbgs: > >> >> (< http://www.enlightenment.org/ss/e-66ee76f50c86a5.48118502.jpg >) > >> >> > >> >> Hopefully pasted below e crash log will be adequate: > >> > > >> > ... > >> > > >> >> #4 0x00007fe29b8c4050 in <signal handler called> () at > >> >> /lib/x86_64-linux-gnu/libc.so.6 > >> >> #5 eet_write_cipher (ef=0x55a72dc62c50, name=0x55a72cb112d4 "config", > >> >> data=0x55a72eb0cbe0, size=14526, comp=11, cipher_key=0x0) at > >> >> ../src/lib/eet/eet_lib.c:2479 > >> >> in = 0x55a72e654c70 > >> >> efn = 0x2775becd05b78900 > >> >> exists_already = 0 > >> >> hash = 46 > >> >> #6 0x00007fe29c97ac01 in eet_data_write_cipher (ef=0x55a72dc62c50, > >> >> edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", cipher_key=0x0, > >> >> data=0x55a72d5d8180, comp=11) at ../src/lib/eet/eet_data.c:2410 > >> >> ed = 0x55a72dc3c100 > >> >> data_enc = 0x55a72eb0cbe0 > >> >> size = 14526 > >> >> val = 32765 > >> >> __func__ = "eet_data_write_cipher" > >> >> #7 0x00007fe29c97ac6f in eet_data_write (ef=0x55a72dc62c50, > >> >> edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", data=0x55a72d5d8180, > >> >> comp=11) at ../src/lib/eet/eet_data.c:2422 > >> >> #8 0x000055a72c9949bf in e_config_domain_save (domain=0x55a72cb13c33 > >> >> "e_bindings", edd=0x55a72d5d03f0, data=0x55a72d5d8180) at > >> >> ../src/bin/e_config.c:2328 > >> >> ef = 0x55a72dc62c50 > >> >> buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", > >> >> '\000' > >> >> <repeats 370 times>... > >> >> buf2 = > >> >> "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000efox", '\000' > >> >> <repeats 3137 times>... > >> >> ok = 0 > >> >> len = 46 > >> >> len2 = 10 > >> > > >> > ok. so eet_lib.c:2479 ... it's writing out e's bindings cfg file. we're > >> > getting > >> > somewhere. that's > >> > > >> > LOCK_FILE(ef); > >> > /* Does this node already exist? */ > >> > for (efn = ef->header->directory->nodes[hash]; efn; efn = efn->next) > >> > { > >> > /* if it matches */ > >> > > >> > the for () line there.... gee... at this point i don't know - that > >> > should not > >> > crash. the header should be there as should the directory etc. and the > >> > directory size is fixed as the hash is calculated and limited to that > >> > size. > >> > unfortunately this has moved us along but not given us the problem. > >> > it's time > >> > to use valgrind. > >> > > >> > https://www.enlightenment.org/contrib/enlightenment-debug.md > >> > > >> > we need to find out what there is wrong and why. it should not be. > >> > something > >> > deeper has gone wrong and it's time to dig out some tooling. > >> > >> Using: > >> Xephyr -ac -br -noreset -screen 1366x720 :1 > >> then > >> DISPLAY=:1 enlightenment_start -valgrind > > > > oh ha! i forgot - i removed -valgrind as no one was using it or > > reporting > > issues with it... so -valgrind would not have helped. you need to do > > the > > following instead > > > > E_START=1 DISPLAY=:1 \ > > valgrind --tool=memcheck --num-callers=64 --show-reachable=no \ > > --read-var-info=yes --leak-check=yes --leak-resolution=high \ > > --undef-value-errors=yes --track-origins=yes --vgdb-error=0 \ > > --vgdb=full --redzone-size=512 --freelist-vol=100000000 \ > > enlightenment > > > > valgrind will give you some instructions. use another vt or ssh in and: > > > > gdb enlightenment > > > > (and in gdb at the prompt) > > > > target remote | /usr/lib/valgrind/../../bin/vgdb --pid=49940 > > > > .. or more specifically use what valgrind told you - not the above - > > the above > > was just an example. it will ask if you want to attach. of course > > answer y. > > then type "cont" at the prompt to continue running. > > > > enlightenment will now run very slowly. trigger your bug. you might get > > other > > complaints - it's possible. you could skip some with "cont" command in > > gdb to just continue. valgrind's stdout will tell you a fair bit of > > very useful > > info -t he gdb will be in a trap and allow you to interact (bt = > > backtrace, p > > VAR = print variable VAR value, l = list core, fr N = go to stack trace > > frame N > > (listed in bt). when finally you get a backtrace in that eet write func > > in > > saving config... then valgrind might tell us something useful. > > [] > > The crash occurred during these two snapshots: > < http://www.enlightenment.org/ss/e-66f18214602f31.27343491.jpg > > < http://www.enlightenment.org/ss/e-66f1858325f0c4.93746507.jpg > > > Here is a log fragment generated (I followed the instructions > immediately below in another virtual terminal):
ignore those - just "cont" until the valgrind trace shows its barfing in the eet cipher write (like i snipped down to in a previous reply). it's complaining about things outside of e/efl or things i am pretty sure it's not right about (the dpms thing). the others i actually already just fixed in git. so try again - but "cont" in gdb until finally valgrind complains about what we're looking for. the eet write inside the e config save of e_bindgings.cfg > ==17148== Memcheck, a memory error detector > ==17148== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et > al. > ==17148== Using Valgrind-3.19.0 and LibVEX; rerun with -h for copyright > info > ==17148== Command: enlightenment > ==17148== > ==17148== (action at startup) vgdb me ... > ==17148== > ==17148== TO DEBUG THIS PROCESS USING GDB: start GDB like this > ==17148== /path/to/gdb enlightenment > ==17148== and then give GDB the following command > ==17148== target remote | /usr/bin/vgdb --pid=17148 > ==17148== --pid is optional if only one valgrind process is running > ==17148== > ESTART: 0.00044 [0.00044] - Begin Startup > ESTART: 0.03354 [0.03310] - Signal Trap > ESTART: 0.03672 [0.00318] - Signal Trap Done > ESTART: 0.03879 [0.00208] - Eina Init > ESTART: 0.23026 [0.19146] - Eina Init Done > ESTART: 0.23113 [0.00087] - Determine Prefix > ESTART: 0.26285 [0.03171] - Determine Prefix Done > ESTART: 0.27322 [0.01038] - Environment Variables > ESTART: 0.28866 [0.01544] - Environment Variables Done > ESTART: 0.28917 [0.00051] - Parse Arguments > ESTART: 0.29141 [0.00224] - Parse Arguments Done > ESTART: 0.29212 [0.00071] - Eet Init > ESTART: 0.29712 [0.00500] - Eet Init Done > ESTART: 0.29810 [0.00098] - Ecore Init > ESTART: 1.42569 [1.12759] - Ecore Init Done > ESTART: 1.42862 [0.00294] - E Comp Canvas Intercept Init > ESTART: 3.11002 [1.68139] - E Comp Canvas Intercept Init Done > ESTART: 3.11072 [0.00071] - EFX Init > ESTART: 3.11195 [0.00122] - EFX Init Done > ESTART: 3.11290 [0.00095] - EIO Init > ESTART: 3.62932 [0.51643] - EIO Init Done > ESTART: 3.63118 [0.00186] - Ecore Event Handlers > ESTART: 3.63223 [0.00105] - Ecore Event Handlers Done > ESTART: 3.66420 [0.03197] - Ecore_File Init > ESTART: 3.66489 [0.00069] - Ecore_File Init Done > ESTART: 3.66574 [0.00085] - Ecore_Con Init > ESTART: 3.66641 [0.00067] - Ecore_Con Init Done > ESTART: 3.66732 [0.00090] - Ecore_Ipc Init > ESTART: 3.66805 [0.00073] - Ecore_Ipc Init Done > ESTART: 3.68477 [0.01672] - Ecore_Evas Init > ESTART: 3.93961 [0.25484] - Ecore_Evas Init Done > ESTART: 3.94011 [0.00050] - Elementary Init > ESTART: 10.53150 [6.59138] - Elementary Init Done > ESTART: 10.54595 [0.01445] - Emotion Init > ESTART: 10.55613 [0.01018] - Emotion Init Done > ESTART: 10.55738 [0.00125] - Ecore_Evas Engine Check > ESTART: 10.55979 [0.00241] - Ecore_Evas Engine Check Done > ESTART: 10.56108 [0.00128] - E Intl Init > ESTART: 10.56688 [0.00580] - E Intl Init Done > ESTART: 10.56791 [0.00103] - E_Alert Init > ESTART: 10.56880 [0.00089] - E_Alert Init Done > ESTART: 10.56993 [0.00112] - E Directories Init > ESTART: 10.57989 [0.00996] - E Directories Init Done > ESTART: 10.58084 [0.00095] - E_Filereg Init > ESTART: 10.58169 [0.00085] - E_Filereg Init Done > ESTART: 10.58258 [0.00088] - E_Config Init > ESTART: 11.11536 [0.53279] - E_Config Init Done > ESTART: 11.11721 [0.00185] - E_Env Init > ESTART: 11.11854 [0.00133] - E_Env Init Done > ESTART: 11.12199 [0.00345] - E Paths Init > ESTART: 11.13811 [0.01612] - E Paths Init Done > ESTART: 11.13910 [0.00098] - E_Precache > PRECACHE: SPAWN > ESTART: 11.31796 [0.17886] - E_Precache Done > ESTART: 11.31862 [0.00066] - E_Ipc Init > ESTART: 11.39547 [0.07684] - E_Ipc Init Done > ESTART: 11.39638 [0.00091] - E_State Init > ESTART: 11.39727 [0.00089] - E_State Init Done > ESTART: 11.39814 [0.00088] - E_Font Init > ESTART: 11.39887 [0.00072] - E_Font Init Done > ESTART: 11.39972 [0.00085] - E_Font Apply > ESTART: 11.40169 [0.00197] - E_Font Apply Done > ESTART: 11.40225 [0.00056] - E_Theme Init > ESTART: 11.40532 [0.00308] - E_Theme Init Done > ESTART: 11.40621 [0.00089] - E_Moveresize Init > ESTART: 11.41071 [0.00449] - E_Moveresize Init Done > ESTART: 11.41161 [0.00091] - E_Msgbus Init > PRECACHE: BEGIN > ESTART: 11.49411 [0.08249] - E_Msgbus Init Done > ESTART: 11.49474 [0.00064] - Efreet Init > ESTART: 11.49542 [0.00067] - Efreet Init Done > ESTART: 11.49628 [0.00086] - E_Intl Post Init > ESTART: 11.62487 [0.12859] - E_Intl Post Init Done > ESTART: 11.62606 [0.00119] - E_Configure Init > ESTART: 11.68750 [0.06144] - E_Configure Init Done > ESTART: 11.68893 [0.00143] - E_Actions Init > ESTART: 11.96789 [0.27895] - E_Actions Init Done > ESTART: 11.97433 [0.00645] - E_System Init > ==17369== Warning: invalid file descriptor 1024 in syscall close() > ==17369== Warning: invalid file descriptor 1025 in syscall close() > ==17369== Warning: invalid file descriptor 1026 in syscall close() > ==17369== Warning: invalid file descriptor 1027 in syscall close() > ==17369== Use --log-fd=<number> to select an alternative log fd. > ==17369== Warning: invalid file descriptor 1028 in syscall close() > ==17369== Warning: invalid file descriptor 1029 in syscall close() > ESTART: 12.05382 [0.07949] - E_System Init Done > ESTART: 12.05502 [0.00120] - E_Powersave Init > ESTART: 12.05748 [0.00246] - E_Powersave Init Done > ESTART: 12.05854 [0.00106] - E_Sound Init > ESTART: 12.05990 [0.00136] - Screens Init > BL: backlight devices... > BL: found > [/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight] > ESTART: 12.06082 [0.00092] - screens: client > ESTART: 12.06591 [0.00509] - E_Screensaver Init > BL: led devices... > BL: found > [/sys/devices/pci0000:00/0000:00:1b.0/hdaudioC0D0/leds/hda::mute] > BL: found > [/sys/devices/pci0000:00/0000:00:1c.1/0000:07:00.0/leds/phy0-led] > BL: found > [/sys/devices/pci0000:00/0000:00:1c.2/0000:0d:00.1/leds/mmc1::] > BL: found > [/sys/devices/pci0000:00/0000:00:1c.3/0000:13:00.0/usb2/2-2/2-2:1.0/0003:062A: > 4101.0002/input/input8/input8::capslock] BL: found > [/sys/devices/pci0000:00/0000:00:1c.3/0000:13:00.0/usb2/2-2/2-2:1.0/0003:062A: > 4101.0002/input/input8/input8::numlock] BL: found > [/sys/devices/pci0000:00/0000:00:1c.3/0000:13:00.0/usb2/2-2/2-2:1.0/0003:062A: > 4101.0002/input/input8/input8::scrolllock] BL: found > [/sys/devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.1/3-1.1:1.0/0003:0E8F: > 00A8.0001/input/input7/input7::capslock] BL: found > [/sys/devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.1/3-1.1:1.0/0003:0E8F: > 00A8.0001/input/input7/input7::numlock] BL: found > [/sys/devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.1/3-1.1:1.0/0003:0E8F: > 00A8.0001/input/input7/input7::scrolllock] BL: found > [/sys/devices/platform/i8042/serio0/input/input0/input0::capslock] > BL: found > [/sys/devices/platform/i8042/serio0/input/input0/input0::numlock] > BL: found > [/sys/devices/platform/i8042/serio0/input/input0/input0::scrolllock] > BL: found [/sys/devices/virtual/leds/hp::hddprotect] > ESTART: 12.06833 [0.00242] - screens: client volume > ESTART: 12.06988 [0.00156] - screens: win > ESTART: 12.07177 [0.00189] - Compositor Init > Xlib: extension "DPMS" missing on display ":1.0". > RRR: ................. info get! > RRR: NEW SCREEN ... > RRR: .... out default > RRR: ...... lid_closed = 0 (0 && 0) > RRR: ...... connected 1 > RRR: ...... modes 0xff51720 > RRR: 'default' 0 0 1366x720 > RRR:-------------------------------- 2 > RRR: 'default': 0 0 1366x720 > RRR: result max: 1366x720 > RRR: loaded existing config > RRR: check lid for default... > RRR: check lid for default... > RRR: re-get info before applying.. > RRR: ................. info get! > RRR: NEW SCREEN ... > RRR: .... out default > RRR: ...... lid_closed = 0 (0 && 0) > RRR: ...... connected 1 > RRR: ...... modes 0xffaa500 > RRR: 'default' 0 0 1366x720 > RRR:-------------------------------- 2 > RRR: 'default': 0 0 1366x720 > RRR: result max: 1366x720 > RRR: apply config... > RRR: apply 'default'... > RRR: check lid for default... > RRR: connected = 1 > RRR: ... enabled > RRR: ... priority = 0 > RRR: really apply rotation=0 > RRR: really apply 'default' ignore discon 0 > RRR: takeover config... > RRR: eval config... > RRR:--------------------------------1 > RRR: screen config eval this... > RRR: screen do 'default' > RRR: 'default' cloneset 0xf2d0940 1 > RRR: find base/root for list=0xf2d0940 count=1 > RRR: clone=0xff99480 mode=1 > RRR: _screen_config_do 2 > RRR: _screen_config_do 3 > RRR: screen config do 1366x720 rotation=0 > RRR: _screen_config_do 4 > RRR: _screen_config_do 6 > RRR:--------------------------------2 > RRR: s: 'default' @ 0 0 - 1366x720 > RRR:--- 0 0 -> 1366 720 > RRR: really apply config... > RRR: cur size: 1366x720 > RRR: size range: 160x160 -> 1600x1200 > RRR: cur size: 1366x720 > RRR: set vsize: 1366x720 > RRR: crtcs=0xffdeef0 outputs=0xffe1100 > RRR: find output for 'default' > RRR: enabled: 1 > RRR: crtc slot empty: 0 > RRR: assign slot out: 529 > RRR: modes for 'default' are 0xffeb940 [16] > RRR: crtc on: 0 = 'default' @ 0 0 - 1366x720 orient 1 mode 539 > out 529 > RRR: set vsize2: 1366x720 > RRR: cur size: 1366x720 > RRR: done config... > xinerama screen 0 0 1366x720 > xinerama setup............... 1 (nil) > PRECACHE: [4.21589] [/usr/share/elementary/themes/default.edj] DONE > PRECACHE: [0.22277] > [/home/jose/.e/e/backgrounds/TlilTlaztallehuallic.edj] DONE > PRECACHE: TOTAL [4.44240] > PRECACHE: SUM=9176839e, READS=4964 > ==17148== Invalid read of size 8 > ==17148== at 0x4023AB4: strncmp (strcmp-sse2.S:162) > ==17148== by 0x4004B9E: is_dst (dl-load.c:216) > ==17148== by 0x400596E: _dl_dst_count (dl-load.c:253) > ==17148== by 0x4005B47: expand_dynamic_string_token (dl-load.c:395) > ==17148== by 0x4005CB2: fillin_rpath.isra.0 (dl-load.c:483) > ==17148== by 0x4005FA2: decompose_rpath (dl-load.c:654) > ==17148== by 0x400815B: _dl_map_object (dl-load.c:2111) > ==17148== by 0x4002260: openaux (dl-deps.c:64) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x40025C9: _dl_map_object_deps (dl-deps.c:232) > ==17148== by 0x400BA6C: dl_open_worker_begin (dl-open.c:592) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B1C5: dl_open_worker (dl-open.c:782) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B5B7: _dl_open (dl-open.c:884) > ==17148== by 0x59CD437: dlopen_doit (dlopen.c:56) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x5A9707E: _dl_catch_error (dl-error-skeleton.c:227) > ==17148== by 0x59CCF26: _dlerror_run (dlerror.c:138) > ==17148== by 0x59CD4E8: dlopen_implementation (dlopen.c:71) > ==17148== by 0x59CD4E8: dlopen@@GLIBC_2.34 (dlopen.c:81) > ==17148== by 0x1072C92D: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1072CAC8: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071F070: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10724C1F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071E77F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10710396: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x100F0E8E: eng_best_visual_get (evas_x_main.c:914) > ==17148== by 0x100D0F72: _ecore_evas_x_gl_window_new > (ecore_evas_x.c:493) > ==17148== by 0x100DE4E1: ecore_evas_gl_x11_options_new_internal > (ecore_evas_x.c:5389) > ==17148== by 0x5622865: ecore_evas_gl_x11_options_new > (ecore_evas.c:4047) > ==17148== by 0x32573D: e_comp_x_randr_canvas_new > (e_comp_x_randr.c:1165) > ==17148== by 0x31C8BA: _e_comp_x_setup (e_comp_x.c:5934) > ==17148== by 0x31CF01: _e_comp_x_screens_setup (e_comp_x.c:6029) > ==17148== by 0x31D465: e_comp_x_init (e_comp_x.c:6103) > ==17148== by 0x187D28: e_comp_init (e_comp.c:1390) > ==17148== by 0x267B02: _e_main_screens_init (e_main.c:1587) > ==17148== by 0x2634A3: main (e_main.c:814) > ==17148== Address 0x103af969 is 9 bytes inside a block of size 15 > alloc'd > ==17148== at 0x48407B4: malloc (vg_replace_malloc.c:381) > ==17148== by 0x402389A: malloc (rtld-malloc.h:56) > ==17148== by 0x402389A: strdup (strdup.c:42) > ==17148== by 0x4005F34: decompose_rpath (dl-load.c:629) > ==17148== by 0x400815B: _dl_map_object (dl-load.c:2111) > ==17148== by 0x4002260: openaux (dl-deps.c:64) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x40025C9: _dl_map_object_deps (dl-deps.c:232) > ==17148== by 0x400BA6C: dl_open_worker_begin (dl-open.c:592) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B1C5: dl_open_worker (dl-open.c:782) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B5B7: _dl_open (dl-open.c:884) > ==17148== by 0x59CD437: dlopen_doit (dlopen.c:56) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x5A9707E: _dl_catch_error (dl-error-skeleton.c:227) > ==17148== by 0x59CCF26: _dlerror_run (dlerror.c:138) > ==17148== by 0x59CD4E8: dlopen_implementation (dlopen.c:71) > ==17148== by 0x59CD4E8: dlopen@@GLIBC_2.34 (dlopen.c:81) > ==17148== by 0x1072C92D: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1072CAC8: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071F070: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10724C1F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071E77F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10710396: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x100F0E8E: eng_best_visual_get (evas_x_main.c:914) > ==17148== by 0x100D0F72: _ecore_evas_x_gl_window_new > (ecore_evas_x.c:493) > ==17148== by 0x100DE4E1: ecore_evas_gl_x11_options_new_internal > (ecore_evas_x.c:5389) > ==17148== by 0x5622865: ecore_evas_gl_x11_options_new > (ecore_evas.c:4047) > ==17148== by 0x32573D: e_comp_x_randr_canvas_new > (e_comp_x_randr.c:1165) > ==17148== by 0x31C8BA: _e_comp_x_setup (e_comp_x.c:5934) > ==17148== by 0x31CF01: _e_comp_x_screens_setup (e_comp_x.c:6029) > ==17148== by 0x31D465: e_comp_x_init (e_comp_x.c:6103) > ==17148== by 0x187D28: e_comp_init (e_comp.c:1390) > ==17148== by 0x267B02: _e_main_screens_init (e_main.c:1587) > ==17148== by 0x2634A3: main (e_main.c:814) > ==17148== > ==17148== (action on error) vgdb me ... > ==17148== Continuing ... > ==17148== Invalid read of size 8 > ==17148== at 0x4023AB4: strncmp (strcmp-sse2.S:162) > ==17148== by 0x4004B9E: is_dst (dl-load.c:216) > ==17148== by 0x4005A0D: _dl_dst_substitute (dl-load.c:295) > ==17148== by 0x4005CB2: fillin_rpath.isra.0 (dl-load.c:483) > ==17148== by 0x4005FA2: decompose_rpath (dl-load.c:654) > ==17148== by 0x400815B: _dl_map_object (dl-load.c:2111) > ==17148== by 0x4002260: openaux (dl-deps.c:64) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x40025C9: _dl_map_object_deps (dl-deps.c:232) > ==17148== by 0x400BA6C: dl_open_worker_begin (dl-open.c:592) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B1C5: dl_open_worker (dl-open.c:782) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B5B7: _dl_open (dl-open.c:884) > ==17148== by 0x59CD437: dlopen_doit (dlopen.c:56) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x5A9707E: _dl_catch_error (dl-error-skeleton.c:227) > ==17148== by 0x59CCF26: _dlerror_run (dlerror.c:138) > ==17148== by 0x59CD4E8: dlopen_implementation (dlopen.c:71) > ==17148== by 0x59CD4E8: dlopen@@GLIBC_2.34 (dlopen.c:81) > ==17148== by 0x1072C92D: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1072CAC8: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071F070: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10724C1F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071E77F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10710396: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x100F0E8E: eng_best_visual_get (evas_x_main.c:914) > ==17148== by 0x100D0F72: _ecore_evas_x_gl_window_new > (ecore_evas_x.c:493) > ==17148== by 0x100DE4E1: ecore_evas_gl_x11_options_new_internal > (ecore_evas_x.c:5389) > ==17148== by 0x5622865: ecore_evas_gl_x11_options_new > (ecore_evas.c:4047) > ==17148== by 0x32573D: e_comp_x_randr_canvas_new > (e_comp_x_randr.c:1165) > ==17148== by 0x31C8BA: _e_comp_x_setup (e_comp_x.c:5934) > ==17148== by 0x31CF01: _e_comp_x_screens_setup (e_comp_x.c:6029) > ==17148== by 0x31D465: e_comp_x_init (e_comp_x.c:6103) > ==17148== by 0x187D28: e_comp_init (e_comp.c:1390) > ==17148== by 0x267B02: _e_main_screens_init (e_main.c:1587) > ==17148== by 0x2634A3: main (e_main.c:814) > ==17148== Address 0x103af969 is 9 bytes inside a block of size 15 > alloc'd > ==17148== at 0x48407B4: malloc (vg_replace_malloc.c:381) > ==17148== by 0x402389A: malloc (rtld-malloc.h:56) > ==17148== by 0x402389A: strdup (strdup.c:42) > ==17148== by 0x4005F34: decompose_rpath (dl-load.c:629) > ==17148== by 0x400815B: _dl_map_object (dl-load.c:2111) > ==17148== by 0x4002260: openaux (dl-deps.c:64) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x40025C9: _dl_map_object_deps (dl-deps.c:232) > ==17148== by 0x400BA6C: dl_open_worker_begin (dl-open.c:592) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B1C5: dl_open_worker (dl-open.c:782) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x400B5B7: _dl_open (dl-open.c:884) > ==17148== by 0x59CD437: dlopen_doit (dlopen.c:56) > ==17148== by 0x5A96FC9: _dl_catch_exception (dl-error-skeleton.c:208) > ==17148== by 0x5A9707E: _dl_catch_error (dl-error-skeleton.c:227) > ==17148== by 0x59CCF26: _dlerror_run (dlerror.c:138) > ==17148== by 0x59CD4E8: dlopen_implementation (dlopen.c:71) > ==17148== by 0x59CD4E8: dlopen@@GLIBC_2.34 (dlopen.c:81) > ==17148== by 0x1072C92D: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1072CAC8: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071F070: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10724C1F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x1071E77F: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x10710396: ??? (in > /usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0) > ==17148== by 0x100F0E8E: eng_best_visual_get (evas_x_main.c:914) > ==17148== by 0x100D0F72: _ecore_evas_x_gl_window_new > (ecore_evas_x.c:493) > ==17148== by 0x100DE4E1: ecore_evas_gl_x11_options_new_internal > (ecore_evas_x.c:5389) > ==17148== by 0x5622865: ecore_evas_gl_x11_options_new > (ecore_evas.c:4047) > ==17148== by 0x32573D: e_comp_x_randr_canvas_new > (e_comp_x_randr.c:1165) > ==17148== by 0x31C8BA: _e_comp_x_setup (e_comp_x.c:5934) > ==17148== by 0x31CF01: _e_comp_x_screens_setup (e_comp_x.c:6029) > ==17148== by 0x31D465: e_comp_x_init (e_comp_x.c:6103) > ==17148== by 0x187D28: e_comp_init (e_comp.c:1390) > ==17148== by 0x267B02: _e_main_screens_init (e_main.c:1587) > ==17148== by 0x2634A3: main (e_main.c:814) > ==17148== > ==17148== (action on error) vgdb me ... > ==17148== Continuing ... > ERR<17148>:ecore_evas > ../src/modules/ecore_evas/engines/x/ecore_evas_x.c:5397 > ecore_evas_gl_x11_options_new_internal() evas_engine_info_set() init > engine 'opengl_x11' failed. > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/ecore_evas/engines/x/v-1.27/module.so 0x100de58b > 0x100c6000 > /lib/x86_64-linux-gnu/libecore_evas.so.1 0x5622866 0x5608000 > /usr/bin/enlightenment 0x32573e 0x108000 > /usr/bin/enlightenment 0x31c8bb 0x108000 > /usr/bin/enlightenment 0x31cf02 0x108000 > /usr/bin/enlightenment 0x31d466 0x108000 > /usr/bin/enlightenment 0x187d29 0x108000 > /usr/bin/enlightenment 0x267b03 0x108000 > /usr/bin/enlightenment 0x2634a4 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > ERR<17148>:ecore_evas > ../src/modules/ecore_evas/engines/x/ecore_evas_x.c:5397 > ecore_evas_gl_x11_options_new_internal() evas_engine_info_set() init > engine 'opengl_x11' failed. > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/ecore_evas/engines/x/v-1.27/module.so 0x100de58b > 0x100c6000 > /lib/x86_64-linux-gnu/ecore_evas/engines/x/v-1.27/module.so 0x100de704 > 0x100c6000 > /lib/x86_64-linux-gnu/libecore_evas.so.1 0x562273f 0x5608000 > /usr/bin/enlightenment 0x32578c 0x108000 > /usr/bin/enlightenment 0x31c8bb 0x108000 > /usr/bin/enlightenment 0x31cf02 0x108000 > /usr/bin/enlightenment 0x31d466 0x108000 > /usr/bin/enlightenment 0x187d29 0x108000 > /usr/bin/enlightenment 0x267b03 0x108000 > /usr/bin/enlightenment 0x2634a4 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > DEV: CHANGES ... have 6 devices, changed=1 > XKB: e_xkb_init > XKB: _e_xkb_type_reconfig > XKB: _e_x_xkb_reconfig > ==17591== Warning: invalid file descriptor 1024 in syscall close() > ==17591== Warning: invalid file descriptor 1025 in syscall close() > ==17591== Warning: invalid file descriptor 1026 in syscall close() > ==17591== Warning: invalid file descriptor 1027 in syscall close() > ==17591== Use --log-fd=<number> to select an alternative log fd. > ==17591== Warning: invalid file descriptor 1028 in syscall close() > ==17591== Warning: invalid file descriptor 1029 in syscall close() > ESTART: 135.54152 [123.46975] - Compositor Init Done > ESTART: 135.54326 [0.00174] - Desk Restore > ESTART: 135.61197 [0.06871] - Desk Restore Done > ESTART: 135.61280 [0.00083] - E_Dnd Init > ESTART: 135.62058 [0.00778] - E_Dnd Init Done > ESTART: 135.62145 [0.00087] - Screens Init Done > ESTART: 135.62240 [0.00096] - E_Pointer Init > ESTART: 135.62472 [0.00232] - E_Pointer Init Done > ESTART: 135.62869 [0.00397] - E_Scale Init > ==17148== Syscall param unlink(pathname) points to unaddressable byte(s) > ==17148== at 0x5A41A07: unlink (syscall-template.S:120) > ==17148== by 0x59355B2: ecore_x_resource_db_flush > (ecore_x_resource.c:117) > ==17148== by 0x2975F9: e_scale_update (e_scale.c:106) > ==17148== by 0x296FF8: e_scale_init (e_scale.c:8) > ==17148== by 0x263744: main (e_main.c:834) > ==17148== Address 0x8574b20 is 32 bytes inside a block of size 61 > free'd > ==17148== at 0x484317B: free (vg_replace_malloc.c:872) > ==17148== by 0x49AFA78: eina_tmpstr_del (eina_tmpstr.c:138) > ==17148== by 0x593559C: ecore_x_resource_db_flush > (ecore_x_resource.c:115) > ==17148== by 0x2975F9: e_scale_update (e_scale.c:106) > ==17148== by 0x296FF8: e_scale_init (e_scale.c:8) > ==17148== by 0x263744: main (e_main.c:834) > ==17148== Block was alloc'd at > ==17148== at 0x48407B4: malloc (vg_replace_malloc.c:381) > ==17148== by 0x49AF7E1: eina_tmpstr_add_length (eina_tmpstr.c:72) > ==17148== by 0x49AF9C6: eina_tmpstr_add (eina_tmpstr.c:121) > ==17148== by 0x49D4A47: eina_file_mkstemp (eina_file_posix.c:1557) > ==17148== by 0x593543E: ecore_x_resource_db_flush > (ecore_x_resource.c:87) > ==17148== by 0x2975F9: e_scale_update (e_scale.c:106) > ==17148== by 0x296FF8: e_scale_init (e_scale.c:8) > ==17148== by 0x263744: main (e_main.c:834) > ==17148== > ==17148== (action on error) vgdb me ... > ==17148== Continuing ... > ESTART: 226.27458 [90.64589] - E_Scale Init Done > ESTART: 226.27559 [0.00101] - E_Splash Init > ESTART: 226.27652 [0.00094] - E_Splash Init Done > ESTART: 226.27776 [0.00124] - Add Icon Extensions > ESTART: 226.28879 [0.01103] - Add Icon Extensions Done > ESTART: 226.28939 [0.00060] - E_Acpi Init > ESTART: 226.40290 [0.11350] - E_Acpi Init Done > ESTART: 226.40384 [0.00094] - E_Auth Init > ESTART: 226.40494 [0.00110] - E_Auth Init Done > ESTART: 226.40667 [0.00173] - E_Backlight Init > ESTART: 226.42790 [0.02123] - E_Backlight Init Done > ESTART: 226.42869 [0.00078] - E_Dpms Init > Xlib: extension "DPMS" missing on display ":1.0". > Xlib: extension "DPMS" missing on display ":1.0". > Xlib: extension "DPMS" missing on display ":1.0". > ESTART: 226.43718 [0.00849] - E_Dpms Init Done > ESTART: 226.43821 [0.00103] - E_Desklock Init > ESTART: 226.44023 [0.00202] - E_Desklock Init Done > ESTART: 226.44137 [0.00113] - Efreet Paths > ESTART: 226.44476 [0.00339] - Efreet Paths Done > ESTART: 226.44550 [0.00074] - E_Sys Init > ESTART: 226.48412 [0.03862] - E_Sys Init Done > ESTART: 226.48520 [0.00108] - E_Exec Init > ESTART: 226.48674 [0.00154] - E_Exec Init Done > ESTART: 226.48733 [0.00059] - E_Comp Freeze > ESTART: 226.48819 [0.00087] - E_Comp Freeze Done > ESTART: 226.48875 [0.00056] - E_Fm2 Init > ESTART: 226.51741 [0.02866] - E_Fm2 Init Done > ESTART: 226.51848 [0.00107] - E_Msg Init > ESTART: 226.51954 [0.00106] - E_Msg Init Done > ESTART: 226.52039 [0.00085] - E_Grabinput Init > ESTART: 226.52111 [0.00072] - E_Grabinput Init Done > ESTART: 226.52199 [0.00088] - E_Module Init > ESTART: 226.52308 [0.00109] - E_Module Init Done > ESTART: 226.52392 [0.00084] - E_Remember Init > CF: fallback to system config config file for [e_remember_restart] > CF: system config load for > /usr/share/enlightenment/data/config/standard/e_remember_restart.cfg > failed > ESTART: 226.53777 [0.01384] - E_Remember Init Done > ESTART: 226.53924 [0.00147] - E_Gadcon Init > ESTART: 226.54204 [0.00280] - E_Gadcon Init Done > ESTART: 226.54293 [0.00089] - E_Toolbar Init > ESTART: 226.54555 [0.00262] - E_Toolbar Init Done > ESTART: 226.54652 [0.00097] - E_Bg Init > ESTART: 226.55485 [0.00833] - E_Bg Init Done > ESTART: 226.55574 [0.00089] - E_Mouse Init > DEV: CHANGES ... have 6 devices, changed=1 > ESTART: 226.56540 [0.00966] - E_Mouse Init Done > ESTART: 226.56607 [0.00067] - E_Bindings Init > ESTART: 226.62514 [0.05907] - E_Bindings Init Done > ESTART: 226.62606 [0.00092] - E_Thumb Init > ESTART: 226.62700 [0.00094] - E_Thumb Init Done > ESTART: 226.62785 [0.00085] - E_Icon Init > ESTART: 226.62858 [0.00073] - E_Icon Init Done > ESTART: 226.62955 [0.00096] - E_Update Init > ESTART: 226.64716 [0.01761] - E_Update Init Done > ESTART: 226.64816 [0.00100] - E_Deskenv Init > ESTART: 226.65113 [0.00297] - E_Deskenv Init Done > ESTART: 226.65211 [0.00098] - E_Order Init > ESTART: 226.65583 [0.00372] - E_Order Init Done > ESTART: 226.65674 [0.00091] - E_Comp_Canvas Keys Grab > ESTART: 226.68851 [0.03177] - E_Comp_Canvas Keys Grab Done > ESTART: 226.68923 [0.00072] - Run Startup Apps > ESTART: 226.69165 [0.00242] - Run Startup Apps Done > ESTART: 226.69224 [0.00059] - E_Comp Thaw > ESTART: 226.69478 [0.00255] - E_Comp Thaw Done > ESTART: 226.69545 [0.00066] - E_Test Init > ESTART: 226.69657 [0.00113] - E_Test Done > ESTART: 226.69743 [0.00086] - Load Modules > ==17709== Warning: invalid file descriptor 1024 in syscall close() > ==17709== Warning: invalid file descriptor 1025 in syscall close() > ==17709== Warning: invalid file descriptor 1026 in syscall close() > ==17709== Warning: invalid file descriptor 1027 in syscall close() > ==17709== Use --log-fd=<number> to select an alternative log fd. > ==17709== Warning: invalid file descriptor 1028 in syscall close() > ==17709== Warning: invalid file descriptor 1029 in syscall close() > PULSE CONN... > ESTART: 248.62370 [21.92627] - Load Modules Done > ESTART: 248.62463 [0.00093] - E_Shelf Init > ESTART: 249.08616 [0.46153] - start > ESTART: 249.43777 [0.35161] - start Done > ESTART: 249.43888 [0.00111] - pager > ==17728== Warning: invalid file descriptor 1024 in syscall close() > ==17728== Warning: invalid file descriptor 1025 in syscall close() > ==17728== Warning: invalid file descriptor 1026 in syscall close() > ==17728== Warning: invalid file descriptor 1027 in syscall close() > ==17728== Use --log-fd=<number> to select an alternative log fd. > ==17728== Warning: invalid file descriptor 1028 in syscall close() > ==17728== Warning: invalid file descriptor 1029 in syscall close() > ESTART: 252.14336 [2.70448] - pager Done > ESTART: 252.14369 [0.00033] - ibar > ESTART: 253.94918 [1.80549] - ibar Done > ESTART: 253.94948 [0.00030] - systray > ESTART: 254.08554 [0.13607] - systray Done > ESTART: 254.08587 [0.00033] - backlight > ESTART: 254.21202 [0.12615] - backlight Done > ESTART: 254.21231 [0.00029] - temperature > ESTART: 254.37333 [0.16101] - temperature Done > ESTART: 254.37361 [0.00028] - battery > ERR<17148>:eina_safety ../src/lib/evas/canvas/evas_object_text.c:499 > _evas_text_efl_text_font_font_size_set() safety check failed: size <= 0 > is true > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49a0581 0x494a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4da1dcf 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x6159df5 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5727cc8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566ea07 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5672b5e 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5676334 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5736f6a 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x572646d 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5742a55 0x563b000 > /usr/lib/x86_64-linux-gnu/enlightenment/modules/battery/linux-gnu-x86_64-0.26.0/module.so > > 0x12213c6d 0x12210000 > /usr/bin/enlightenment 0x21393e 0x108000 > /usr/bin/enlightenment 0x20f834 0x108000 > /usr/bin/enlightenment 0x29dd2f 0x108000 > /usr/bin/enlightenment 0x2a0603 0x108000 > /usr/bin/enlightenment 0x29ceb6 0x108000 > /usr/bin/enlightenment 0x2660d5 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > ERR<17148>:eina_safety ../src/lib/evas/canvas/evas_object_text.c:499 > _evas_text_efl_text_font_font_size_set() safety check failed: size <= 0 > is true > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49a0581 0x494a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4da1dcf 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x6159df5 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5727cc8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5679c8c 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5736f6a 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x572646d 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5742a55 0x563b000 > /usr/lib/x86_64-linux-gnu/enlightenment/modules/battery/linux-gnu-x86_64-0.26.0/module.so > > 0x12213c6d 0x12210000 > /usr/bin/enlightenment 0x21393e 0x108000 > /usr/bin/enlightenment 0x20f834 0x108000 > /usr/bin/enlightenment 0x29dd2f 0x108000 > /usr/bin/enlightenment 0x2a0603 0x108000 > /usr/bin/enlightenment 0x29ceb6 0x108000 > /usr/bin/enlightenment 0x2660d5 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > ESTART: 255.89999 [1.52638] - battery Done > ESTART: 255.90031 [0.00032] - clock > ESTART: 260.23321 [4.33290] - clock Done > ESTART: 260.23350 [0.00030] - mixer > ESTART: 260.43342 [0.19992] - mixer Done > ESTART: 260.43374 [0.00031] - connman > ESTART: 260.83132 [0.39758] - connman Done > ESTART: 260.83163 [0.00031] - bluez5 > ESTART: 260.99360 [0.16197] - bluez5 Done > ESTART: 260.99391 [0.00031] - tasks > ESTART: 261.13451 [0.14060] - tasks Done > ESTART: 261.13482 [0.00031] - xkbswitch > XKB: e_xkb_layout_get > ESTART: 261.30295 [0.16813] - xkbswitch Done > ESTART: 261.30346 [0.00050] - syscon > ESTART: 261.41647 [0.11302] - syscon Done > ERR<17148>:eina_safety ../src/lib/evas/canvas/evas_object_text.c:499 > _evas_text_efl_text_font_font_size_set() safety check failed: size <= 0 > is true > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49a0581 0x494a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4da1dcf 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x6159df5 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5727cc8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566ea07 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5672b5e 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5676334 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5722e5a 0x563b000 > /lib/x86_64-linux-gnu/libefl.so.1 0x616355e 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74f95 0x4c3a000 > /lib/x86_64-linux-gnu/libelementary.so.1 0x5419683 0x5057000 > /lib/x86_64-linux-gnu/libelementary.so.1 0x5191d54 0x5057000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d907e8 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8e7d6 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8c31a 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d4dc9d 0x4c3a000 > /usr/bin/enlightenment 0x2db6ab 0x108000 > /usr/bin/enlightenment 0x2dbaee 0x108000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74ded 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61632fb 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8aefb 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61632fb 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5679ece 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x56758a8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5722e5a 0x563b000 > /lib/x86_64-linux-gnu/libefl.so.1 0x616355e 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74b10 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61637d5 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74bc9 0x4c3a000 > /usr/bin/enlightenment 0x29e837 0x108000 > /usr/bin/enlightenment 0x29f6c6 0x108000 > /usr/bin/enlightenment 0x2a060f 0x108000 > /usr/bin/enlightenment 0x29ceb6 0x108000 > /usr/bin/enlightenment 0x2660d5 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > ERR<17148>:eina_safety ../src/lib/evas/canvas/evas_object_text.c:499 > _evas_text_efl_text_font_font_size_set() safety check failed: size <= 0 > is true > ## Copy & Paste the below (until EOF) into a terminal, then hit Enter > > eina_btlog << EOF > /lib/x86_64-linux-gnu/libeina.so.1 0x4981cb6 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x4980c2d 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49827f9 0x494a000 > /lib/x86_64-linux-gnu/libeina.so.1 0x49a0581 0x494a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4da1dcf 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x6159df5 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5727cc8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5679c8c 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5722e5a 0x563b000 > /lib/x86_64-linux-gnu/libefl.so.1 0x616355e 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74f95 0x4c3a000 > /lib/x86_64-linux-gnu/libelementary.so.1 0x5419683 0x5057000 > /lib/x86_64-linux-gnu/libelementary.so.1 0x5191d54 0x5057000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d907e8 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8e7d6 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8c31a 0x4c3a000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d4dc9d 0x4c3a000 > /usr/bin/enlightenment 0x2db6ab 0x108000 > /usr/bin/enlightenment 0x2dbaee 0x108000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74ded 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61632fb 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d8aefb 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61632fb 0x6138000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5679ece 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x56758a8 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cdf4 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x566cf05 0x563b000 > /lib/x86_64-linux-gnu/libedje.so.1 0x5722e5a 0x563b000 > /lib/x86_64-linux-gnu/libefl.so.1 0x616355e 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74b10 0x4c3a000 > /lib/x86_64-linux-gnu/libefl.so.1 0x61637d5 0x6138000 > /lib/x86_64-linux-gnu/libevas.so.1 0x4d74bc9 0x4c3a000 > /usr/bin/enlightenment 0x29e837 0x108000 > /usr/bin/enlightenment 0x29f6c6 0x108000 > /usr/bin/enlightenment 0x2a060f 0x108000 > /usr/bin/enlightenment 0x29ceb6 0x108000 > /usr/bin/enlightenment 0x2660d5 0x108000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f24a 0x5948000 > /lib/x86_64-linux-gnu/libc.so.6 0x596f305 0x5948000 > /usr/bin/enlightenment 0x14c101 0x108000 > EOF > > ESTART: 264.63302 [3.21655] - E_Shelf Init Done > ESTART: 264.72700 [0.09397] - MAIN LOOP AT LAST > ESTART: 265.53437 [0.80737] - SLEEP > Xlib: extension "DPMS" missing on display ":1.0". > Xlib: extension "DPMS" missing on display ":1.0". > ==17148== Conditional jump or move depends on uninitialised value(s) > ==17148== at 0x1C4FA7: e_dpms_update (e_dpms.c:36) > ==17148== by 0x1C5277: _e_dpms_handler_desk_show_cb (e_dpms.c:150) > ==17148== by 0x4AAF847: > _ecore_event_message_handler_efl_loop_message_handler_message_call > (ecore_event_message_handler.c:362) > ==17148== by 0x4ABC99C: efl_loop_message_handler_message_call > (efl_loop_message_handler.eo.c:14) > ==17148== by 0x4AB43F4: _efl_loop_message_process (efl_loop.c:602) > ==17148== by 0x4AB4666: efl_loop_message_process (efl_loop.c:640) > ==17148== by 0x4AAD0AC: _ecore_main_loop_iterate_internal > (ecore_main.c:2553) > ==17148== by 0x4AAA1B6: _ecore_main_loop_begin (ecore_main.c:1236) > ==17148== by 0x4AB2662: _efl_loop_begin (efl_loop.c:57) > ==17148== by 0x4AB4CC0: efl_loop_begin (efl_loop.eo.c:28) > ==17148== by 0x4AAA392: ecore_main_loop_begin (ecore_main.c:1321) > ==17148== by 0x26636B: main (e_main.c:1135) > ==17148== Uninitialised value was created by a stack allocation > ==17148== at 0x149F90: ??? (in /usr/bin/enlightenment) > ==17148== > ==17148== (action on error) vgdb me ... > ==17148== > ==17148== TO DEBUG THIS PROCESS USING GDB: start GDB like this > ==17148== /path/to/gdb enlightenment > ==17148== and then give GDB the following command > ==17148== target remote | /usr/bin/vgdb --pid=17148 > ==17148== --pid is optional if only one valgrind process is running > ==17148== > ==17148== Continuing ... > COMPX: _e_comp_x_mapping_change > COMPX: _e_comp_x_mapping_change > XKB: _e_x_xkb_update > Xlib: extension "DPMS" missing on display ":1.0". > ==17148== Conditional jump or move depends on uninitialised value(s) > ==17148== at 0x297875: e_screensaver_force_update > (e_screensaver.c:121) > ==17148== by 0x31CF68: _e_comp_x_blank_apply (e_comp_x.c:6040) > ==17148== by 0x4AF8473: _ecore_call_task_cb (ecore_private.h:456) > ==17148== by 0x4AF895E: _ecore_timer_legacy_tick (ecore_timer.c:172) > ==17148== by 0x4A5D879: _event_callback_call (eo_base_class.c:2114) > ==17148== by 0x4A5DA86: _efl_object_event_callback_call > (eo_base_class.c:2186) > ==17148== by 0x4A5DB3F: efl_event_callback_call > (eo_base_class.c:2189) > ==17148== by 0x4AF9EF3: _efl_loop_timer_expired_call > (ecore_timer.c:669) > ==17148== by 0x4AF9D1A: _efl_loop_timer_expired_timers_call > (ecore_timer.c:621) > ==17148== by 0x4AACD49: _ecore_main_loop_iterate_internal > (ecore_main.c:2436) > ==17148== by 0x4AAA1B6: _ecore_main_loop_begin (ecore_main.c:1236) > ==17148== by 0x4AB2662: _efl_loop_begin (efl_loop.c:57) > ==17148== by 0x4AB4CC0: efl_loop_begin (efl_loop.eo.c:28) > ==17148== by 0x4AAA392: ecore_main_loop_begin (ecore_main.c:1321) > ==17148== by 0x26636B: main (e_main.c:1135) > ==17148== Uninitialised value was created by a stack allocation > ==17148== at 0x149F90: ??? (in /usr/bin/enlightenment) > ==17148== > ==17148== (action on error) vgdb me ... > > Consider this a first run since this is the first time I use this > tool/procedure. > > I typed 'cont' several times but none others. > > On the other hand, the crash is relatively easy to reproduce when using > firefox 130.0.1 (64-bit) as I am *always* able to reproduce it when > viewing youtube videos at random. > > -- > Best Professional Regards. > > -- > Jose R R > http://metztli.it > --------------------------------------------------------------------------------------------- > Download Metztli Reiser4: Debian Bookworm w/ Linux 5.17.12-3 AMD64 > --------------------------------------------------------------------------------------------- > feats ZSTD compression https://sf.net/projects/metztli-reiser4/ > ------------------------------------------------------------------------------------------- > Official current Reiser4 resources: https://reiser4.wiki.kernel.org/ > > > > _______________________________________________ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- Carsten Haitzler - ras...@rasterman.com _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel