From 420632af322e2f519b098b1d4a0504c9eaebd07a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 26 Sep 2018 16:12:39 -0700 Subject: treewide: Fix spelling of "receive". Signed-off-by: Ben Pfaff Acked-by: Justin Pettit --- datapath-windows/ovsext/IpFragment.c | 4 ++-- datapath-windows/ovsext/IpFragment.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'datapath-windows') diff --git a/datapath-windows/ovsext/IpFragment.c b/datapath-windows/ovsext/IpFragment.c index d59d7cf96..bb2cfe021 100644 --- a/datapath-windows/ovsext/IpFragment.c +++ b/datapath-windows/ovsext/IpFragment.c @@ -230,7 +230,7 @@ cleanup: /* *---------------------------------------------------------------------------- * OvsProcessIpv4Fragment - * Reassemble the fragments once all the fragments are recieved and + * Reassemble the fragments once all the fragments are received and * return NDIS_STATUS_PENDING for the pending fragments * XXX - Instead of copying NBls, Keep the NBLs in limbo state. *---------------------------------------------------------------------------- @@ -403,7 +403,7 @@ found: entry->tail = fragStorage; } - /*Update Maximum recieved Unit */ + /*Update Maximum Receive Unit */ entry->mru = entry->mru > (ETH_HEADER_LENGTH + ipHdrLen + payloadLen) ? entry->mru : (ETH_HEADER_LENGTH + ipHdrLen + payloadLen); entry->numFragments++; diff --git a/datapath-windows/ovsext/IpFragment.h b/datapath-windows/ovsext/IpFragment.h index cd5b96033..2b2305132 100644 --- a/datapath-windows/ovsext/IpFragment.h +++ b/datapath-windows/ovsext/IpFragment.h @@ -57,7 +57,7 @@ typedef struct _OVS_IPFRAG_THREAD_CTX { #define IP_FRAG_HASH_TABLE_SIZE ((UINT32)1 << 10) #define IP_FRAG_HASH_TABLE_MASK (IP_FRAG_HASH_TABLE_SIZE - 1) -/*30s -Sufficient time to recieve all fragments.*/ +/*30s -Sufficient time to receive all fragments.*/ #define IPFRAG_ENTRY_TIMEOUT 300000000LL #define IPFRAG_CLEANUP_INTERVAL IPFRAG_ENTRY_TIMEOUT * 2 /*1m.*/ PNET_BUFFER_LIST OvsIpv4FragmentNBL(PVOID ovsContext, -- cgit v1.2.1