Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 379421
Collapse All | Expand All

(-)vboxdrv.orig/SUPDrvIDC.h (-1 / +1 lines)
Lines 160-166 typedef struct SUPDRVIDCREQGETSYM Link Here
160
        {
160
        {
161
            /** The symbol address. */
161
            /** The symbol address. */
162
            PFNRT           pfnSymbol;
162
            PFNRT           pfnSymbol;
163
        } Out;
163
        } __no_const Out;
164
    } u;
164
    } u;
165
} SUPDRVIDCREQGETSYM;
165
} SUPDRVIDCREQGETSYM;
166
/** Pointer to a SUPDRV IDC get symbol request. */
166
/** Pointer to a SUPDRV IDC get symbol request. */
(-)vboxnetflt.orig/include/VBox/intnet.h (-1 / +1 lines)
Lines 783-789 typedef struct INTNETTRUNKFACTORY Link Here
783
    DECLR0CALLBACKMEMBER(int, pfnCreateAndConnect,(struct INTNETTRUNKFACTORY *pIfFactory, const char *pszName,
783
    DECLR0CALLBACKMEMBER(int, pfnCreateAndConnect,(struct INTNETTRUNKFACTORY *pIfFactory, const char *pszName,
784
                                                   PINTNETTRUNKSWPORT pSwitchPort, uint32_t fFlags,
784
                                                   PINTNETTRUNKSWPORT pSwitchPort, uint32_t fFlags,
785
                                                   PINTNETTRUNKIFPORT *ppIfPort));
785
                                                   PINTNETTRUNKIFPORT *ppIfPort));
786
} INTNETTRUNKFACTORY;
786
} __no_const INTNETTRUNKFACTORY;
787
/** Pointer to the trunk factory. */
787
/** Pointer to the trunk factory. */
788
typedef INTNETTRUNKFACTORY *PINTNETTRUNKFACTORY;
788
typedef INTNETTRUNKFACTORY *PINTNETTRUNKFACTORY;
(-)vboxnetflt.orig/linux/VBoxNetFlt-linux.c (-2 / +1 lines)
Lines 839-846 typedef struct ethtool_ops OVR_OPSTYPE; Link Here
839
# define OVR_XMIT pfnStartXmit
839
# define OVR_XMIT pfnStartXmit
840
# else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29) */
840
# else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29) */
841
841
typedef struct net_device_ops __no_const OVR_OPSTYPE;
842
typedef struct net_device_ops OVR_OPSTYPE;
843
# define OVR_OPS  netdev_ops
842
# define OVR_OPS  netdev_ops
844
# define OVR_XMIT pOrgOps->ndo_start_xmit
843
# define OVR_XMIT pOrgOps->ndo_start_xmit
(-)vboxpci.orig/include/VBox/rawpci.h (-1 / +1 lines)
Lines 545-551 typedef struct RAWPCIFACTORY Link Here
545
    DECLR0CALLBACKMEMBER(void, pfnDeinitVm,(PRAWPCIFACTORY       pFactory,
545
    DECLR0CALLBACKMEMBER(void, pfnDeinitVm,(PRAWPCIFACTORY       pFactory,
546
                                            PVM                  pVM,
546
                                            PVM                  pVM,
547
                                            PRAWPCIPERVM         pPciData));
547
                                            PRAWPCIPERVM         pPciData));
548
} RAWPCIFACTORY;
548
} RAWPCIFACTORY, __no_const RAWPCIFACTORY_NO_CONST;
549
#define RAWPCIFACTORY_UUID_STR   "ea089839-4171-476f-adfb-9e7ab1cbd0fb"
549
#define RAWPCIFACTORY_UUID_STR   "ea089839-4171-476f-adfb-9e7ab1cbd0fb"
(-)vboxpci.orig/VBoxPciInternal.h (-1 / +1 lines)
Lines 130-136 typedef struct VBOXRAWPCIGLOBALS Link Here
130
    PVBOXRAWPCIINS pInstanceHead;
130
    PVBOXRAWPCIINS pInstanceHead;
131
    /** The raw PCI interface factory. */
131
    /** The raw PCI interface factory. */
132
    RAWPCIFACTORY RawPciFactory;
132
    RAWPCIFACTORY_NO_CONST RawPciFactory;
133
    /** The SUPDRV component factory registration. */
133
    /** The SUPDRV component factory registration. */
134
    SUPDRVFACTORY SupDrvFactory;
134
    SUPDRVFACTORY SupDrvFactory;
135
    /** The number of current factory references. */
135
    /** The number of current factory references. */

Return to bug 379421