[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#770955: marked as done (wheezy-pu: package openvswitch/1.4.2+git20120612-9.1~deb7u1.1)



Your message dated Sat, 05 Sep 2015 14:33:54 +0100
with message-id <1441460034.2151.33.camel@adam-barratt.org.uk>
and subject line Closing bugs for 7.9
has caused the Debian Bug report #770955,
regarding wheezy-pu: package openvswitch/1.4.2+git20120612-9.1~deb7u1.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
770955: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770955
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian.org@packages.debian.org
Usertags: pu

Hi,

The current openvswitch-datapath-dkms package does not build anymore
since the last kernel update in wheezy (3.2.63-2+deb7u1), see bug
#768095.

A patch already used by Ubuntu [1] fixes this problem, i use it since
some weeks without problem.

  [1] https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1379201

Ben Pfaff maintainer of the package requested an NMU (see bug #768095)
and Thomas Goirand accepted to sponsor the NMU after your approval.

Regards,

-- 
Jonathan Dupart
diff -Nru openvswitch-1.4.2+git20120612/debian/changelog openvswitch-1.4.2+git20120612/debian/changelog
--- openvswitch-1.4.2+git20120612/debian/changelog	2013-06-29 19:35:51.000000000 +0200
+++ openvswitch-1.4.2+git20120612/debian/changelog	2014-11-25 14:28:14.000000000 +0100
@@ -1,3 +1,12 @@
+openvswitch (1.4.2+git20120612-9.1~deb7u1.1) wheezy-proposed-updates; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix "openvswitch-datapath-dkms fails to build on Debian 7.7 3.2.0-4- amd64
+    (3.2.63-2+deb7u1)" import Chris J. Arges' patch for tunnel.c
+    (Closes: #768095)
+
+ -- Jonathan Dupart <jonathan@dupart.org>  Sun, 23 Nov 2014 14:57:32 +0100
+
 openvswitch (1.4.2+git20120612-9.1~deb7u1) wheezy-proposed-updates; urgency=low
 
   * Rebuild for Wheezy.
diff -Nru openvswitch-1.4.2+git20120612/debian/patches/bug-768095-openvswitch-datapath-dkms-fails-to-build-on-Debian-7.7-3.2.0-4-amd64.patch openvswitch-1.4.2+git20120612/debian/patches/bug-768095-openvswitch-datapath-dkms-fails-to-build-on-Debian-7.7-3.2.0-4-amd64.patch
--- openvswitch-1.4.2+git20120612/debian/patches/bug-768095-openvswitch-datapath-dkms-fails-to-build-on-Debian-7.7-3.2.0-4-amd64.patch	1970-01-01 01:00:00.000000000 +0100
+++ openvswitch-1.4.2+git20120612/debian/patches/bug-768095-openvswitch-datapath-dkms-fails-to-build-on-Debian-7.7-3.2.0-4-amd64.patch	2014-11-23 20:33:26.000000000 +0100
@@ -0,0 +1,31 @@
+Handle ip_select_ident changes, fix for debian bug #768095
+
+Patch picked from ubuntu [1] (only the tunnel.c part), author Chris J Arges
+<chris.j.arges@ubuntu.com>.
+
+  [1]: https://launchpadlibrarian.net/187027526/openvswitch_1.4.6-0ubuntu1.12.04.3_1.4.6-0ubuntu1.12.04.4.diff.gz
+--- a/datapath/tunnel.c
++++ b/datapath/tunnel.c
+@@ -1291,7 +1291,22 @@
+ 		iph->tos = tos;
+ 		iph->ttl = ttl;
+ 		iph->frag_off = frag_off;
++
++		/*
++		 * linux commits 703133de, 73f156a6 changed this function
++		 * affected stable versions are: 3.13.11.7, 3.2.63
++		 */
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,13,11)       /* commit 73f156a6 */
++                ip_select_ident(skb, &rt_dst(rt));
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,13,0)	/* commit 703133de */
++		ip_select_ident(skb, &rt_dst(rt), NULL);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,63)	/* commit 73f156a6 */
++		ip_select_ident(skb, &rt_dst(rt));
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,51)	/* commit 703133de */
++		ip_select_ident(skb, &rt_dst(rt), NULL);
++#else
+ 		ip_select_ident(iph, &rt_dst(rt), NULL);
++#endif
+ 
+ 		skb = tnl_vport->tnl_ops->update_header(vport, mutable,
+ 							&rt_dst(rt), skb);
diff -Nru openvswitch-1.4.2+git20120612/debian/patches/series openvswitch-1.4.2+git20120612/debian/patches/series
--- openvswitch-1.4.2+git20120612/debian/patches/series	2013-06-25 20:28:32.000000000 +0200
+++ openvswitch-1.4.2+git20120612/debian/patches/series	2014-11-23 14:50:48.000000000 +0100
@@ -18,3 +18,4 @@
 debian-changes-1.4.2+git20120612-9
 
 datapath_Reset_upper_layer_protocol_info_on_internal_devices.patch
+bug-768095-openvswitch-datapath-dkms-fails-to-build-on-Debian-7.7-3.2.0-4-amd64.patch

--- End Message ---
--- Begin Message ---
Version: 7.9

Hi,

These bugs relate to updates which were included in the 7.9 point
release.

Regards,

Adam

--- End Message ---

Reply to: