Changeset b06b894
- Timestamp:
- 06/28/18 11:55:57 (3 years ago)
- Branches:
- cachetimestamps, develop, master, rc-4.0.4, ringdecrementfix, ringperformance
- Children:
- a0f031b
- Parents:
- 1ed69dc (diff), 055a2c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Shane Alcock <salcock@…> (06/28/18 11:55:57)
- git-committer:
- GitHub <noreply@…> (06/28/18 11:55:57)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r096851a r055a2c9 489 489 with_numa=yes 490 490 else 491 AC_DEFINE(HAVE_LIBNUMA, 0, [Set to 1 if libnuma is supported])492 491 with_numa=no 493 492 fi … … 498 497 wandder_avail=yes 499 498 else 500 AC_DEFINE(HAVE_WANDDER, 0, [Set to 1 if libwandder is available])501 499 wandder_avail=no 502 500 fi … … 549 547 with_clock_gettime=yes 550 548 else 551 AC_DEFINE(HAVE_CLOCK_GETTIME, 0, [Set to 1 if clock_gettime is supported])552 549 with_clock_gettime=no 553 550 fi -
lib/format_dpdk.c
r32ee9b2 r055a2c9 57 57 #include <math.h> 58 58 59 #if HAVE_LIBNUMA59 #ifdef HAVE_LIBNUMA 60 60 #include <numa.h> 61 61 #endif … … 460 460 } 461 461 462 #if HAVE_LIBNUMA462 #ifdef HAVE_LIBNUMA 463 463 format_data->nic_numa_node = pci_to_numa(&use_addr); 464 464 if (my_cpu < 0) { … … 891 891 * these to any particular physical core */ 892 892 if (real) { 893 #if HAVE_LIBNUMA893 #ifdef HAVE_LIBNUMA 894 894 for (i = 0; i < RTE_MAX_LCORE; ++i) { 895 895 if (!rte_lcore_is_enabled(i) && numa_node_of_cpu(i) == socket) { -
libpacketdump/Makefile.am
ra82a9e8 r055a2c9 62 62 63 63 # 22: ETSI LI 64 if HAVE_WANDDER 64 65 BIN_PROTOCOLS+=link_22.la 66 endif 65 67 66 68 # Decoders for various ethertypes (in decimal) … … 138 140 link_11_la_LDFLAGS=$(modflags) 139 141 link_15_la_LDFLAGS=$(modflags) 142 if HAVE_WANDDER 140 143 link_22_la_LDFLAGS=$(modflags) 144 endif 141 145 eth_0_la_LDFLAGS=$(modflags) 142 146 eth_2048_la_LDFLAGS=$(modflags)
Note: See TracChangeset
for help on using the changeset viewer.