- Timestamp:
- Oct 22, 2009 6:19:07 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53777
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp
r23956 r23958 599 599 if ((rc == VERR_INVALID_FUNCTION) || (rc == VERR_INVALID_PARAMETER)) 600 600 { 601 LogRel(("pdmacFileEpInitialize: RTFileOpen %s / %08x failed with %Rrc\n", 602 pszUri, fFileFlags, rc)); 601 603 /* 602 604 * Solaris doesn't support directio on ZFS so far. :-\ … … 616 618 /* Open again. */ 617 619 rc = RTFileOpen(&pEpFile->File, pszUri, fFileFlags); 620 621 if (RT_FAILURE(rc)) 622 { 623 LogRel(("pdmacFileEpInitialize: RTFileOpen %s / %08x failed AGAIN(!) with %Rrc\n", 624 pszUri, fFileFlags, rc)); 625 } 618 626 } 619 627
Note:
See TracChangeset
for help on using the changeset viewer.