summaryrefslogtreecommitdiff
path: root/datapath-windows
diff options
context:
space:
mode:
Diffstat (limited to 'datapath-windows')
-rw-r--r--datapath-windows/ovsext/IpFragment.c4
-rw-r--r--datapath-windows/ovsext/IpFragment.h2
2 files changed, 3 insertions, 3 deletions
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,