Module Name:    src
Committed By:   tsutsui
Date:           Sat Aug 14 09:57:13 UTC 2010

Modified Files:
        src/sys/dev/usb: if_axe.c

Log Message:
Fix missed botch in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/dev/usb/if_axe.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/if_axe.c
diff -u src/sys/dev/usb/if_axe.c:1.42 src/sys/dev/usb/if_axe.c:1.43
--- src/sys/dev/usb/if_axe.c:1.42	Sat Aug 14 09:02:17 2010
+++ src/sys/dev/usb/if_axe.c	Sat Aug 14 09:57:13 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_axe.c,v 1.42 2010/08/14 09:02:17 tsutsui Exp $	*/
+/*	$NetBSD: if_axe.c,v 1.43 2010/08/14 09:57:13 tsutsui Exp $	*/
 /*	$OpenBSD: if_axe.c,v 1.96 2010/01/09 05:33:08 jsg Exp $ */
 
 /*
@@ -89,7 +89,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_axe.c,v 1.42 2010/08/14 09:02:17 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_axe.c,v 1.43 2010/08/14 09:57:13 tsutsui Exp $");
 
 #if defined(__NetBSD__)
 #include "opt_inet.h"
@@ -978,10 +978,10 @@
 				pktlen = total_len;
 				total_len = 0;
 			} else {
-				total_len -= rxlen;
 				pktlen = rxlen;
+				rxlen = roundup2(rxlen, 2);
+				total_len -= rxlen;
 			}
-			rxlen = roundup2(rxlen, 2);
 
 		} else { /* AX172 */
 			pktlen = rxlen = total_len;

Reply via email to