- Allocate send and receive buffers from paged pool (saves 32KB of non-paged pool...
[reactos.git] / drivers /
2009-12-02 Cameron Gutman - Allocate send and receive buffers from paged pool...
2009-12-02 Cameron Gutman - Revert 44301
2009-12-02 Cameron Gutman - Create another branch for networking fixes
2008-10-29 KJK::HyperionMerging r37048, r37051, r37052, r37055 from the-real...
2008-10-29 KJK::HyperionMake acpi compile with Visual C++
2008-10-25 KJK::HyperionVisual C++ backend for rbuild (for now just a hacked...
2008-10-25 KJK::HyperionThe real, definitive, Visual C++ support branch. Accept...
2008-10-13 Cameron Gutman - Merge aicom-network-fixes up to r36740
2008-10-13 Cameron Gutman - Implement ProtocolResetComplete
2008-10-13 Cameron Gutman - Queue the work item directly from MiniQueueWorkItem
2008-10-08 Cameron Gutman - More work on NDIS 6.0
2008-10-08 Cameron Gutman - Some of my work on NDIS 6.0
2008-10-06 Cameron Gutman - Partially implement ProtocolStatus in tcpip
2008-10-06 Cameron Gutman - Implement a MiniportShutdown routine for both NIC...
2008-10-06 Cameron Gutman - Call the MiniportShutdown handler at the right time
2008-10-04 Cameron Gutman - Only call the ProtocolReceivePacket handler if the...
2008-10-04 Cameron Gutman - Properly implement MiniIndicateReceivePacket
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
next