Changeset 103416 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 19, 2024 8:06:54 AM (11 months ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-dx-shader.cpp
r102713 r103416 913 913 /* This is the central step in the MD5 algorithm. */ 914 914 #define MD5STEP(f, w, x, y, z, data, s) \ 915 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )915 ( w += f(x, y, z) + (data), w = w<<s | w>>(32-s), w += x ) 916 916 917 917 -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r102827 r103416 139 139 #ifdef VIRTIONET_WITH_GSO 140 140 # define VIRTIONET_HOST_FEATURES_GSO \ 141 141 ( VIRTIONET_F_CSUM \ 142 142 | VIRTIONET_F_HOST_TSO4 \ 143 143 | VIRTIONET_F_HOST_TSO6 \ … … 146 146 | VIRTIONET_F_GUEST_TSO6 \ 147 147 | VIRTIONET_F_GUEST_UFO \ 148 | VIRTIONET_F_GUEST_CSUM 148 | VIRTIONET_F_GUEST_CSUM) /* @bugref(4796) Guest must handle partial chksums */ 149 149 #else 150 150 # define VIRTIONET_HOST_FEATURES_GSO
Note:
See TracChangeset
for help on using the changeset viewer.