VirtualBox

Changeset 103416 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Feb 19, 2024 8:06:54 AM (11 months ago)
Author:
vboxsync
Message:

Devices,Runtime: Fix some harmless misleading macros warnings, bugref:3409

Location:
trunk/src/VBox/Devices
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-dx-shader.cpp

    r102713 r103416  
    913913/* This is the central step in the MD5 algorithm. */
    914914#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 )
    916916
    917917
  • trunk/src/VBox/Devices/Network/DevVirtioNet.cpp

    r102827 r103416  
    139139#ifdef VIRTIONET_WITH_GSO
    140140# define VIRTIONET_HOST_FEATURES_GSO    \
    141       VIRTIONET_F_CSUM                  \
     141    ( VIRTIONET_F_CSUM                  \
    142142    | VIRTIONET_F_HOST_TSO4             \
    143143    | VIRTIONET_F_HOST_TSO6             \
     
    146146    | VIRTIONET_F_GUEST_TSO6            \
    147147    | 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   */
    149149#else
    150150# define VIRTIONET_HOST_FEATURES_GSO
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette