summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Muezerie <[email protected]>2026-05-26 15:49:22 -0400
committerAndre Muezerie <[email protected]>2026-05-26 15:49:22 -0400
commited0471c3f7dde410e5a2445c9b374bd401146b6d (patch)
tree64940da1d18a503079638cb0a66f48711d11e46f
parent90c9d7a3806698e5716170efe264fd3d637816e5 (diff)
Fixed typos
-rw-r--r--network/config/bindview/BINDVIEW.CPP2
-rw-r--r--network/modem/fakemodem/ioctl.c2
-rw-r--r--network/modem/fakemodem/readwrit.c12
-rw-r--r--network/ndis/extension/base/SxApi.h8
-rw-r--r--network/ndis/extension/base/SxBase.c2
-rw-r--r--network/ndis/extension/base/SxLibrary.h8
-rw-r--r--network/ndis/ndisprot_kmdf/60/send.c6
-rw-r--r--network/ndis/netvmini/6x/adapter.c4
-rw-r--r--network/ndis/netvmini/6x/adapter.h4
-rw-r--r--network/ndis/netvmini/6x/datapath.c2
-rw-r--r--network/ndis/netvmini/6x/vmq.c2
11 files changed, 26 insertions, 26 deletions
diff --git a/network/config/bindview/BINDVIEW.CPP b/network/config/bindview/BINDVIEW.CPP
index 8fee84be..dbd26fb5 100644
--- a/network/config/bindview/BINDVIEW.CPP
+++ b/network/config/bindview/BINDVIEW.CPP
@@ -1563,7 +1563,7 @@ VOID ShowBindingPathMenu (HWND hwndOwner,
// lpdwItemType [out] Type, binding path or network component.
// fEnabled [out] TRUE if the binding path or component is enabled.
//
-// Returns: TRUE on sucess.
+// Returns: TRUE on success.
//
// Notes:
//
diff --git a/network/modem/fakemodem/ioctl.c b/network/modem/fakemodem/ioctl.c
index 445910bd..a3268cd2 100644
--- a/network/modem/fakemodem/ioctl.c
+++ b/network/modem/fakemodem/ioctl.c
@@ -689,7 +689,7 @@ Return Value:
case IOCTL_SERIAL_SET_HANDFLOW:
case IOCTL_SERIAL_RESET_DEVICE: {
//
- // NOTE: The application expects STATUS_SUCCESS for these ioctsl.
+ // NOTE: The application expects STATUS_SUCCESS for these ioctls.
// so don't merge this with default.
//
break;
diff --git a/network/modem/fakemodem/readwrit.c b/network/modem/fakemodem/readwrit.c
index af6da937..f750e155 100644
--- a/network/modem/fakemodem/readwrit.c
+++ b/network/modem/fakemodem/readwrit.c
@@ -49,8 +49,8 @@ Arguments:
Length - Length of the IO operation
The default property of the queue is to not dispatch
- zero lenght read & write requests to the driver and
- complete is with status success. So we will never get
+ zero length read & write requests to the driver and
+ complete it with status success. So we will never get
a zero length request.
Return Value:
@@ -117,8 +117,8 @@ Arguments:
Length - Length of the IO operation
The default property of the queue is to not dispatch
- zero lenght read & write requests to the driver and
- complete is with status success. So we will never get
+ zero length read & write requests to the driver and
+ complete it with status success. So we will never get
a zero length request.
Return Value:
@@ -193,8 +193,8 @@ Arguments:
Length - Length of the IO operation
The default property of the queue is to not dispatch
- zero lenght read & write requests to the driver and
- complete is with status success. So we will never get
+ zero length read & write requests to the driver and
+ complete it with status success. So we will never get
a zero length request.
Return Value:
diff --git a/network/ndis/extension/base/SxApi.h b/network/ndis/extension/base/SxApi.h
index d52d5a03..85193063 100644
--- a/network/ndis/extension/base/SxApi.h
+++ b/network/ndis/extension/base/SxApi.h
@@ -58,7 +58,7 @@ SxExtInitialize
Routine Description:
This function is called from the SxBase Library during DriverEntry.
- An extension should allocate/initalize all global data in this function.
+ An extension should allocate/initialize all global data in this function.
Arguments:
NULL
@@ -410,7 +410,7 @@ SxExtDeleteNic
Routine Description:
This function is called to delete a NIC from a switch.
- No futher traffic/control will be recieved for this NIC.
+ No further traffic/control will be received for this NIC.
Arguments:
Switch - the Switch context
@@ -438,7 +438,7 @@ SxExtTeardownPort
Routine Description:
This function is called to start deletion of a port on a switch.
- Upon recieving this call, no further references may be taken
+ Upon receiving this call, no further references may be taken
on the given port.
Arguments:
@@ -467,7 +467,7 @@ SxExtDeletePort
Routine Description:
This function is called to finish deletion of a port on a switch.
- Upon recieving this call, no traffic/control will be recieved
+ Upon receiving this call, no traffic/control will be received
for this port.
Arguments:
diff --git a/network/ndis/extension/base/SxBase.c b/network/ndis/extension/base/SxBase.c
index 0d9bc91a..ad84138a 100644
--- a/network/ndis/extension/base/SxBase.c
+++ b/network/ndis/extension/base/SxBase.c
@@ -348,7 +348,7 @@ SxNdisDetach(
ExFreePool(switchObject);
//
- // Alway return success.
+ // Always return success.
//
DEBUGP(DL_TRACE, ("<===SxDetach Successfully\n"));
diff --git a/network/ndis/extension/base/SxLibrary.h b/network/ndis/extension/base/SxLibrary.h
index 325b9361..a16d20cd 100644
--- a/network/ndis/extension/base/SxLibrary.h
+++ b/network/ndis/extension/base/SxLibrary.h
@@ -23,7 +23,7 @@ Routine Description:
This function is called to forward NBLs on ingress.
The extension MUST call this function, or call
SxLibCompleteNetBufferListsIngress for every NBL in NetBufferLists,
- recieved in SxExtStartNetBufferListsIngress.
+ received in SxExtStartNetBufferListsIngress.
This function can also be called to inject NBLs.
If there are NBLs in NetBufferLists that are initiated by the
@@ -62,7 +62,7 @@ Routine Description:
This function is called to forward NBLs on egress.
The extension MUST call this function, or call
SxLibCompleteNetBufferListsEgress for every NBL in NetBufferLists
- recieved in SxExtStartNetBufferListsEgress.
+ received in SxExtStartNetBufferListsEgress.
Arguments:
@@ -94,7 +94,7 @@ SxLibCompleteNetBufferListsEgress
Routine Description:
This function is called to complete NBLs on egress.
- The extension MUST call this function for all NBLs recieved
+ The extension MUST call this function for all NBLs received
in SxExtStartCompleteNetBufferListsEgress.
Arguments:
@@ -124,7 +124,7 @@ SxLibCompleteNetBufferListsIngress
Routine Description:
This function is called to complete NBLs on ingress.
The extension MUST call this function, or
- SxLibCompletedInjectedNetBufferLists for all NBLs recieved in
+ SxLibCompletedInjectedNetBufferLists for all NBLs received in
SxExtStartCompleteNetBufferListsEgress.
Arguments:
diff --git a/network/ndis/ndisprot_kmdf/60/send.c b/network/ndis/ndisprot_kmdf/60/send.c
index 5c009939..31efd03c 100644
--- a/network/ndis/ndisprot_kmdf/60/send.c
+++ b/network/ndis/ndisprot_kmdf/60/send.c
@@ -37,10 +37,10 @@ Arguments:
Queue - Default queue handle
Request - Handle to the read/write request
- Lenght - Length of the data buffer associated with the request.
+ Length - Length of the data buffer associated with the request.
The default property of the queue is to not dispatch
- zero lenght read & write requests to the driver and
- complete is with status success. So we will never get
+ zero length read & write requests to the driver and
+ complete it with status success. So we will never get
a zero length request.
Return Value:
diff --git a/network/ndis/netvmini/6x/adapter.c b/network/ndis/netvmini/6x/adapter.c
index 3cf0ce59..1dd3e312 100644
--- a/network/ndis/netvmini/6x/adapter.c
+++ b/network/ndis/netvmini/6x/adapter.c
@@ -552,7 +552,7 @@ Routine Description:
send requests must be completed, and new requests must be rejected with
NDIS_STATUS_PAUSED.
- Once all sends have been completed and all recieve NBLs have returned to
+ Once all sends have been completed and all receive NBLs have returned to
the miniport, the miniport enters the Paused state.
While paused, the miniport can still service interrupts from the hardware
@@ -2281,7 +2281,7 @@ Arguments:
Return Value:
- NDIS_STATUS_SUCCESS if reference was acquired succesfully.
+ NDIS_STATUS_SUCCESS if reference was acquired successfully.
NDIS_STATUS_ADAPTER_NOT_READY if the adapter state is such that we should not acquire new references to resources
--*/
diff --git a/network/ndis/netvmini/6x/adapter.h b/network/ndis/netvmini/6x/adapter.h
index cfc540d3..92d84508 100644
--- a/network/ndis/netvmini/6x/adapter.h
+++ b/network/ndis/netvmini/6x/adapter.h
@@ -52,14 +52,14 @@ typedef struct _MP_ADAPTER_RECEIVE_DPC
{
LIST_ENTRY Entry;
//
- // Kernel DPC used for recieve
+ // Kernel DPC used for receive
//
KDPC Dpc;
USHORT ProcessorGroup;
ULONG ProcessorNumber;
//
- // Tracks which receive blocks need to be recieved on this DPC.
+ // Tracks which receive blocks need to be received on this DPC.
//
BOOLEAN RecvBlock[NIC_SUPPORTED_NUM_QUEUES];
volatile LONG RecvBlockCount;
diff --git a/network/ndis/netvmini/6x/datapath.c b/network/ndis/netvmini/6x/datapath.c
index 1c18094c..19b7cb6c 100644
--- a/network/ndis/netvmini/6x/datapath.c
+++ b/network/ndis/netvmini/6x/datapath.c
@@ -755,7 +755,7 @@ Arguments:
Return Value:
- NDIS_STATUS_SUCCESS if reference was acquired succesfully.
+ NDIS_STATUS_SUCCESS if reference was acquired successfully.
NDIS_STATUS_ADAPTER_NOT_READY if the adapter state is such that we should not acquire new references to resources
--*/
diff --git a/network/ndis/netvmini/6x/vmq.c b/network/ndis/netvmini/6x/vmq.c
index 942ee009..71c561bb 100644
--- a/network/ndis/netvmini/6x/vmq.c
+++ b/network/ndis/netvmini/6x/vmq.c
@@ -3104,7 +3104,7 @@ Routine Description:
Arguments:
Adapter - Pointer to our adapter
- Rcb - RCB to queue for recieve
+ Rcb - RCB to queue for receive
Return Value: