Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/dev/pci pullup-1-6 ticket #499 (thorpej).



details:   https://anonhg.NetBSD.org/src/rev/1130e538a039
branches:  netbsd-1-6
changeset: 528427:1130e538a039
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon Jul 15 16:14:01 2002 +0000

description:
pullup-1-6 ticket #499 (thorpej).

Original log message:
Correct the description of two bits in the TCP context descriptor.

diffstat:

 sys/dev/pci/if_wmreg.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 2c17cd6999a6 -r 1130e538a039 sys/dev/pci/if_wmreg.h
--- a/sys/dev/pci/if_wmreg.h    Mon Jul 15 16:12:46 2002 +0000
+++ b/sys/dev/pci/if_wmreg.h    Mon Jul 15 16:14:01 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_wmreg.h,v 1.1 2002/03/28 04:54:35 thorpej Exp $     */
+/*     $NetBSD: if_wmreg.h,v 1.1.6.1 2002/07/15 16:14:01 thorpej Exp $ */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -145,8 +145,8 @@
 };
 
 /* commands for context descriptors */
-#define        WTX_TCPIP_CMD_TCP       (1U << 24)      /* TCP context valid */
-#define        WTX_TCPIP_CMD_IP        (1U << 25)      /* IP context valid */
+#define        WTX_TCPIP_CMD_TCP       (1U << 24)      /* 1 = TCP, 0 = UDP */
+#define        WTX_TCPIP_CMD_IP        (1U << 25)      /* 1 = IPv4, 0 = IPv6 */
 #define        WTX_TCPIP_CMD_TSE       (1U << 26)      /* segmentation context valid */
 
 #define        WTX_TCPIP_IPCSS(x)      ((x) << 0)      /* checksum start */



Home | Main Index | Thread Index | Old Index