aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ppp_deflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ppp_deflate.c')
-rw-r--r--drivers/net/ppp_deflate.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/drivers/net/ppp_deflate.c b/drivers/net/ppp_deflate.c
index 695bc83e0cfd..1dbdf82a6dfd 100644
--- a/drivers/net/ppp_deflate.c
+++ b/drivers/net/ppp_deflate.c
@@ -41,6 +41,7 @@
41#include <linux/ppp-comp.h> 41#include <linux/ppp-comp.h>
42 42
43#include <linux/zlib.h> 43#include <linux/zlib.h>
44#include <asm/unaligned.h>
44 45
45/* 46/*
46 * State for a Deflate (de)compressor. 47 * State for a Deflate (de)compressor.
@@ -128,7 +129,7 @@ static void *z_comp_alloc(unsigned char *options, int opt_len)
128 129
129 state->strm.next_in = NULL; 130 state->strm.next_in = NULL;
130 state->w_size = w_size; 131 state->w_size = w_size;
131 state->strm.workspace = vmalloc(zlib_deflate_workspacesize()); 132 state->strm.workspace = vmalloc(zlib_deflate_workspacesize(-w_size, 8));
132 if (state->strm.workspace == NULL) 133 if (state->strm.workspace == NULL)
133 goto out_free; 134 goto out_free;
134 135
@@ -232,11 +233,9 @@ static int z_compress(void *arg, unsigned char *rptr, unsigned char *obuf,
232 */ 233 */
233 wptr[0] = PPP_ADDRESS(rptr); 234 wptr[0] = PPP_ADDRESS(rptr);
234 wptr[1] = PPP_CONTROL(rptr); 235 wptr[1] = PPP_CONTROL(rptr);
235 wptr[2] = PPP_COMP >> 8; 236 put_unaligned_be16(PPP_COMP, wptr + 2);
236 wptr[3] = PPP_COMP;
237 wptr += PPP_HDRLEN; 237 wptr += PPP_HDRLEN;
238 wptr[0] = state->seqno >> 8; 238 put_unaligned_be16(state->seqno, wptr);
239 wptr[1] = state->seqno;
240 wptr += DEFLATE_OVHD; 239 wptr += DEFLATE_OVHD;
241 olen = PPP_HDRLEN + DEFLATE_OVHD; 240 olen = PPP_HDRLEN + DEFLATE_OVHD;
242 state->strm.next_out = wptr; 241 state->strm.next_out = wptr;
@@ -306,7 +305,7 @@ static void z_decomp_free(void *arg)
306 305
307 if (state) { 306 if (state) {
308 zlib_inflateEnd(&state->strm); 307 zlib_inflateEnd(&state->strm);
309 kfree(state->strm.workspace); 308 vfree(state->strm.workspace);
310 kfree(state); 309 kfree(state);
311 } 310 }
312} 311}
@@ -346,8 +345,7 @@ static void *z_decomp_alloc(unsigned char *options, int opt_len)
346 345
347 state->w_size = w_size; 346 state->w_size = w_size;
348 state->strm.next_out = NULL; 347 state->strm.next_out = NULL;
349 state->strm.workspace = kmalloc(zlib_inflate_workspacesize(), 348 state->strm.workspace = vmalloc(zlib_inflate_workspacesize());
350 GFP_KERNEL|__GFP_REPEAT);
351 if (state->strm.workspace == NULL) 349 if (state->strm.workspace == NULL)
352 goto out_free; 350 goto out_free;
353 351
@@ -451,7 +449,7 @@ static int z_decompress(void *arg, unsigned char *ibuf, int isize,
451 } 449 }
452 450
453 /* Check the sequence number. */ 451 /* Check the sequence number. */
454 seq = (ibuf[PPP_HDRLEN] << 8) + ibuf[PPP_HDRLEN+1]; 452 seq = get_unaligned_be16(ibuf + PPP_HDRLEN);
455 if (seq != (state->seqno & 0xffff)) { 453 if (seq != (state->seqno & 0xffff)) {
456 if (state->debug) 454 if (state->debug)
457 printk(KERN_DEBUG "z_decompress%d: bad seq # %d, expected %d\n", 455 printk(KERN_DEBUG "z_decompress%d: bad seq # %d, expected %d\n",