Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Apr 2017 04:41:47 +0000 (UTC)
From:      Patrick Kelsey <pkelsey@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r316632 - head/sys/sys
Message-ID:  <201704080441.v384flGA048035@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkelsey
Date: Sat Apr  8 04:41:46 2017
New Revision: 316632
URL: https://svnweb.freebsd.org/changeset/base/316632

Log:
  Fixed typo.
  
  CSUM_COALESED -> CSUM_COALESCED
  
  MFC after:	3 days

Modified:
  head/sys/sys/mbuf.h

Modified: head/sys/sys/mbuf.h
==============================================================================
--- head/sys/sys/mbuf.h	Sat Apr  8 04:37:01 2017	(r316631)
+++ head/sys/sys/mbuf.h	Sat Apr  8 04:41:46 2017	(r316632)
@@ -484,7 +484,7 @@ void sf_ext_free_nocache(void *, void *)
 #define	CSUM_L4_VALID		0x08000000	/* checksum is correct */
 #define	CSUM_L5_CALC		0x10000000	/* calculated layer 5 csum */
 #define	CSUM_L5_VALID		0x20000000	/* checksum is correct */
-#define	CSUM_COALESED		0x40000000	/* contains merged segments */
+#define	CSUM_COALESCED		0x40000000	/* contains merged segments */
 
 /*
  * CSUM flag description for use with printf(9) %b identifier.
@@ -495,7 +495,7 @@ void sf_ext_free_nocache(void *, void *)
     "\12CSUM_IP6_UDP\13CSUM_IP6_TCP\14CSUM_IP6_SCTP\15CSUM_IP6_TSO" \
     "\16CSUM_IP6_ISCSI" \
     "\31CSUM_L3_CALC\32CSUM_L3_VALID\33CSUM_L4_CALC\34CSUM_L4_VALID" \
-    "\35CSUM_L5_CALC\36CSUM_L5_VALID\37CSUM_COALESED"
+    "\35CSUM_L5_CALC\36CSUM_L5_VALID\37CSUM_COALESCED"
 
 /* CSUM flags compatibility mappings. */
 #define	CSUM_IP_CHECKED		CSUM_L3_CALC



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704080441.v384flGA048035>