X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=VNFs%2FDPPD-PROX%2Fbng_pkts.h;h=85114a0cf7320b995c3775d24437efc5824e73dc;hb=1f50af6cc73dd820b7a2a9bc12d1d365bfe8dfd9;hp=50780e3bfd36704fc1431eaa9f5889ded5971a0f;hpb=ab615dd91dcb355615b1f1f7266d878b70b35b4d;p=samplevnf.git diff --git a/VNFs/DPPD-PROX/bng_pkts.h b/VNFs/DPPD-PROX/bng_pkts.h index 50780e3b..85114a0c 100644 --- a/VNFs/DPPD-PROX/bng_pkts.h +++ b/VNFs/DPPD-PROX/bng_pkts.h @@ -37,12 +37,12 @@ struct cpe_pkt { #endif prox_rte_ipv4_hdr ipv4_hdr; prox_rte_udp_hdr udp_hdr; -} __attribute__((packed)); +} __attribute__((packed)) __attribute__((__aligned__(2))); struct cpe_packet_arp { struct qinq_hdr qinq_hdr; struct my_arp_t arp; -} __attribute__((packed)); +} __attribute__((packed)) __attribute__((__aligned__(2))); /* Struct used for setting all the values a packet going to the core netwerk. Payload may follow @@ -59,7 +59,7 @@ struct core_net_pkt_m { struct gre_hdr gre_hdr; prox_rte_ipv4_hdr ip_hdr; prox_rte_udp_hdr udp_hdr; -} __attribute__((packed)); +} __attribute__((packed)) __attribute__((__aligned__(2))); struct core_net_pkt { prox_rte_ether_hdr ether_hdr; @@ -67,7 +67,7 @@ struct core_net_pkt { struct gre_hdr gre_hdr; prox_rte_ipv4_hdr ip_hdr; prox_rte_udp_hdr udp_hdr; -} __attribute__((packed)); +} __attribute__((packed)) __attribute__((__aligned__(2))); #define UPSTREAM_DELTA ((uint32_t)(sizeof(struct core_net_pkt) - sizeof(struct cpe_pkt))) #define DOWNSTREAM_DELTA ((uint32_t)(sizeof(struct core_net_pkt_m) - sizeof(struct cpe_pkt))) @@ -75,7 +75,7 @@ struct core_net_pkt { struct cpe_pkt_delta { uint8_t encap[DOWNSTREAM_DELTA]; struct cpe_pkt pkt; -} __attribute__((packed)); +} __attribute__((packed)) __attribute__((__aligned__(2))); static inline void extract_key_cpe(struct rte_mbuf *mbuf, uint64_t* key) {