Changeset 76382 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 23, 2018 12:47:17 AM (6 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r76158 r76382 40 40 #include <iprt/file.h> 41 41 #include <iprt/list.h> 42 # include <iprt/string.h> 42 43 #ifdef IN_RING3 43 44 # include <iprt/mem.h> 44 45 # include <iprt/semaphore.h> 45 # include <iprt/string.h>46 46 # include <iprt/uuid.h> 47 47 #endif -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r73415 r76382 30 30 #include <iprt/net.h> 31 31 #include <iprt/semaphore.h> 32 #include <iprt/string.h> 32 33 #ifdef IN_RING3 33 34 # include <iprt/mem.h> 34 35 # include <iprt/uuid.h> 35 #endif /* IN_RING3 */36 #endif 36 37 #include <VBox/VBoxPktDmp.h> 37 38 #include "VBoxDD.h" -
trunk/src/VBox/Devices/Storage/DrvHostBase-linux.cpp
r69500 r76382 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 18 /********************************************************************************************************************************* 19 * Header Files * 20 *********************************************************************************************************************************/ 17 21 #define LOG_GROUP LOG_GROUP_DRV_HOST_BASE 18 22 #include <sys/ioctl.h> … … 37 41 #include <iprt/mem.h> 38 42 #include <iprt/file.h> 43 #include <iprt/string.h> 39 44 #include <VBox/scsi.h> 40 45 41 /** Maximum buffer size supported by the kernel interface. */42 #define LNX_SCSI_MAX_BUFFER_SIZE (100 * _1K)43 46 44 47 /** 45 * Host backend specific data .48 * Host backend specific data (needed by DrvHostBase.h). 46 49 */ 47 50 typedef struct DRVHOSTBASEOS … … 61 64 #define DRVHOSTBASE_OS_INT_DECLARED 62 65 #include "DrvHostBase.h" 66 67 68 /********************************************************************************************************************************* 69 * Defined Constants And Macros * 70 *********************************************************************************************************************************/ 71 /** Maximum buffer size supported by the kernel interface. */ 72 #define LNX_SCSI_MAX_BUFFER_SIZE (100 * _1K) 73 74 75 76 63 77 64 78 DECLHIDDEN(int) drvHostBaseScsiCmdOs(PDRVHOSTBASE pThis, const uint8_t *pbCmd, size_t cbCmd, PDMMEDIATXDIR enmTxDir,
Note:
See TracChangeset
for help on using the changeset viewer.