about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2012-10-26 22:52:51 +0200
committerMichael Biebl <biebl@debian.org>2012-10-26 22:52:51 +0200
commit03b1b3ab2822491ced466281a6072e85d925aae1 (patch)
tree10918169ee45e03fbb2e7752ddab571d6b816203
parent56f6883d50710f4b5da726b906ed5c0d97c6b1c6 (diff)
Remove patches which have been merged upstream
-rw-r--r--debian/patches/15-ignore-cached-cloned-routes-ipv6-config.patch29
-rw-r--r--debian/patches/16-ignore-cached-cloned-routes-kernel-notifications.patch24
-rw-r--r--debian/patches/17-dbus-remove-max_replies_per_connection-limit.patch22
-rw-r--r--debian/patches/series3
4 files changed, 0 insertions, 78 deletions
diff --git a/debian/patches/15-ignore-cached-cloned-routes-ipv6-config.patch b/debian/patches/15-ignore-cached-cloned-routes-ipv6-config.patch
deleted file mode 100644
index ab076ca6..00000000
--- a/debian/patches/15-ignore-cached-cloned-routes-ipv6-config.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 3ca3120e4a01ea4a86fd052311c977e7ec136365 Mon Sep 17 00:00:00 2001
-From: Ben Jencks <ben@bjencks.net>
-Date: Thu, 30 Aug 2012 18:55:36 +0000
-Subject: ip6: ignore cached/cloned route notifications from the kernel (lp:1038541) (bgo #671767)
-
-The kernel periodically adds routes for specific operations, including
-when pinging any host.  These are temporary routes and aren't part of
-the interface's permanent routing configuration, so we should ignore
-them.
----
-Index: network-manager/src/ip6-manager/nm-ip6-manager.c
-===================================================================
---- network-manager.orig/src/ip6-manager/nm-ip6-manager.c	2012-08-31 09:19:54.000000000 +0200
-+++ network-manager/src/ip6-manager/nm-ip6-manager.c	2012-08-31 09:56:24.000000000 +0200
-@@ -602,6 +602,14 @@
- 		return NULL;
- 	}
- 
-+	/* Cached/cloned routes are created by the kernel for specific operations
-+	 * and aren't part of the interface's permanent routing configuration.
-+	 */
-+	if (rtnl_route_get_flags (rtnlroute) & RTM_F_CLONED) {
-+		rtnl_route_put (rtnlroute);
-+		return NULL;
-+	}
-+
- 	device = nm_ip6_manager_get_device (manager, rtnl_route_get_oif (rtnlroute));
- 	if (!device) {
- 		nm_log_dbg (LOGD_IP6, "ignoring message for unknown device");
diff --git a/debian/patches/16-ignore-cached-cloned-routes-kernel-notifications.patch b/debian/patches/16-ignore-cached-cloned-routes-kernel-notifications.patch
deleted file mode 100644
index 264ae9b7..00000000
--- a/debian/patches/16-ignore-cached-cloned-routes-kernel-notifications.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 46e0af2942e23fb3cf1c313e58e4081877d4f289 Mon Sep 17 00:00:00 2001
-From: Dan Williams <dcbw@redhat.com>
-Date: Thu, 30 Aug 2012 18:57:06 +0000
-Subject: ip6: ignore cached/cloned routes when retrieving IPv6 config (lp:1038541) (bgo #671767)
-
-Should also ignore them when building up the initial IPv6 config.
----
-Index: network-manager/src/ip6-manager/nm-ip6-manager.c
-===================================================================
---- network-manager.orig/src/ip6-manager/nm-ip6-manager.c	2012-08-31 09:56:03.000000000 +0200
-+++ network-manager/src/ip6-manager/nm-ip6-manager.c	2012-08-31 09:56:03.000000000 +0200
-@@ -1284,6 +1284,12 @@
- 		if (rtnl_route_get_family (rtnlroute) != AF_INET6)
- 			continue;
- 
-+		/* And ignore cache/cloned routes as they aren't part of the interface's
-+		 * permanent routing configuration.
-+		 */
-+		if (rtnl_route_get_flags (rtnlroute) & RTM_F_CLONED)
-+			continue;
-+
- 		nldest = rtnl_route_get_dst (rtnlroute);
- 		if (!nldest || nl_addr_get_family (nldest) != AF_INET6)
- 			continue;
diff --git a/debian/patches/17-dbus-remove-max_replies_per_connection-limit.patch b/debian/patches/17-dbus-remove-max_replies_per_connection-limit.patch
deleted file mode 100644
index be642922..00000000
--- a/debian/patches/17-dbus-remove-max_replies_per_connection-limit.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit d5b31d55fa1536a5bd08cf85929ac63a8f723467
-Author: Jiří Klimeš <jklimes@redhat.com>
-Date:   Wed May 23 10:31:12 2012 +0200
-
-    dbus: remove 'max_replies_per_connection' limit from D-Bus configuration
-    
-    It is leftover from times when D-Bus default limit was 32. Now, it is 8192, see
-    http://cgit.freedesktop.org/dbus/dbus/commit/?id=8d3d8ff55739eebd84d0d53a20a025329feafc3b
-    See also https://bugs.freedesktop.org/show_bug.cgi?id=50264
-
-Index: network-manager/src/org.freedesktop.NetworkManager.conf
-===================================================================
---- network-manager.orig/src/org.freedesktop.NetworkManager.conf	2012-09-11 19:16:05.307271180 +0200
-+++ network-manager/src/org.freedesktop.NetworkManager.conf	2012-09-11 19:16:05.535271173 +0200
-@@ -179,7 +179,5 @@
-                        send_interface="org.freedesktop.NetworkManager"
-                        send_member="wake"/>
-         </policy>
--
--        <limit name="max_replies_per_connection">512</limit>
- </busconfig>
- 
diff --git a/debian/patches/series b/debian/patches/series
index 7bd07b6e..fc215f9c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,6 +1,3 @@
 # Debian patches for network-manager
 02-dbus_access_network_manager.patch
 03-systemd.patch
-15-ignore-cached-cloned-routes-ipv6-config.patch
-16-ignore-cached-cloned-routes-kernel-notifications.patch
-17-dbus-remove-max_replies_per_connection-limit.patch