Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2015-09-23

00:00:30 Quit amayer (Quit: Leaving)
00:08:09 Quit WakiMiko (Max SendQ exceeded)
00:08:58 Quit shamus (Ping timeout: 252 seconds)
00:09:35 Join shamus [0] (~shmaus@ip-206-192-194-12.marylandheights.ip.cablemo.net)
00:09:35 Join WakiMiko [0] (~WakiMiko@unaffiliated/wakimiko)
00:19:59 Quit Rondom (Remote host closed the connection)
00:20:49 Join Rondom [0] (~rondom@nonmodosedetiam.net)
00:24:13 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.")
00:26:16 Quit x56 (Ping timeout: 252 seconds)
00:27:18 Quit gevaerts (Ping timeout: 252 seconds)
00:27:30 Join gevaerts [0] (~fg@rockbox/developer/gevaerts)
00:28:00 Quit TorC (Ping timeout: 252 seconds)
00:28:29 Join TorC [0] (~TorC@fsf/member/TorC)
00:28:36 Join x56 [0] (0x56@unaffiliated/x56)
00:30:48***Saving seen data "./dancer.seen"
00:47:54 Join jtdesigns01 [0] (~Thunderbi@2601:400:8000:2669:108:5dea:be19:91b3)
01:00
01:00:16 Quit petur (Remote host closed the connection)
01:03:46 Join [Franklin] [0] (~franklin@cpe-71-71-39-6.triad.res.rr.com)
01:13:28 Quit [Franklin] (Changing host)
01:13:28 Join [Franklin] [0] (~franklin@unaffiliated/franklin)
01:23:17 Quit [Franklin] (Read error: No route to host)
01:23:18 Quit Markmas__ (Read error: Connection reset by peer)
01:24:01 Join [Franklin] [0] (~franklin@unaffiliated/franklin)
01:30:38 Quit ZincAlloy (Quit: Leaving.)
01:39:49 Quit ParkerR (Read error: Connection reset by peer)
02:00
02:13:14 Join ParkerR [0] (~ParkerR@unaffiliated/parkerr)
02:25:08 Join bp0 [0] (~bp@unaffiliated/bp0)
02:30:52***Saving seen data "./dancer.seen"
02:57:51 Quit bp0 (Quit: Leaving)
03:00
03:17:02 Quit [Franklin] (Quit: Lost terminal)
03:38:41 Quit uwe_ (Ping timeout: 260 seconds)
03:43:56 Join uwe_ [0] (~uwe_@dslb-088-067-177-062.088.067.pools.vodafone-ip.de)
03:45:33 Join Strife89 [0] (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net)
04:00
04:10:41 Quit foolsh (Remote host closed the connection)
04:12:57 Join foolsh [0] (~quassel@2601:241:c200:4bc5:5d98:c8c6:d1ea:ab89)
04:30:53***Saving seen data "./dancer.seen"
04:31:45 Quit Strife89 (Ping timeout: 255 seconds)
04:47:04 Quit yosafbridge (K-Lined)
04:49:29 Join yosafbridge [0] (~yosafbrid@105.ip-167-114-152.net)
05:00
05:13:12 Quit jtdesigns01 (Ping timeout: 240 seconds)
05:23:41 Join chrisb [0] (~chrisb@li482-205.members.linode.com)
05:50:59 Quit TheSeven (Disconnected by services)
05:51:11 Join [7] [0] (~quassel@rockbox/developer/TheSeven)
05:53:11 Quit chrisb (Ping timeout: 255 seconds)
06:00
06:30:55***Saving seen data "./dancer.seen"
08:00
08:09:50 Quit Cinos (Ping timeout: 256 seconds)
08:12:21 Join Cinos [0] (~Cinos@a.kittyboy.named.cinos.pw)
08:14:28 Quit pixelma (Read error: Connection reset by peer)
08:14:28 Quit amiconn (Remote host closed the connection)
08:16:26 Join pixelma [0] (~pixelma@rockbox/staff/pixelma)
08:16:30 Join amiconn [0] (~amiconn@rockbox/developer/amiconn)
08:30:43 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl)
08:30:58***Saving seen data "./dancer.seen"
08:32:40 Join ender` [0] (krneki@foo.eternallybored.org)
08:55:04 Quit prof_wolfff (Ping timeout: 246 seconds)
08:56:07 Join petur [0] (~petur@rockbox/developer/petur)
09:00
09:29:42 Join jtdesigns01 [0] (~Thunderbi@c-68-43-178-141.hsd1.mi.comcast.net)
10:00
10:31:00***Saving seen data "./dancer.seen"
10:42:59 Join krnlyng [0] (~liar@83.175.90.24)
10:50:24 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
11:00
11:11:34 Quit rela (Ping timeout: 264 seconds)
11:12:12wodzkugel: On android/linux we could use tlsf implementation with mmap backend. This should work pretty good. That way we could make assumption that shinking realloc() does not move. It would be also trivial to impose mem cap (calc size of all mmaped pools)
11:13:45kugelcool
11:14:58kugelbut for a start we shouldn't impose a mem cap, as that would mean playback.c has to shrink the audio buffer, i.e. playback interruption
11:17:56wodzit is not memcap at buflib layer. If tlsf can use mmap() it dynamically adds memory pools to satisfy alloc request. As I understand sources this is 'growing only'. So allocs can still fail when tlsf is not able to satisfy request from current pools and mmap() fails.
11:18:40wodzkugel: But since pools are added dynamically one could impose limit. Thats all.
11:31:14kugelsince your looking at it :) is there one pool per alloc? are pools minimum-sized? are pools unmapped as a whole only?
11:32:02kugelit would suck if i make a 16MB alloc (e.g. tagcache), give 15.5MB back and have it wasted
11:34:38wodzit works like this 1) alloc is requested 2) tlfs figures out it can't satisfy it (for example there is no any single pool yet) 3) tlfs mmap() the pool of (area_size > DEFAULT_AREA_SIZE) ? area_size : DEFAULT_AREA_SIZE bytes 4) It tries to satisfy request again
11:35:27wodzso in your scenario it will be wasted from the system POV but will stay as pool in tlsf so it is possible to be used later
11:36:03wodzkugel: ^
11:36:28wodzDEFAULT_AREA_SIZE is 10MB in our sources
11:54:33 Join TheLemonMan [0] (~lemonboy@unaffiliated/thelemonman)
12:00
12:08:38 Quit orly_owl (Read error: Connection reset by peer)
12:09:07 Join orly_owl [0] (~david@unaffiliated/orly-owl/x-3167833)
12:20:25 Join emphaser [0] (~thc@p579ABD8D.dip0.t-ipconnect.de)
12:31:01***Saving seen data "./dancer.seen"
13:00
13:03:37 Quit krnlyng (Ping timeout: 240 seconds)
13:50:10 Quit jtdesigns01 (Remote host closed the connection)
13:50:23 Join jtdesigns01 [0] (~Thunderbi@2601:400:8000:2669:6d5e:720d:77f1:1793)
14:00
14:06:48 Join ZincAlloy [0] (~Adium@p57B9432E.dip0.t-ipconnect.de)
14:09:49 Quit Ivoah (Ping timeout: 265 seconds)
14:10:44 Join Ivoah [0] (~Ivoah@85-250-21-219.bb.netvision.net.il)
14:15:24 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
14:27:40 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
14:31:03***Saving seen data "./dancer.seen"
14:31:33 Join maruk [0] (~papier@titanium.v6.sdv.fr)
14:34:27 Join krnlyng [0] (~liar@83.175.90.24)
14:36:50 Join krabador [0] (~krabador@unaffiliated/krabador)
14:46:53 Quit derf (Ping timeout: 250 seconds)
14:48:41 Join derf [0] (~derf@static-108-18-126-14.washdc.fios.verizon.net)
15:00
15:29:02 Join chrisb [0] (~chrisb@li482-205.members.linode.com)
15:29:39 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
15:38:02 Join kugel_ [0] (~kugel@rockbox/developer/kugel)
15:39:12 Quit kugel (Ping timeout: 256 seconds)
15:43:04 Join amayer [0] (~amayer@mail.weberadvertising.com)
15:46:11 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
15:48:04 Quit chrisb (Ping timeout: 240 seconds)
15:49:42 Nick kugel_ is now known as kugel (~kugel@rockbox/developer/kugel)
15:49:53 Quit Bray9082_ (Ping timeout: 255 seconds)
16:00
16:21:59 Quit wodz (Remote host closed the connection)
16:22:39 Quit krabador (Quit: Take The Time)
16:31:05***Saving seen data "./dancer.seen"
16:35:23 Join Makinit [0] (makinit@makinit.nl)
16:45:46 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
16:54:37 Quit JanC (Ping timeout: 248 seconds)
17:00
17:08:41 Join JanC [0] (~janc@lugwv/member/JanC)
17:10:55 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
17:21:56 Quit petur (Read error: Connection reset by peer)
17:28:59 Join wodz [0] (~wodz@89-75-106-221.dynamic.chello.pl)
17:53:03 Quit kugel (Ping timeout: 272 seconds)
17:53:35 Join kugel [0] (~kugel@rockbox/developer/kugel)
17:58:41 Join krabador [0] (~krabador@unaffiliated/krabador)
18:00
18:05:13 Quit pamaury (Read error: Connection reset by peer)
18:12:52 Join chrisb [0] (~chrisb@li482-205.members.linode.com)
18:19:51 Join einhirn [0] (~Miranda@p5B0C5052.dip0.t-ipconnect.de)
18:28:59 Quit maruk (Quit: Leaving.)
18:31:06***Saving seen data "./dancer.seen"
18:37:08 Quit chrisb (Ping timeout: 256 seconds)
18:39:49 Quit wodz (Ping timeout: 240 seconds)
18:41:20 Quit krabador (Ping timeout: 255 seconds)
18:59:59 Join einhirn_ [0] (~Miranda@bsod.rz.tu-clausthal.de)
19:00
19:01:17 Quit einhirn (Ping timeout: 240 seconds)
19:18:09 Join rela [0] (~x@pdpc/supporter/active/rela)
19:32:38 Join lebellium [0] (~chatzilla@89-93-179-187.hfc.dyn.abo.bbox.fr)
20:00
20:13:03 Quit einhirn_ (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
20:25:05 Join Bray90820 [0] (~Bray90820@2604:2d80:800a:83e2:9906:f846:e2cc:4a6d)
20:28:09 Quit Moarc (Ping timeout: 244 seconds)
20:30:34 Join Moarc [0] (~chujko@a105.net128.okay.pl)
20:30:45 Join Bray9082_ [0] (~Bray90820@2604:2d80:800a:83e2:b930:1c73:d6f3:4549)
20:31:07***Saving seen data "./dancer.seen"
20:33:13 Quit Bray90820 (Ping timeout: 240 seconds)
20:35:36 Quit Bray9082_ (Client Quit)
20:51:12 Join Bray90820 [0] (~Bray90820@2604:2d80:800a:83e2:6475:9dfd:8c28:1ffb)
20:56:47 Quit bluebrother (Disconnected by services)
20:56:53 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
20:57:13 Join petur [0] (~petur@rockbox/developer/petur)
20:57:25 Join fs-bluebot_ [0] (~fs-bluebo@x5ce2475c.dyn.telefonica.de)
20:59:41 Quit fs-bluebot (Ping timeout: 265 seconds)
21:00
21:23:58 Quit Bray90820 ()
21:28:58 Join Bray90820 [0] (~Bray90820@2604:2d80:800a:0:a4b6:2992:f2b4:e949)
21:36:12 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
21:40:44 Quit pamaury (Client Quit)
21:41:52 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
21:52:24 Quit pamaury (Quit: No Ping reply in 180 seconds.)
21:53:33 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
21:54:28 Join Bray9082_ [0] (~Bray90820@173-19-67-111.client.mchsi.com)
21:56:01 Quit Bray90820 (Ping timeout: 240 seconds)
21:57:39 Join Bray90820 [0] (~Bray90820@2604:2d80:800a:0:a4b6:2992:f2b4:e949)
22:00
22:00:01 Quit Bray9082_ (Ping timeout: 260 seconds)
22:03:37 Quit Bray90820 (Ping timeout: 240 seconds)
22:05:35pamaurygerrit is becoming more usable: diff view is now working
22:05:47pamaurycheckout commands are available in the download menu
22:06:19foolshNice to hear :)
22:06:45 Join Bray90820 [0] (~Bray90820@173-17-46-117.client.mchsi.com)
22:09:00pamauryI hope Bjorn will restore openid login and anonymous browing
22:31:11***Saving seen data "./dancer.seen"
22:35:46 Quit lebellium (Quit: ChatZilla 0.9.92 [Firefox 41.0/20150917150946])
23:00
23:10:10 Quit pamaury (Ping timeout: 265 seconds)
23:12:29 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
23:23:53 Join p3tur [0] (~petur@rockbox/developer/petur)
23:24:17 Quit petur (Ping timeout: 272 seconds)
23:24:25 Nick p3tur is now known as petur (~petur@rockbox/developer/petur)
23:32:04 Join Bray9082_ [0] (~Bray90820@2604:2d80:800a:836e:9540:fe29:359e:d81e)
23:33:15 Join Bray908__ [0] (~Bray90820@173-17-46-117.client.mchsi.com)
23:34:09 Quit Bray90820 (Ping timeout: 244 seconds)
23:36:25 Quit Bray9082_ (Ping timeout: 240 seconds)
23:38:14 Quit amayer (Quit: Leaving)

Previous day | Next day