From: Matvejchikov Ilya Date: Tue, 12 Jul 2011 21:46:17 +0000 (+0000) Subject: slip: fix MTU comparation operation when reallocating buffers X-Git-Tag: v3.1-rc1~316^2~167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e28634d6b229dec216596298c765c203d6b6fa4c;p=profile%2Fivi%2Fkernel-x86-ivi.git slip: fix MTU comparation operation when reallocating buffers In sl_realloc_bufs() there is no reason to check if the requested MTU greater than or equal to the current MTU value as this function called only when requested MTU not equals to the current value. So, the ">=" operation can be safely replaced with the ">". Signed-off-by: Matvejchikov Ilya Signed-off-by: David S. Miller --- diff --git a/drivers/net/slip.c b/drivers/net/slip.c index e8c4582..d724d47 100644 --- a/drivers/net/slip.c +++ b/drivers/net/slip.c @@ -247,7 +247,7 @@ static int sl_realloc_bufs(struct slip *sl, int mtu) #else if (xbuff == NULL || rbuff == NULL) { #endif - if (mtu >= sl->mtu) { + if (mtu > sl->mtu) { printk(KERN_WARNING "%s: unable to grow slip buffers, MTU change cancelled.\n", dev->name); err = -ENOBUFS;