summaryrefslogtreecommitdiffstats
path: root/build-data
AgeCommit message (Expand)AuthorFilesLines
2021-04-30misc: experimental configure scriptDamjan Marion1-2/+2
2021-01-28build: do not _FORTIFY_SOURCE in debug modeMohammed Hawari2-4/+4
2021-01-20build: add the missing leading underscore to FORTIFY_SOURCENeale Ranns2-6/+6
2020-12-01ebuild: perform build and install at the same time for external.mkMohammed Hawari1-2/+2
2020-10-16misc: deprecate VOMDamjan Marion2-46/+1
2020-04-30build: rework x86 CPU variantsDamjan Marion4-8/+8
2019-11-08build: use cmake build typesDamjan Marion2-30/+6
2019-10-22build: add missing ldflags to exe and sharedBenoît Ganne1-0/+2
2019-10-07build: add env variable to pass extra cmake argsNathan Skrzypczak1-0/+4
2019-09-23ebuild: Add MAKE_PARALLEL_FLAGS to VPP buildjuraj.linkes1-1/+1
2019-06-07build: add -Wall and -fno-common, fix reported issuesBenoît Ganne1-14/+20
2019-05-14Build packages for generic Arm architectureLijian.Zhang2-0/+9
2019-05-06gcov / test framework: sigterm not sigkillDave Barach1-3/+2
2019-03-01dpdk: update mlx[45] linking optionsMatthew Smith1-3/+3
2019-02-19VPP-1504: Remove JVPPMichal Cmarada3-46/+2
2019-02-14deb-pkg: Add libvom package supportMohsin Kazmi1-0/+4
2019-02-01Remove -z now from LDFLAGSDamjan Marion1-1/+1
2019-01-20Rework of debian packagingDamjan Marion2-83/+7
2018-12-17Added CMake building system for libmemifmsardara1-1/+38
2018-11-13japi: Move Java API binding to cmakeMohsin Kazmi1-2/+40
2018-09-27Revert "japi: Move Java API binding to cmake"Damjan Marion1-40/+2
2018-09-27dpdk_plugin: fix mlx5 build and runtime issuesSirshak Das1-0/+5
2018-09-26japi: Move Java API binding to cmakeMohsin Kazmi1-2/+40
2018-09-25Enable verbose output during VPP cmake compilingLijian Zhang1-0/+3
2018-09-21add: nasm and ipsec-mb into vpp-ext-deps packagingDamjan Marion1-2/+2
2018-09-20rename vpp-dpdk-dev to vpp-ext-depsDamjan Marion3-5/+23
2018-09-13Fix: vppapigen make build fails on fresh installPaul Vinciguerra1-2/+2
2018-09-12cmake: create cmake VPP module, update sample-plugin so it uses itDamjan Marion1-0/+26
2018-09-12Always use 'lib' instead of 'lib64'Damjan Marion2-6/+2
2018-09-10cmake VOM: j factor chosen based on number of coresNeale Ranns1-1/+2
2018-09-09cmake: Move VOM to cmakeMohsin Kazmi2-2/+40
2018-09-07post move-to-cmake cleanupDamjan Marion4-71/+0
2018-09-02Switch to cmakeDamjan Marion3-47/+0
2018-09-01cmake: pass linker flags, use devtoolset on centos 7Damjan Marion1-8/+21
2018-08-17CMake as an alternative to autotools (experimental)Damjan Marion2-0/+19
2018-08-01Move java api to extras/Damjan Marion3-2/+8
2018-07-27-DCLIB_DEBUG => turn on extra checks in dlmallocDave Barach1-1/+2
2018-07-18Add config option to use dlmalloc instead of mheapDave Barach1-1/+3
2018-06-04Enable Position Independent Executable for production VPPNeale Ranns1-1/+1
2018-05-28VPP-1284: Fix for TLS corruption on ARM platformsSachin Saxena1-2/+2
2018-05-16Fix broken compilation for non-numa aware platformsSachin Saxena2-1/+2
2018-05-12dpdk: Add build related keywords for failsafe PMDRui Cai3-0/+9
2018-05-04build-data: Common makefile for NXP DPAA1/DPAA2 platformsSachin Saxena2-66/+87
2018-04-27Move VOM to extras/vomDamjan Marion2-5/+7
2018-03-28Build libmemif as part of verify jobDamjan Marion2-0/+4
2018-03-15use system provided ccache linksDamjan Marion1-0/+1
2018-03-12License text cleanupDave Barach9-0/+114
2018-01-30VPP-899: Run VPP under SELinuxBilly McFall1-0/+4
2018-01-23VPPAPIGEN: vppapigen replacement in Python PLY.Ole Troan1-0/+4
2018-01-10makefile set CXXFLAGS so they are propageted to sub-buildsNeale Ranns1-0/+3
class="mi">1] ^ ip->protocol); } else if (h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_MPLS)) { hash_key = mpls_get_key ((mpls_unicast_header_t *) (h0 + 1)); } else if (PREDICT_FALSE ((h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_VLAN)) || (h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD)))) { ethernet_vlan_header_t *outer = (ethernet_vlan_header_t *) (h0 + 1); outer = (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_VLAN)) ? outer + 1 : outer; if (PREDICT_TRUE (outer->type) == clib_host_to_net_u16 (ETHERNET_TYPE_IP4)) { ip4_header_t *ip = (ip4_header_t *) (outer + 1); hash_key = (u64) (ip->src_address.as_u32 ^ ip->dst_address.as_u32 ^ ip->protocol); } else if (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_IP6)) { ip6_header_t *ip = (ip6_header_t *) (outer + 1); hash_key = (u64) (ip->src_address.as_u64[0] ^ ip->src_address.as_u64[1] ^ ip->dst_address.as_u64[0] ^ ip->dst_address.as_u64[1] ^ ip->protocol); } else if (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_MPLS)) { hash_key = mpls_get_key ((mpls_unicast_header_t *) (outer + 1)); } else { hash_key = outer->type; } } else { hash_key = 0; } return hash_key; } static inline u64 eth_get_key (ethernet_header_t * h0) { u64 hash_key; if (PREDICT_TRUE (h0->type) == clib_host_to_net_u16 (ETHERNET_TYPE_IP4)) { hash_key = ipv4_get_key ((ip4_header_t *) (h0 + 1)); } else if (h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_IP6)) { hash_key = ipv6_get_key ((ip6_header_t *) (h0 + 1)); } else if (h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_MPLS)) { hash_key = mpls_get_key ((mpls_unicast_header_t *) (h0 + 1)); } else if ((h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_VLAN)) || (h0->type == clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD))) { ethernet_vlan_header_t *outer = (ethernet_vlan_header_t *) (h0 + 1); outer = (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_VLAN)) ? outer + 1 : outer; if (PREDICT_TRUE (outer->type) == clib_host_to_net_u16 (ETHERNET_TYPE_IP4)) { hash_key = ipv4_get_key ((ip4_header_t *) (outer + 1)); } else if (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_IP6)) { hash_key = ipv6_get_key ((ip6_header_t *) (outer + 1)); } else if (outer->type == clib_host_to_net_u16 (ETHERNET_TYPE_MPLS)) { hash_key = mpls_get_key ((mpls_unicast_header_t *) (outer + 1)); } else { hash_key = outer->type; } } else { hash_key = 0; } return hash_key; } #endif /* included_vnet_handoff_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */