Skip to content
This repository was archived by the owner on Dec 17, 2017. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1549e27
Add ".gitignore"
mvardan Jun 21, 2016
f603b79
usb: hub: fdo: Add debug prints and comments
mvardan Jun 21, 2016
6d8ffc2
usb: hub: fdo: Fixes in cleanup of CreateUsbChildDeviceObject()
mvardan Jun 22, 2016
efec6c1
usb: hub: PDO: Add IsRemovePending flag to HUB_CHILDDEVICE_EXTENSION
mvardan Jun 22, 2016
f3bfa06
usb: hub: PDO: New checking in IsValidPDO()
mvardan Jun 22, 2016
0cfa086
usb: hub: PDO: Fail IRP_MN_QUERY_STOP_DEVICE.
mvardan Jun 22, 2016
7047aa7
usb: hub: PDO: Add debug prints into USBHUB_PdoHandlePnp
mvardan Jun 22, 2016
0f56414
usb: hub: PDO: Changed handling of IRP_MN_REMOVE_DEVICE
mvardan Jun 22, 2016
ed4caed
usb: hub: FDO: Rework IRP_MN_QUERY_DEVICE_RELATIONS
mvardan Jun 23, 2016
43407f0
usb: hub: PDO: Fix in IRP_MN_QUERY_DEVICE_RELATIONS
mvardan Jun 24, 2016
bb8398d
usb: hub: FDO: Fix QueryInterface()
mvardan Jul 3, 2016
6ddb5d4
usb: hub: FDO: Fix PnP handling issues.
mvardan Jul 3, 2016
57e64a7
usb: hub: PDO: Fix in IRP_MN_QUERY_DEVICE_RELATIONS handler
mvardan Jul 3, 2016
7580eb2
usb: hub: Fix in USBHUB_DispatchPower
mvardan Jul 3, 2016
b3ad6c9
usb: libusb: hub_controller: Fix PnP handler
mvardan Jul 3, 2016
5f300d5
usb: hub: FDO: Fix CreateUsbChildDeviceObject()
mvardan Jul 11, 2016
35b98b5
usb: libusb: hub: Refernce interface before passing up
mvardan Jul 11, 2016
65d361d
usb: hub: FDO: Fix USBHUB_FdoStartDevice()
mvardan Jul 11, 2016
f65cfe0
usb: hub: FDO: Removed dublicated functions and fields
mvardan Jul 11, 2016
d537d6d
usb: hub: PDO: Added query-remove and query-cancel-remove handlers
mvardan Jul 12, 2016
bdf68a2
usb: hub: PDO: Refernce interface before passing up
mvardan Jul 12, 2016
b6cc4cd
Change CMakLists to use GuardedMutexes
mvardan Jul 16, 2016
f5ecdad
usb: hub: Add sychronization for FDO's child list access.
mvardan Jul 16, 2016
4c840f4
usb: hub: FDO: Handle surprise removal, fail stop request.
mvardan Jul 12, 2016
edc62a2
usb: HUB: Add PnP state tracking
mvardan Jul 31, 2016
91df77e
usb: hub: Add remove synchronization
mvardan Jul 31, 2016
15af594
usb: HUB: FDO: Add IRP_MN_REMOVE_DEVICE handler
mvardan Jul 31, 2016
36a8923
usb: HUB: Refactor power dispatcher, add remove synch
mvardan Jul 31, 2016
9207520
usb: HUB: Fix DV's enhanced I/O validation issues
mvardan Jul 31, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
output-VS-i386/
.editorconfig
1 change: 1 addition & 0 deletions reactos/drivers/usb/usbhub/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

add_definitions(-DDEBUG_MODE)
add_definitions(-DNTDDI_VERSION=0x05020400)
include_directories(${REACTOS_SOURCE_DIR}/ntoskrnl/include)

list(APPEND SOURCE
Expand Down
Loading