[PATCH] 6pack: remove duplicated packet size check

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Nicolas Kaiser
Date: Saturday, October 23, 2010 - 12:11 pm

Packet size is checked twice in a row.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
---
 drivers/net/hamradio/6pack.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/drivers/net/hamradio/6pack.c b/drivers/net/hamradio/6pack.c
index 3e5d0b6..bf71742 100644
--- a/drivers/net/hamradio/6pack.c
+++ b/drivers/net/hamradio/6pack.c
@@ -172,11 +172,6 @@ static void sp_encaps(struct sixpack *sp, unsigned char *icp, int len)
 		goto out_drop;
 	}
 
-	if (len > sp->mtu) {	/* sp->mtu = AX25_MTU = max. PACLEN = 256 */
-		msg = "oversized transmit packet!";
-		goto out_drop;
-	}
-
 	if (p[0] > 5) {
 		msg = "invalid KISS command";
 		goto out_drop;
-- 
1.7.2.2
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] 6pack: remove duplicated packet size check, Nicolas Kaiser, (Sat Oct 23, 12:11 pm)