From: Florian Westphal Date: Wed, 28 Jan 2015 09:56:04 +0000 (+0100) Subject: ppp: deflate: never return len larger than output buffer X-Git-Tag: fixes-v4.0-rc1~200^2~31 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2a4800e75780ccf4e6c2487f82b688ba736eb18;p=pandora-kernel.git ppp: deflate: never return len larger than output buffer When we've run out of space in the output buffer to store more data, we will call zlib_deflate with a NULL output buffer until we've consumed remaining input. When this happens, olen contains the size the output buffer would have consumed iff we'd have had enough room. This can later cause skb_over_panic when ppp_generic skb_put()s the returned length. Reported-by: Iain Douglas Signed-off-by: Florian Westphal Signed-off-by: David S. Miller --- Reading git-diff-tree failed