[CMAKE]
[reactos.git] / drivers /
2008-10-03 Cameron Gutman - Send NDIS_STATUS_RESET_START to all bound protocols...
2008-10-03 Cameron Gutman - Move the implementation of NdisMIndicateStatus to...
2008-10-03 Cameron Gutman - Implement NdisMIndicateStatusComplete
2008-10-03 Cameron Gutman - Implement NdisMIndicateStatus
2008-10-02 Cameron Gutman - Adapter is PLOGICAL_ADAPTER not PNDIS_MINIPORT_BLOCK
2008-10-02 Cameron Gutman - Only call MiniportISR if the miniport driver called...
2008-10-01 Cameron Gutman - Adapter not NdisMiniportBlock is passed to ServiceRo...
2008-09-30 Cameron Gutman - Send the packet immediately if the miniport is not...
2008-09-30 Cameron Gutman - Code cleanup
2008-09-30 Cameron Gutman - Fix a memory leak
2008-09-29 Cameron Gutman - Use the proper flags so NDIS knows that our NIC...
2008-09-28 Cameron Gutman - Call the ProtocolReceive handler at DISPATCH_LEVEL
2008-09-28 Cameron Gutman - Raise IRQL to DISPATCH_LEVEL before using KeAcquireS...
2008-09-27 Cameron Gutman - Set MiniportBusy to TRUE if a request is pending
2008-09-27 Cameron Gutman - Don't add the protocol to the protocol list if bindi...
2008-09-27 Cameron Gutman - Protect MiniportBusy with a spin lock
2008-09-27 Cameron Gutman - Call ResetHandler directly
2008-09-27 Cameron Gutman - Queue a work item in MiniReset if the adapter is...
2008-09-26 Cameron Gutman - Remove dead code
2008-09-26 Cameron Gutman - Fix a typo
2008-09-26 Cameron Gutman - Return early if there aren't any packets to be sent
2008-09-26 Cameron Gutman - Fail if From is NULL
2008-09-25 Cameron Gutman - Don't call NdisMSendComplete in MiniportSend
2008-09-25 Cameron Gutman - Created a dummy nic driver for testing purposes
2008-09-24 Cameron Gutman - Add a debug print
2008-09-24 Cameron Gutman - MiniportAdapterHandle is PLOGICAL_ADAPTER not PNDIS_...
2008-09-23 Cameron Gutman - Use timers so the code is much more simple and works...
2008-09-23 Cameron Gutman - Check for miniport hangs at the appropriate time
2008-09-23 Cameron Gutman - Uncomment the stubbed CheckForHang handler
2008-09-23 Cameron Gutman - Set CheckForHangSeconds to a default value of 2...
2008-09-23 Cameron Gutman - Set CheckForHangSeconds
2008-09-23 Cameron Gutman - Call the CheckForHang handler at DISPATCH_LEVEL
2008-09-23 Cameron Gutman - Implement MiniCheckForHang
2008-09-23 Cameron Gutman - We must check that NdisWrapperHandle is non-NULL...
2008-09-23 Cameron Gutman - Add some IRQL checks for ne2000 like those in r36406
2008-09-23 Cameron Gutman - Change NdisAcquireSpinLock to NdisDprAcquireSpinLock...
2008-09-23 Cameron Gutman - Add some IRQL checks
2008-09-21 Cameron Gutman - Set the InFlightRequest to NULL when we complete
2008-09-21 Cameron Gutman - There are 4 in flight requests not 3
2008-09-21 Cameron Gutman - Remove more useless code
2008-09-21 Cameron Gutman - Set MiniportBusy to TRUE in MiniDequeueWorkItem...
2008-09-21 Cameron Gutman - Remove some unneeded code
2008-09-20 Cameron Gutman - Only call MiniSendComplete if ProIndicatePacket...
2008-09-20 Cameron Gutman - Revert r36337 because the callers don't depend on...
2008-09-20 Cameron Gutman - The handle passed to MiniRequestComplete, NdisMQuery...
2008-09-20 Cameron Gutman - Zero the memory after we allocate it
2008-09-19 Cameron Gutman - Queue the packet again if we currently don't have...
2008-09-19 Cameron Gutman - Initialize the callback record before calling KeRegi...
2008-09-19 Cameron Gutman - Code cleanup
2008-09-19 Cameron Gutman - Store the current thread
2008-09-19 Cameron Gutman - Fail if TCPSocket doesn't complete successfully
2008-09-19 Cameron Gutman - Add the adapter to the adapter list only after it...
2008-09-15 Cameron Gutman - Add the spin locks back that I removed
2008-09-15 Cameron Gutman - Queue a work item for all packets
2008-09-14 Cameron Gutman - Use NDIS_GET_PACKET_STATUS to get the real status...
2008-09-14 Cameron Gutman - Merge r35555, r35575, r35576, and r36243 into my...
2008-09-14 Cameron Gutman - Call a serialized miniport's Send/SendPackets handle...
2008-09-14 Cameron Gutman - Change our method of queuing work items so we don...
2008-09-14 Cameron Gutman - Queue a work item to do our work that was previously...
2008-09-13 Cameron Gutman - Call KeAcquireSpinLockAtDpcLevel instead of KeAcquir...
2008-09-13 Cameron Gutman - Read the maximum packets that the driver allows...
2008-09-13 Cameron Gutman - unimplemented -> implemented
2008-09-13 Cameron Gutman - Implement NdisDprFreePacket
2008-09-13 Cameron Gutman - Implement NdisDprAllocatePacketNonInterlocked
2008-09-13 Cameron Gutman - Implement NdisDprAllocatePacket
2008-09-13 Cameron Gutman - Hints from MSDN show that we should use MmGetSystemA...
2008-09-13 Cameron Gutman - Fix a possible crash
2008-09-12 Cameron Gutman - Call MiniportTransferData at DISPATCH_LEVEL
2008-09-12 Cameron Gutman - Revert r36141 and r36102
2008-09-12 Cameron Gutman - We must call MiniDequeueWorkItem while holding a...
2008-09-12 Cameron Gutman - Call ProtocolRequestComplete at the correct IRQL
2008-09-12 Cameron Gutman - Set Status to STATUS_SUCCESS
2008-09-11 Cameron Gutman - Call MiniportQueryInformation at the correct IRQL
2008-09-11 Cameron Gutman - Make sure we successfully allocated memory
2008-09-11 Cameron Gutman - Fix 2 typos
2008-09-11 Cameron Gutman - Nicer solution for the problem fixed in r36102
2008-09-11 Cameron Gutman - We must call MiniQueueWorkItem while holding a spin...
2008-09-10 Cameron Gutman - Fix 3 handle leaks
2008-09-10 Cameron Gutman - Return the correct status
2008-09-10 Cameron Gutman - Don't call IoCompleteRequest while holding a spin...
2008-09-10 Cameron Gutman - Remove the spin locks around NdisSend because it...
2008-09-10 Cameron Gutman - Set ContextSize when we allocate it
2008-09-09 Cameron Gutman - Fix a memory leak
2008-09-09 Cameron Gutman - Release the spin lock before returning
2008-09-09 Cameron Gutman - Remove the adapter from the global adapter list...
2008-09-08 Cameron Gutman - Make sure we set a failure status when we fail so...
2008-09-08 Cameron Gutman - Return the actual status not NDIS_STATUS_SUCCESS...
2008-09-07 Cameron Gutman - Make sure we successfully allocated memory
2008-09-06 Cameron Gutman - Return NDIS_STATUS_RESOURCES not NDIS_STATUS_NOT_ACC...
2008-09-06 Cameron Gutman - Forgot this file from r36006
2008-09-06 Cameron Gutman - Check status from RawIPStartup, UDPStartup, and...
2008-09-06 Cameron Gutman - Fix a code typo
2008-09-06 Cameron Gutman - Use NewBuf instead of Data so we actually use the...
2008-09-06 Cameron Gutman - Return NDIS_STATUS_RESOURCES not STATUS_NO_MEMORY
2008-09-06 Cameron Gutman - Return TDI_NO_RESOURCES instead of TDI_INVALID_REQUE...
2008-09-06 Cameron Gutman - Code cleanup
2008-09-05 Cameron Gutman - Handle AllocatedResources and AllocatedResourcesTran...
2008-09-04 Cameron Gutman - Fix cleanup code
2008-09-04 Cameron Gutman - Fix 2 memory leaks
2008-09-03 Cameron Gutman - Accept STATUS_SUCCESS also as done in config.c
next