Changeset 38736 in vbox for trunk/src/VBox/Additions/solaris/Virtio
- Timestamp:
- Sep 13, 2011 1:58:47 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74007
- Location:
- trunk/src/VBox/Additions/solaris/Virtio
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Virtio/Virtio-solaris.c
r34233 r38736 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox Guest Additions :Virtio Driver for Solaris.3 * VirtualBox Guest Additions - Virtio Driver for Solaris. 4 4 */ 5 5 … … 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #ifdef DEBUG_ramshankar 31 # define LOG_INSTANCE RTLogRelDefaultInstance() 32 #endif 30 33 #include "Virtio-solaris.h" 31 34 … … 34 37 #include <VBox/log.h> 35 38 36 #if defined(DEBUG_ramshankar)37 # undef LogFlowFunc38 # define LogFlowFunc LogRel39 # undef Log40 # define Log LogRel41 # undef LogFlow42 # define LogFlow LogRel43 #endif44 39 45 40 /** -
trunk/src/VBox/Additions/solaris/Virtio/VirtioNet-solaris.c
r34143 r38736 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox Guest Additions :Virtio Network Driver for Solaris.3 * VirtualBox Guest Additions - Virtio Network Driver for Solaris. 4 4 */ 5 5 … … 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #ifdef DEBUG_ramshankar 31 # define LOG_INSTANCE RTLogRelDefaultInstance() 32 #endif 30 33 #include "Virtio-solaris.h" 31 34 #include "VirtioPci-solaris.h" … … 75 78 #define VIRTIO_NET_CTRL_VLAN 0x00080000 /* Control channel VLAN filtering */ 76 79 77 #if defined(DEBUG_ramshankar)78 # undef LogFlowFunc79 # define LogFlowFunc LogRel80 # undef Log81 # define Log LogRel82 # undef LogFlow83 # define LogFlow LogRel84 #endif85 80 86 81 /******************************************************************************* -
trunk/src/VBox/Additions/solaris/Virtio/VirtioPci-solaris.c
r34233 r38736 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox Guest Additions :Virtio Driver for Solaris, PCI Hypervisor Interface.3 * VirtualBox Guest Additions - Virtio Driver for Solaris, PCI Hypervisor Interface. 4 4 */ 5 5 … … 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #ifdef DEBUG_ramshankar 31 # define LOG_INSTANCE RTLogRelDefaultInstance() 32 #endif 30 33 #include "VirtioPci-solaris.h" 31 34 … … 57 60 #define VIRTIO_PCI_RING_ALIGN PAGE_SIZE 58 61 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT PAGE_SHIFT 59 60 #if defined(DEBUG_ramshankar)61 # undef LogFlowFunc62 # define LogFlowFunc LogRel63 # undef Log64 # define Log LogRel65 # undef LogFlow66 # define LogFlow LogRel67 #endif68 62 69 63 /** -
trunk/src/VBox/Additions/solaris/Virtio/VirtioRing-solaris.c
r34233 r38736 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #ifdef DEBUG_ramshankar 31 # define LOG_INSTANCE RTLogRelDefaultInstance() 32 #endif 30 33 #include "Virtio-solaris.h" 31 34 … … 37 40 38 41 #include <sys/cmn_err.h> 39 40 #if defined(DEBUG_ramshankar)41 # undef LogFlowFunc42 # define LogFlowFunc LogRel43 # undef Log44 # define Log LogRel45 # undef LogFlow46 # define LogFlow LogRel47 #endif48 42 49 43 /**
Note:
See TracChangeset
for help on using the changeset viewer.