aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
AgeCommit message (Collapse)Author
2015-07-09Config options for building with ODPCiprian Barbu
Signed-off-by: Ciprian Barbu <ciprian.barbu@linaro.org> Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org>
2014-12-09datapath: Mark compatible with kernels up to 3.18.xThomas Graf
Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-12-09datapath: Check if nla_is_last() is available in <net/netlink.h>Thomas Graf
nla_is_last() is not available in 3.18, it's only in net-next. Convert to grep based to check to account for distribution backports. Fixes: 684b5f ("datapath: Rename last_action() as nla_is_last() and move to netlink.h") Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-10-23datapath: Use upstream ipv6_find_hdr().Pravin B Shelar
ipv6_find_hdr() already fixed in newer upstram kernel by Ansis, we can start using this API safely. This patch also backports fix (ipv6: ipv6_find_hdr restore prev functionality) to compat ipv6_find_hdr(). CC: Ansis Atteka <aatteka@nicira.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com>
2014-10-20netdev-dpdk: Move to DPDK 1.7.1maryam.tahhan
This patch updates the documentation to reflect that DPDK 1.7.1 is supported. Travis scripts have also been updated to reflect this. DPDK phy and ring ports were validated against DPDK 1.7.1. Reviewed-by: Mark D. Gray <mark.d.gray@intel.com> Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com> Acked-by: Daniele Di Proietto <ddiproietto@vmware.com> Acked-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-10-13datapath: compat: Fix compilation 3.11Pravin B Shelar
Kernel 3.11 is only kernel where GRE APIs are available but not vxlan. Add check for vxlan xmit to detect this case. Reported-by: Dave Benson <dbenson@verdantnetworks.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com>
2014-10-03datapath: Add support for RHEL-7 / CentOS-7 kernel.Pravin B Shelar
This patch mostly is related to tunnel API where RHEL 7 kernel API are not in-sync with newer linux kernel API. So extra checks are required to check for parameters of API. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jiri Benc <jbenc@redhat.com>
2014-09-20datapath: restore OVS_FLOW_CMD_NEW notificationsSamuel Gauthier
Since commit fb5d1e9e127a ("openvswitch: Build flow cmd netlink reply only if needed."), the new flows are not notified to the listeners of OVS_FLOW_MCGROUP. This commit fixes the problem by using the genl function, ie genl_has_listerners() instead of netlink_has_listeners(). Signed-off-by: Samuel Gauthier <samuel.gauthier@6wind.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: David S. Miller <davem@davemloft.net> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-09-20datapath: Provide compatibility for kernels up to 3.17Thomas Graf
Port datapath to work with kernrels up to 3.17 and use 3.16.2 as the new kernel for CI testing. Tested with 3.14, 3.16.2, and net-next (3.17). Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Co-authored-by: Madhu Challa <challa@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-09-15datapath: Improve robustness of this_cpu_ptr definition in compat layerAndy Zhou
Current autoconfig detection logic for HAVE_PER_CPU_PTR is not robust. Depends on linux kernel version, the definition can be in either linux/percpu.h or asm/percpu.h Turns out it is simpler and safer to handle missing percpu.h definitions in linux/percpu.h rather than asm/percpu.h. With this change, there is no need for the autoconfig detection logic above. Signed-off-by: Andy Zhou <azhou@nicira.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-09-12datapath: Add IS_ERR_OR_NULL for backward compatibility.Pravin B Shelar
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
2014-09-11build: Respect CFLAGS and LDFLAGS passed to makeThomas Graf
configure cannot expect that the user will not pass additional CFLAGS and LDFLAGS at make time [0]. Use OVS_CFLAGS and OVS_LDFLAGS instead to collect compiler and linker flags and substitute in Makefile.am. This allows for: ./configure --with-dpdk=[...] make CFLAGS=-Wno-error=foo [0] http://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
2014-09-10datapath: Backport __ip_select_ident() functionPravin B Shelar
definition of __ip_select_ident() changed in newer kernel and it is backported to stable kernel, Therefore adding configure check to detect the new function. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com>
2014-08-18acinclude.m4: Do not set vswitchd_ovs_vswitchd_LDFLAGSDaniele Di Proietto
Commit d731058395cb used vswitchd_ovs_vswitchd_LDFLAGS to link with DPDK. This made automake ignore AM_LDFLAGS while linking the daemon. This commit explicitly adds AM_LDFLAGS to vswitchd_ovs_vswitchd_LDFLAGS and moves it to vswitchd/automake.mk Reported-by: Gurucharan Shetty <gshetty@nicira.com> Suggested-by: Ben Pfaff <blp@nicira.com> Signed-off-by: Daniele Di Proietto <ddiproietto@vmware.com> Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
2014-08-12netdev-dpdk: Move to DPDK 1.7.0Daniele Di Proietto
With this commit we move our DPDK support to 1.7.0. DPDK binaries (starting with dpdk 1.7.0) should be linked with --whole-archive to include pmd drivers Signed-off-by: Daniele Di Proietto <ddiproietto@vmware.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-07-01datapath: Change u64_stats_* to use _irq instead of _bh().Jesse Gross
The upstream u64_stats API has been changed to remove the _bh() versions and switch all consumers to use IRQ safe variants instead. This was done to be safe for netpoll generated packets, which can occur in hard IRQ context. From a safety perspective, this doesn't directly affect OVS since it doesn't support netpoll. However, this change has been backported to older kernels so OVS needs to use the new API to compile. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Pritesh Kothari <pritesh.kothari@cisco.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
2014-06-25datapath: Rehash 16-bit skbuff hashes into 32 bits.Jesse Gross
Currently, if the network stack provides skb->rxhash then we use it, otherwise we compute our own. However, on at least some versions of RHEL/CentOS, the stack provides a hash that is 16 bits rather than 32 bits. In cases where we use the uppermost bits of the hash this is particularly bad because we detect that a hash is present and we use it rather than computing our own but the result is always zero. This is particularly noticible with tunnel ports that use the hash to generate a source port, such as VXLAN. On these kernels the tunnel source port is always the minimum value. To solve this problem while still taking advantage of the precomputed hash, this rehashes the hash so that the entropy is spread throughout 32 bits. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Thomas Graf <tgraf@noironetworks.com>
2014-06-09acinclude.m4: dpdk: link with -ldl if necessaryDaniele Di Proietto
On some systems libintel_dpdk.a fails to link with libopenvswitch unless -ldl is used. This should address the issue Signed-off-by: Daniele Di Proietto <ddiproietto@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
2014-05-28CodingStyle: Allow C99 mixing of declarations and code.Jarno Rajahalme
As even the MSVC 2013 now supports the C99 mixing of declarations and code, we can now allow them in OVS code. Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
2014-05-19acinclude.m4: Fix "sparse", via detection of GNU make "if" directive.Ben Pfaff
Make treats tabs very differently from spaces at the beginning of a line, so this test must use a tab instead of a space. This partially reverts commit a0903134d2d60 (acinclude.m4: Expand tabs). Without this commit, the build system never enables checking with sparse because it never detects that GNU make "if" works. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
2014-05-10acinclude.m4: Fix a typo in a help messageYAMAMOTO Takashi
Acked-by: Ben Pfaff <blp@nicira.com> Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
2014-05-10acinclude.m4: Expand tabsYAMAMOTO Takashi
Acked-by: Ben Pfaff <blp@nicira.com> Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
2014-05-01datapath: clear l4_rxhash in skb_clear_hash.Pritesh Kothari
Signed-off-by: Pritesh Kothari <pritesh.kothari@cisco.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
2014-05-01datapath: Add support for kernel 3.14.Pritesh Kothari
Signed-off-by: Pritesh Kothari <pritesh.kothari@cisco.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
2014-04-29datapath: Check for backported skb_orphan_frags().Joe Stringer
This was causing build failures on debian wheezy. Check for the feature rather than the version. Signed-off-by: Joe Stringer <joestringer@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2014-04-24FAQ: Explain what to do when building against a too-new kernel.Ben Pfaff
Also add references to this FAQ from INSTALL and configure. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Gurucharan Shetty <gshetty@nicira.com>
2014-03-31datapath: Add support for kernels 3.13Pravin Shelar
Add support for building the in-tree kernel datapath for Linux kernels up to 3.13. There were some changes in the netlink area which required adding new compatibility code for this layer. Also, some new per-cpu stats initialization code was added. Based on patch from Kyle Mestery. Signed-off-by: Kyle Mestery <mestery@noironetworks.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Kyle Mestery <mestery@noironetworks.com>
2014-03-21dpif-netdev: Add DPDK netdev.Pravin
Following patch adds DPDK netdev-class to userspace datapath. Now OVS can use DPDK port for IO by just configuring DPDK port and then adding dpdk type port to userspace datapath. Refer to INSTALL.DPDK doc for further info. This is based a patch from Gerald Rogers. Signed-off-by: Gerald Rogers <gerald.rogers@intel.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Thomas Graf <tgraf@redhat.com>
2014-03-07datapath: Add support for Linux 3.12Pravin Shelar
Bump kernel support for datapath module to include 3.12. Make use of native ip-tunnel API for Kernel >= 3.12. Based on patch from James Page. Signed-off-by: James Page <james.page@ubuntu.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Reviewed-by: Kyle Mestery <mestery@noironetworks.com>
2014-03-05Makefile: Compile Linux-specific files based on __linux__ macro.Ben Pfaff
We want to conditionally compile several files based on whether we're building for a Linux host, so we need some Automake conditional for that. Previously this was based on whether Netlink is available and we're not on ESX (since ESX has Netlink but isn't Linux), but it's more straightforward to just test for Linux directly. CC: Luigi Rizzo <rizzo@iet.unipi.it> Signed-off-by: Ben Pfaff <blp@nicira.com>
2014-01-03datapath: Check for backported sctp_compute_cksum().Jesse Gross
This is backported by RHEL7. Reported-by: Ashok Byahatti <ashok.byahatti@embrane.com> Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Joe Stringer <joestringer@nicira.com>
2013-12-20datapath: compat: Configure check GRE DEMUX.Pravin B Shelar
RHEL6-openstack kernel has backported gre DEMUX module, Therefore add configure check to detect it. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com> Bug #21936
2013-12-20datapath: compat: Add configure check for lockdep_rtnl_is_held()Pravin B Shelar
RHEL6-openstack kernel has backported lockdep_rtnl_is_held(). Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-12-20datapath: compat: Fix skb_has_frag_list definition.Pravin B Shelar
RHEL6-openstack kernel has already replaced skb_has_frags with skb_has_frag_list(). Fix compilation error on RHEL6-openstack. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-12-20datapath: Check for backported netdev_features_t.Jesse Gross
This is apparently used by CentOS 6.5. Reported-by: Phil Daws <uxbod@splatnix.net> Reported-by: Edouard Bourguignon <madko@linuxed.net> Signed-off-by: Jesse Gross <jesse@nicira.com>
2013-12-16datapath: Fix build failure on RHEL 6.4Pravin B Shelar
Patch fixes following build failure:- make[4]: Entering directory `/usr/src/kernels/2.6.32-358.18.1.el6.x86_64' CC [M] openvswitch/datapath/linux/actions.o In file included from openvswitch/datapath/linux/actions.c:21: openvswitch/datapath/linux/compat/include/linux/skbuff.h:273: error: redefinition of ‘__skb_fill_page_desc’ include/linux/skbuff.h:1123: note: previous definition of ‘__skb_fill_page_desc’ was here ----- Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-12-17openvswitch: Use libtool and allow building shared libsHelmut Schaa
Currently openvswitch builds all libraries static only. However, libopenvswitch is linked into nearly all openvswitch executables making it hardly possible to run openvswitch on embedded devices (for example running OpenWrt). Convert openvswitch to use libtool for building its internal libs. This allows "--enable-shared" and "--enable-static" as configure arguments. Default is "--disable-shared" thus keeping the current behavior with the only change that static libs are installed by "make install". Since the openvswitch library interfaces are internal and thus not stable (yet) encode the openvswitch version into the library name: libopenvswitch-2.0.90.so Binary size is reduced to around 1/3 when using shared libs. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
2013-12-03datapath: Add compile time check for rxhashPravin B Shelar
Some distribution kernel has backported skb->rxhash (e.g. RHEL) Following patch allows use precalculated rxhash. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Reviewed-by: Thomas Graf <tgraf@redhat.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-10-16datapath: Add support for Linux 3.11Pravin B Shelar
Kernel 3.11 has support for extended GRE API required for OVS datapath, But vxlan still needs out of tree tunneling compatibility. Therefore to simplify, all tunneling modules are forced to use compat tunneling. CC: James Page <james.page@ubuntu.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-09-13datapath: remove HAVE_MAC_RAWViresh Kumar
This was causing it to fail against latest RT kernels, with following errors: In file included from /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/compat/include/linux/if_vlan.h:6:0, from /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/actions.c:29: /home/arm/work/kernel/linaro/lng/lng.git/include/linux/if_vlan.h: In function vlan_insert_tag: /home/arm/work/kernel/linaro/lng/lng.git/include/linux/if_vlan.h:197:5: error: struct sk_buff has no member named mac In file included from /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/../flow.h:34:0, from /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/../datapath.h:31, from /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/actions.c:36: /home/arm/work/kernel/linaro/lng/lng.git/include/net/inet_ecn.h: In function INET_ECN_set_ce: /home/arm/work/kernel/linaro/lng/lng.git/include/net/inet_ecn.h:137:10: error: struct sk_buff has no member named nh /home/arm/work/kernel/linaro/lng/lng.git/include/net/inet_ecn.h:142:10: error: struct sk_buff has no member named nh /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/actions.c: In function __pop_vlan_tci: /home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/actions.c:72:5: error: struct sk_buff has no member named mac make[7]: *** [/home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux/actions.o] Error 1 make[6]: *** [_module_/home/arm/work/kernel/linaro/lng/openvswitch/datapath/linux] Error 2 Not sure why it was added earlier but my guess is, for earlier RT kernels struct sk_buff had following variables mac.raw, nh.raw, h.raw instead of mac_header, network_header, transport_header. And so the hack to rename them in OVS code. But that's not the case now. RT kernel have mac_header, network_header and transport_header as parameter and so we don't need this macro at all. Lets get rid of it. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Jesse Gross <jesse@nicira.com>
2013-09-06datapath: Remove compat files.Pravin B Shelar
Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-09-06datapath: Remove compat support for NLA_NUL_STRINGPravin B Shelar
Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-09-06datapath: Move kernel version check to configure.Pravin B Shelar
Rather than having compile time check in datapath.c, its better to check kernel version at configuration step. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-08-10datapath: Use parallel_ops genl.Pravin B Shelar
OVS locking was recently changed to have private OVS lock which simplified overall locking. Therefore there is no need to have another global genl lock to protect OVS data structures. Following patch uses of parallel_ops genl family for OVS. This also allows more granual OVS locking using ovs_mutex for protecting OVS data structures, which gives more concurrencey. E.g multiple genl operations OVS_PACKET_CMD_EXECUTE can run in parallel, etc. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-08-01configure: Distinguish glibc and NetBSD pthread_setname_np() variants.Ben Pfaff
Reported-by: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp> Tested-by: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp> Signed-off-by: Ben Pfaff <blp@nicira.com>
2013-07-22datapath: Conditionally define skb_unclone in datapath compat codeKyle Mestery
Recent versions of Fedora have skb_unclone included in their kernels. This patch adds a conditional check into the compat directory so as not to error out by defining it twice. This allows the latest OVS kernel module to build on Fedora 19. Signed-off-by: Kyle Mestery <kmestery@cisco.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
2013-07-15datapath: Revert "datapath: rhel: Account for RHEL specific backports"Pravin B Shelar
This reverts commit 752378e1cd1f133a8366fbacec3b281a45ff8268 (datapath: rhel: Account for RHEL specific backports). Change related to netif_needs_gso() is cuasing panic on RHEL and Xen platforms. This way we revert back to use of ovs skb_gso_segment() and netif_skb_features() which has required compat code for gso for kernel older than 2.6.38. <1>[ 924.855722] BUG: unable to handle kernel NULL pointer dereference at 000000a0 <1>[ 924.855789] IP: [<f0337fb7>] netdev_send+0x77/0x340 [openvswitch] <4>[ 924.855849] *pdpt = 000000011bc66027 *pde = 0000000000000000 <0>[ 924.855895] Oops: 0000 [#1] SMP <0>[ 924.855927] last sysfs file: /sys/class/net/lo/carrier <4>[ 924.856551] Pid: 17937, comm: vif Not tainted (2.6.32.43-0.4.1.xs1.6.10.734.170748xen #1) VMware Virtual Platform <4>[ 924.856618] EIP: 0061:[<f0337fb7>] EFLAGS: 00010246 CPU: 0 <4>[ 924.856659] EIP is at netdev_send+0x77/0x340 [openvswitch] <4>[ 924.856697] EAX: 00000000 EBX: dd4fb800 ECX: 00000000 EDX: 00000289 <4>[ 924.856749] ESI: edd55a40 EDI: 000005dc EBP: df287aa8 ESP: df287a7c <4>[ 924.856790] DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0069 <0>[ 924.856825] Process vif (pid: 17937, ti=df286000 task=ee88d570 task.ti=df286000) <0>[ 924.856880] Stack: <4>[ 924.856902] 00000000 be8b9067 00000000 e9b02000 dd523ac0 dd523b50 f033aef1 b2e77c64 <4>[ 924.856966] <0> dd523ac0 ee902840 dd4fc58c df287ab8 f0336162 edd55a40 ee902840 df287ac8 <4>[ 924.857043] <0> f032d684 0000001e ee10a300 df287b34 f032d6ef 0000001c 00000000 00000000 <0>[ 924.858942] Call Trace: <4>[ 924.859553] [<f033aef1>] ? flex_array_get+0x51/0x70 [openvswitch] <4>[ 924.860189] [<f0336162>] ? ovs_vport_send+0x12/0x50 [openvswitch] <4>[ 924.860806] [<f032d684>] ? do_output+0x34/0x50 [openvswitch] <4>[ 924.861444] [<f032d6ef>] ? do_execute_actions+0x4f/0x830 [openvswitch] <4>[ 924.862047] [<f032dfa0>] ? ovs_execute_actions+0x70/0xd0 [openvswitch] <4>[ 924.862636] [<f032fd3f>] ? ovs_dp_process_received_packet+0x8f/0xf0 [openvswitch] <4>[ 924.863774] [<f033690e>] ? ovs_vport_receive+0x5e/0x70 [openvswitch] <4>[ 924.864354] [<f0337d9f>] ? netdev_frame_hook+0x4f/0x90 [openvswitch] <4>[ 924.864918] [<c034f7ab>] ? netif_receive_skb+0x1bb/0x6a0 <4>[ 924.865469] [<c03c193f>] ? vlan_gro_common+0x10f/0x230 <4>[ 924.866007] [<c034fd58>] ? napi_skb_finish+0x38/0x40 <4>[ 924.866533] [<c03c1e86>] ? vlan_gro_receive+0x76/0x80 <4>[ 924.867055] [<f05adba4>] ? e1000_receive_skb+0x74/0x80 [e1000] <4>[ 924.867571] [<f05b2b67>] ? e1000_clean_rx_irq+0x1f7/0x3e0 [e1000] <4>[ 924.868084] [<f05b2970>] ? e1000_clean_rx_irq+0x0/0x3e0 [e1000] <4>[ 924.869025] [<f05b06ac>] ? e1000_poll+0x4c/0x1f0 [e1000] --snip-- Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
2013-07-09datapath: rhel: Account for RHEL specific backportsThomas Graf
The following symbols have been backported to RHEL and the kernel version is no longer an accurate indicator for their presence: - skb_gso_segment - netif_skb_features - netif_needs_gso Signed-off-by: Thomas Graf <tgraf@redhat.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
2013-06-24acinclude: Improve detection of not-understood compiler options with clang.Ben Pfaff
By default, clang warns about but does not fail on unknown -W options. This made configure add the option to WARNING_FLAGS, which caused the warning about not-understood warnings to be emitted for every file compiled. In combination with -Werror, clang does fail on unknown -W options. This commit adds -Werror during configure's warning tests, which should cause the not-understood warnings to be detected that way. Reported-by: Ed Maste <emaste@freebsd.org> Tested-by: Ed Maste <emaste@freebsd.org> Signed-off-by: Ben Pfaff <blp@nicira.com>
2013-05-21acinclude.m4: update a comment for NetBSD supportYAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp> Signed-off-by: Ben Pfaff <blp@nicira.com>