* [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to trasmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happend, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff, the RXJ- event never happen, and the modem can work quite stable. I tested the modem at China Unicom networks.
@ 2011-01-10 10:40 martin.xu
2011-01-11 17:11 ` Denis Kenzior
0 siblings, 1 reply; 3+ messages in thread
From: martin.xu @ 2011-01-10 10:40 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 932 bytes --]
From: Martin Xu <martin.xu@intel.com>
---
gatchat/ppp_lcp.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c
index bc97257..181bc14 100644
--- a/gatchat/ppp_lcp.c
+++ b/gatchat/ppp_lcp.c
@@ -106,7 +106,7 @@ static void lcp_generate_config_options(struct lcp_data *lcp)
static void lcp_reset_config_options(struct lcp_data *lcp)
{
lcp->req_options = REQ_OPTION_ACCM;
- lcp->accm = 0;
+ lcp->accm = ~0U;
lcp_generate_config_options(lcp);
}
@@ -153,7 +153,7 @@ static void lcp_rca(struct pppcp_data *pppcp, const struct pppcp_packet *packet)
* The Configuration Option is used to inform the peer which control
* characters MUST remain mapped when the peer sends them.
*/
- ppp_set_recv_accm(pppcp_get_ppp(pppcp), 0);
+ ppp_set_recv_accm(pppcp_get_ppp(pppcp), ~0U);
break;
default:
break;
--
1.7.2.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to trasmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happend, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff, the RXJ- event never happen, and the modem can work quite stable. I tested the modem at China Unicom networks.
2011-01-10 10:40 [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to trasmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happend, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff, the RXJ- event never happen, and the modem can work quite stable. I tested the modem at China Unicom networks martin.xu
@ 2011-01-11 17:11 ` Denis Kenzior
2011-01-12 1:25 ` [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to transmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happened, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff Xu, Martin
0 siblings, 1 reply; 3+ messages in thread
From: Denis Kenzior @ 2011-01-11 17:11 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 1669 bytes --]
Hi Martin,
On 01/10/2011 04:40 AM, martin.xu(a)intel.com wrote:
> From: Martin Xu <martin.xu@intel.com>
>
> ---
> gatchat/ppp_lcp.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
Can you please fix up your subject? It is simply too long. Make the
subject short and use the description field to describe the rest.
Do you have (or can you generate) a pppdump of this happening? What
protocol is RXJ- happening on? Does LCP layer accept our ACCM of 0 and
then later sends an RXJ-?
> diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c
> index bc97257..181bc14 100644
> --- a/gatchat/ppp_lcp.c
> +++ b/gatchat/ppp_lcp.c
> @@ -106,7 +106,7 @@ static void lcp_generate_config_options(struct lcp_data *lcp)
> static void lcp_reset_config_options(struct lcp_data *lcp)
> {
> lcp->req_options = REQ_OPTION_ACCM;
> - lcp->accm = 0;
> + lcp->accm = ~0U;
>
Strictly speaking, RFC 1662 says this about the default ACCM:
"For other types of links, the default value is 0, since there is
no need for mapping."
In theory we fall into the 'other type' category.
> lcp_generate_config_options(lcp);
> }
> @@ -153,7 +153,7 @@ static void lcp_rca(struct pppcp_data *pppcp, const struct pppcp_packet *packet)
> * The Configuration Option is used to inform the peer which control
> * characters MUST remain mapped when the peer sends them.
> */
> - ppp_set_recv_accm(pppcp_get_ppp(pppcp), 0);
> + ppp_set_recv_accm(pppcp_get_ppp(pppcp), ~0U);
See my comment for the previous patch. This part should not be needed.
> break;
> default:
> break;
Regards,
-Denis
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to transmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happened, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff.
2011-01-11 17:11 ` Denis Kenzior
@ 2011-01-12 1:25 ` Xu, Martin
0 siblings, 0 replies; 3+ messages in thread
From: Xu, Martin @ 2011-01-12 1:25 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 2709 bytes --]
Hi Denis:
> -----Original Message-----
> From: Denis Kenzior [mailto:denkenz(a)gmail.com]
> Sent: Wednesday, January 12, 2011 1:11 AM
> To: ofono(a)ofono.org
> Cc: Xu, Martin
> Subject: Re: [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to
> trasmit package. Using my Huawei modem (EM770W) if set ACCM as
> 0x00000000, the RXJ- event will happend, and PPP link down, when IP package
> transmit for a while. After I set ACCM as 0xffffffff...
>
> Hi Martin,
>
> On 01/10/2011 04:40 AM, martin.xu(a)intel.com wrote:
> > From: Martin Xu <martin.xu@intel.com>
> >
> > ---
> > gatchat/ppp_lcp.c | 4 ++--
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> >
>
> Can you please fix up your subject? It is simply too long. Make the
> subject short and use the description field to describe the rest.
I reinstalled my system, seems like git-send-email has messed up the subject and my description.
I will fix that.
>
> Do you have (or can you generate) a pppdump of this happening? What
> protocol is RXJ- happening on? Does LCP layer accept our ACCM of 0 and
> then later sends an RXJ-?
I have generated the pppdump and RXJ- is protocol reject. Protocol code is 0x0045, (if I am not wrong).
The RXJ- is totally unreasonable. LCP layer has already accept our ACCM 0.
And oFono never send the Protocol, So the main reason is data transmit error.
>
> > diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c
> > index bc97257..181bc14 100644
> > --- a/gatchat/ppp_lcp.c
> > +++ b/gatchat/ppp_lcp.c
> > @@ -106,7 +106,7 @@ static void lcp_generate_config_options(struct
> lcp_data *lcp)
> > static void lcp_reset_config_options(struct lcp_data *lcp)
> > {
> > lcp->req_options = REQ_OPTION_ACCM;
> > - lcp->accm = 0;
> > + lcp->accm = ~0U;
> >
>
> Strictly speaking, RFC 1662 says this about the default ACCM:
>
> "For other types of links, the default value is 0, since there is
> no need for mapping."
>
> In theory we fall into the 'other type' category.
I don't know why we should fall into 'other type'? :-)
I think that depends on modem we used.
> > lcp_generate_config_options(lcp);
> > }
> > @@ -153,7 +153,7 @@ static void lcp_rca(struct pppcp_data *pppcp, const
> struct pppcp_packet *packet)
> > * The Configuration Option is used to inform the peer which control
> > * characters MUST remain mapped when the peer sends them.
> > */
> > - ppp_set_recv_accm(pppcp_get_ppp(pppcp), 0);
> > + ppp_set_recv_accm(pppcp_get_ppp(pppcp), ~0U);
>
> See my comment for the previous patch. This part should not be needed.
> > break;
> > default:
> > break;
>
> Regards,
> -Denis
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-01-12 1:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-10 10:40 [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to trasmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happend, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff, the RXJ- event never happen, and the modem can work quite stable. I tested the modem at China Unicom networks martin.xu
2011-01-11 17:11 ` Denis Kenzior
2011-01-12 1:25 ` [PATCH 2/2] Inform Huawei modem using ACCM 0xffffffff to transmit package. Using my Huawei modem (EM770W) if set ACCM as 0x00000000, the RXJ- event will happened, and PPP link down, when IP package transmit for a while. After I set ACCM as 0xffffffff Xu, Martin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.