Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Drivers > WdfDmaEnablerCreate failure

Reply
Thread Tools Display Modes

WdfDmaEnablerCreate failure

 
 
Junior Member
Join Date: May 2010
Posts: 1

 
      05-31-2010
Hi, I am trying to port my KMDF driver to work on Vista 64-bit.
I am getting STATUS_UNSUCCESSFUL when i call WdfDmaEnablerCreate...
The same code works fine on 32 - bit environment (XP,Vista).
Here is the relevant code.
WDF_DMA_ENABLER_CONFIG_INIT(&dmaEnablerConfig,WdfD maProfilePacket64,0x8000);status = WdfDmaEnablerCreate(devContext->WdfDevice,&dmaEnablerConfig, WDF_NO_OBJECT_ATTRIBUTES,&(devContext->DmaEnabler));
if (!NT_SUCCESS(status))
{
DbgPrint("WdfDmaEnablerCreate failed 0x%0x\n", status); return(status);
}
Any ideas?
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Security Audit failure - logging on to Guest account Dominick Windows Server 3 04-22-2010 10:43 AM
Re: Pre-authentication events logged, but not lock-out or auth failure Paul Bergson [MVP-DS] Active Directory 0 11-04-2009 12:36 PM
Re: Pre-authentication events logged, but not lock-out or auth failure Jorge Silva Active Directory 0 11-03-2009 03:43 PM
Security Failures after Password Change Zachary Server Security 14 10-30-2009 06:02 PM
Vista--Automatic restart after power failure? DRM Windows Vista Performance 2 06-22-2007 02:38 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59