Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jul 2018 12:42:02 +0000 (UTC)
From:      Olivier Cochard <olivier@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r474441 - in head/net/openvswitch: . files
Message-ID:  <201807111242.w6BCg2FG088681@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivier
Date: Wed Jul 11 12:42:02 2018
New Revision: 474441
URL: https://svnweb.freebsd.org/changeset/ports/474441

Log:
  Fix crash of ovs-vswitchd with 'add-br' command.
  Reference: https://github.com/openvswitch/ovs-issues/issues/152
  
  PR:		229692
  Approved by:	Nikola Kolev <koue@chaosophia.net>(maintainer)
  Sponsored by:	Orange

Added:
  head/net/openvswitch/files/patch-lib_netdev-bsd.c   (contents, props changed)
Modified:
  head/net/openvswitch/Makefile

Modified: head/net/openvswitch/Makefile
==============================================================================
--- head/net/openvswitch/Makefile	Wed Jul 11 12:25:10 2018	(r474440)
+++ head/net/openvswitch/Makefile	Wed Jul 11 12:42:02 2018	(r474441)
@@ -3,6 +3,7 @@
 
 PORTNAME=	openvswitch
 PORTVERSION=	2.9.2
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://openvswitch.org/releases/
 

Added: head/net/openvswitch/files/patch-lib_netdev-bsd.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/openvswitch/files/patch-lib_netdev-bsd.c	Wed Jul 11 12:42:02 2018	(r474441)
@@ -0,0 +1,19 @@
+--- lib/netdev-bsd.c.orig	2018-07-11 07:15:18 UTC
++++ lib/netdev-bsd.c
+@@ -65,7 +65,6 @@
+ 
+ VLOG_DEFINE_THIS_MODULE(netdev_bsd);
+ 
+-
+ struct netdev_rxq_bsd {
+     struct netdev_rxq up;
+ 
+@@ -1511,7 +1510,7 @@ netdev_bsd_update_flags(struct netdev *netdev_, enum n
+     NULL, /* get_carrier_resets */                   \
+     NULL, /* set_miimon_interval */                  \
+     netdev_bsd_get_stats,                            \
+-                                                     \
++    NULL, /* get_custom_stats */                     \
+     GET_FEATURES,                                    \
+     NULL, /* set_advertisement */                    \
+     NULL, /* get_pt_mode */                          \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807111242.w6BCg2FG088681>