Re: [PATCH 0/5 v4] Neighbor Cell Info Atom

2011-03-01 Thread Jarkko Tulla
On 02/14/2011 04:56 PM, Antti Paila wrote: This series of patches implements an interface for client applications to fetch the ECID information of neighboring cells using DBUS. Since the 1st version the DBUS api has been refactored to use new naming for method and to use flat data

ofono patch review policy?

2011-03-01 Thread George Matveev
Hi, on February 6, I submitted a patch (isimodem): http://lists.ofono.org/pipermail/ofono/2011-February/008635.html But it is already March and the patch has never been reviewed nor formally rejected. Other people had asked similar questions regarding their patches recently on #ofono IRC. It

Re: ofono patch review policy?

2011-03-01 Thread Aki Niemi
Hi George, 2011/3/1 George Matveev geo...@matveev.se: on February 6, I submitted a patch (isimodem): http://lists.ofono.org/pipermail/ofono/2011-February/008635.html But it is already March and the patch has never been reviewed nor formally rejected. Sorry, I had missed that. Other

Re: [PATCH 1/1] isimodem: group timeouts in enum, remove unused timeout

2011-03-01 Thread Aki Niemi
Hi George, 2011/2/6 George Matveev geo...@matveev.se: Introduce enum network_timeout for scan/registration timeouts, remove unused NETWORK_TIMEOUT. ---  drivers/isimodem/network.h |    8 +---  1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/isimodem/network.h

[PATCH] PPP: Optimize write buffer management

2011-03-01 Thread Patrick Porlan
Replace modulo operations in ringbuffer.c by masking operations. That's possible because the size of the ring buffers is always a power of two, and yields a small performance improvement. More importantly, extend the write buffer handling in gathdlc.c to minimize stalling and process switching

Re: [PATCH] TODO: set owner of 'Dial strings' task

2011-03-01 Thread Denis Kenzior
Hi Lucas, On 03/01/2011 08:25 AM, Lucas De Marchi wrote: --- TODO |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

Re: [PATCH 1/3] mbmmodem: close chat before sending fd

2011-03-01 Thread Denis Kenzior
Hi Lucas, On 02/28/2011 07:43 AM, Lucas De Marchi wrote: --- drivers/mbmmodem/location-reporting.c | 44 ++--- 1 files changed, 24 insertions(+), 20 deletions(-) diff --git a/drivers/mbmmodem/location-reporting.c b/drivers/mbmmodem/location-reporting.c

Re: [PATCH 2/3] location-reporting: don't add client-exit watch too early

2011-03-01 Thread Denis Kenzior
Hi Lucas, On 02/28/2011 07:43 AM, Lucas De Marchi wrote: Wait until driver gives us a file descriptor to start watching for client exit. This fixes a race when client exits before the driver calls location_reporting_enable_cb(). --- src/location-reporting.c | 10 -- 1 files

Re: [PATCH] PPP: Optimize write buffer management

2011-03-01 Thread Denis Kenzior
Hi Patrick, On 03/01/2011 09:07 AM, Patrick Porlan wrote: Replace modulo operations in ringbuffer.c by masking operations. That's possible because the size of the ring buffers is always a power of two, and yields a small performance improvement. More importantly, extend the write buffer