- Timestamp:
- Feb 19, 2024 8:06:54 AM (8 months ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
-
Devices/Graphics/DevVGA-SVGA3d-dx-shader.cpp (modified) (1 diff)
-
Devices/Network/DevVirtioNet.cpp (modified) (2 diffs)
-
Runtime/common/checksum/alt-md5.cpp (modified) (1 diff)
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 VIRTIONET_F_CSUM \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 /* @bugref(4796) Guest must handle partial chksums */148 | VIRTIONET_F_GUEST_CSUM) /* @bugref(4796) Guest must handle partial chksums */ 149 149 #else 150 150 # define VIRTIONET_HOST_FEATURES_GSO -
trunk/src/VBox/Runtime/common/checksum/alt-md5.cpp
r98103 r103416 105 105 /* This is the central step in the MD5 algorithm. */ 106 106 #define MD5STEP(f, w, x, y, z, data, s) \ 107 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )107 ( w += f(x, y, z) + (data), w = w<<s | w>>(32-s), w += x ) 108 108 109 109
Note:
See TracChangeset
for help on using the changeset viewer.

