VirtualBox

Ignore:
Timestamp:
May 11, 2011 7:04:07 PM (14 years ago)
Author:
vboxsync
Message:

usb: back out r71658 as it's not correct; some additional debugging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbFlt.cpp

    r37038 r37042  
    668668                            {
    669669                                PDEVICE_OBJECT pDevObj = pDevRelations->Objects[k];
    670                                 if (!pDevObj->DriverObject
    671                                         || !pDevObj->DriverObject->DriverName.Buffer
    672                                         || !pDevObj->DriverObject->DriverName.Length)
    673                                 {
    674                                     AssertFailed();
    675                                     continue;
    676                                 }
    677 
    678                                 bool fIsHub = false;
    679                                 for (int z = 0; z < RT_ELEMENTS(lpszStandardControllerName); ++z)
    680                                 {
    681                                     if (!RtlCompareUnicodeString(&szStandardControllerName[z], &pDevObj->DriverObject->DriverName, TRUE /* case insensitive */))
    682                                     {
    683                                         fIsHub = true;
    684                                         break;
    685                                     }
    686                                 }
    687 
    688                                 if (fIsHub)
    689                                 {
    690                                     Log(("Found sub-hub, PDO 0x%p\n", pDevObj));
    691                                     continue;
    692                                 }
    693670
    694671                                Log(("Found existing USB PDO 0x%p\n", pDevObj));
     
    706683                                    else
    707684                                    {
    708                                         ObDereferenceObject(pDevRelations->Objects[k]);
     685                                        ObDereferenceObject(pDevObj);
    709686                                    }
    710687
     
    719696
    720697                                VBOXUSBFLT_DEVICE Device;
    721                                 Status = vboxUsbFltDevPopulate(&Device, pDevRelations->Objects[k] /*, FALSE /* only need filter properties */);
     698                                Status = vboxUsbFltDevPopulate(&Device, pDevObj /*, FALSE /* only need filter properties */);
    722699                                if (NT_SUCCESS(Status))
    723700                                {
     
    733710                                    {
    734711                                        /* this device should not be filtered, and it's not */
    735                                         ObDereferenceObject(pDevRelations->Objects[k]);
     712                                        ObDereferenceObject(pDevObj);
    736713                                        pDevRelations->Objects[k] = NULL;
    737714                                        --cReplugPdos;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette