[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180409.110438.458180702294361660.davem@davemloft.net>
Date: Mon, 09 Apr 2018 11:04:38 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: tejaswit@...eaurora.org
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH] slip: Check if rstate is initialized before
uncompressing
From: Tejaswi Tanikella <tejaswit@...eaurora.org>
Date: Mon, 9 Apr 2018 14:23:49 +0530
> @@ -673,6 +677,7 @@ struct slcompress *
> if (cs->cs_tcp.doff > 5)
> memcpy(cs->cs_tcpopt, icp + ihl*4 + sizeof(struct tcphdr), (cs->cs_tcp.doff - 5) * 4);
> cs->cs_hsize = ihl*2 + cs->cs_tcp.doff*2;
> + cs->initialized = 1;
> /* Put headers back on packet
...
> struct cstate {
> byte_t cs_this; /* connection id number (xmit) */
> + byte_t initialized; /* non-zero if initialized */
Please use 'bool' and true/false for 'initialized'.
Powered by blists - more mailing lists