[PATCH] gisi: Consumer functions for ISI message iterator

2011-03-02 Thread Antti Paila
--- gisi/iter.c | 63 +++ gisi/iter.h | 13 2 files changed, 76 insertions(+), 0 deletions(-) diff --git a/gisi/iter.c b/gisi/iter.c index a925b15..f3f6f5a 100644 --- a/gisi/iter.c +++ b/gisi/iter.c @@ -55,6 +55,7 @@ void g_

Re: [PATCH] ste: Add support for multiple AT channels

2011-03-02 Thread Denis Kenzior
Hi Lasse, On 03/02/2011 03:33 AM, Lasse Kunnasluoto wrote: > --- > plugins/ste.c | 138 > - > 1 files changed, 87 insertions(+), 51 deletions(-) > > diff --git a/plugins/ste.c b/plugins/ste.c > index b786571..9a1d3d3 100644 > --- a/plugin

Re: [PATCH] stk: Handle Refresh if also performed by modem.

2011-03-02 Thread Denis Kenzior
Hi Andrew, On 02/19/2011 04:00 AM, Andrzej Zaborowski wrote: > --- > src/stk.c | 33 +++-- > 1 files changed, 27 insertions(+), 6 deletions(-) > Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofon

Re: patch to fix BMC #13679 Huawei EM770: ofonod crash when disable/enable 3G technology

2011-03-02 Thread Denis Kenzior
Hi Martin, On 03/02/2011 03:59 AM, Xu, Martin wrote: > Looks like my smtp server has some issue currently. > So send the patch through attachment. > Sorry for inconvenient. > > diff --git a/plugins/huawei.c b/plugins/huawei.c > index 6f05677..5e2ee90 100644 > --- a/plugins/huawei.c > +++ b/plug

Re: [PATCH v2] atmodem: Add MBM vendor quirk for SIM record update

2011-03-02 Thread Denis Kenzior
Hi Miia, On 03/02/2011 06:56 AM, Miia Leinonen wrote: > --- > > Hi Denis, > > Modified the fix according to your comment to remove duplicate code. > > BR, > Miia > > drivers/atmodem/sim.c | 28 ++-- > 1 files changed, 26 insertions(+), 2 deletions(-) > Patch has be

Re: [PATCH] TODO: Mark pin check status task as done

2011-03-02 Thread Denis Kenzior
Hi Jussi, On 03/02/2011 09:20 AM, Jussi Kangas wrote: > --- > > Hi, > > This can now be set as done. > > Br, > Jussi > > TODO |7 --- > 1 files changed, 0 insertions(+), 7 deletions(-) > Patch has been applied, thanks. Regards, -Denis __

Re: [PATCH] Replace modulo operations in ringbuffer.c by masking operations.

2011-03-02 Thread Denis Kenzior
Hi Patrick, On 03/02/2011 04:15 AM, Patrick Porlan wrote: > That's possible because the size of the ring buffers is always > a power of two, and yields a small performance improvement. > > The improvement should be mostly visible on processors that implement > division in microcode (Atom) or lack

Re: [PATCH] PPP: Optimize write buffer management

2011-03-02 Thread Denis Kenzior
Hi Patrick, >> Is there a particular reason why you chose to use a ring buffer of ring >> buffers? A simple GQueue might be much easier to understand. If you are >> worried about 'infinite queuing' then a simple counter might help to >> alleviate that. > > Well, this implementation opens the doo

[PATCH] TODO: Mark pin check status task as done

2011-03-02 Thread Jussi Kangas
--- Hi, This can now be set as done. Br, Jussi TODO |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/TODO b/TODO index 3735e6d..c432cba 100644 --- a/TODO +++ b/TODO @@ -81,13 +81,6 @@ SIM / SIM File system Complexity: C2 Owner: Pekka Pessi -- Check SIM p

[PATCH v2] atmodem: Add MBM vendor quirk for SIM record update

2011-03-02 Thread Miia Leinonen
--- Hi Denis, Modified the fix according to your comment to remove duplicate code. BR, Miia drivers/atmodem/sim.c | 28 ++-- 1 files changed, 26 insertions(+), 2 deletions(-) diff --git a/drivers/atmodem/sim.c b/drivers/atmodem/sim.c index d9c0d8d..c26e44d 100644 ---

Re: [RFCv3] doc: Proposal for LTE/IMS API

2011-03-02 Thread Arun Ravindran
Hi Sjur + + boolean VoiceOverPs [readonly] + + IMS voice is enabled by network + Related AT command: AT+CIREP. + + string CsHandoverProgress [readonly, optional] + + Indicates the handover progress stat

[PATCH] Replace modulo operations in ringbuffer.c by masking operations.

2011-03-02 Thread Patrick Porlan
That's possible because the size of the ring buffers is always a power of two, and yields a small performance improvement. The improvement should be mostly visible on processors that implement division in microcode (Atom) or lack a division instruction (ARM). --- gatchat/ringbuffer.c | 14 +

patch to fix BMC #13679 Huawei EM770: ofonod crash when disable/enable 3G technology

2011-03-02 Thread Xu, Martin
Looks like my smtp server has some issue currently. So send the patch through attachment. Sorry for inconvenient. 0001-Fix-huawei_disconnect-function-issue.patch Description: 0001-Fix-huawei_disconnect-function-issue.patch ___ ofono mailing list ofono

[PATCH] ste: Add support for multiple AT channels

2011-03-02 Thread Lasse Kunnasluoto
--- plugins/ste.c | 138 - 1 files changed, 87 insertions(+), 51 deletions(-) diff --git a/plugins/ste.c b/plugins/ste.c index b786571..9a1d3d3 100644 --- a/plugins/ste.c +++ b/plugins/ste.c @@ -65,13 +65,19 @@ #include #include -#def

Re: [PATCH] PPP: Optimize write buffer management

2011-03-02 Thread Patrick Porlan
Hi Denis, On Tue, 2011-03-01 at 21:47 -0600, Denis Kenzior wrote: > This is a great description, but right after reading it one should > realize that this patch is better broken down into two. The first patch > addressing the ringbuffer performance improvements and the second one > dealing with P