diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2014-11-16 19:10:21 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2014-11-16 19:10:21 +0100 |
commit | ded96b268ba59530f82f6c475fa1be3b295b6cdd (patch) | |
tree | 0b77bb4d454898ca0e9f943362208334c8319343 | |
parent | 7f3a23738b01aa405c99bcf8f2be48ddf1956da4 (diff) |
backports: do not use in kernel version of rt6_nexthop()backports-20141114
Kernel 3.9 ships with a version of rt6_nexthop() with two parameters.
We want to replace this version with our current version which only
takes one parameter. include/net/ip6_route.h includes include/net
/ip6_fib.h so we can not place our code behind the code in include/net
/ip6_route.h. If we include ip6_fib.h before ip6_route.h we can place
our code at the position we need it.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r-- | patches/collateral-evolutions/network/0013-fix-makefile-includes/bluetooth.patch | 10 | ||||
-rw-r--r-- | patches/collateral-evolutions/network/0030-qdisc_tx_busylock/bluetooth.patch | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/patches/collateral-evolutions/network/0013-fix-makefile-includes/bluetooth.patch b/patches/collateral-evolutions/network/0013-fix-makefile-includes/bluetooth.patch new file mode 100644 index 00000000..db732995 --- /dev/null +++ b/patches/collateral-evolutions/network/0013-fix-makefile-includes/bluetooth.patch @@ -0,0 +1,10 @@ +--- a/net/bluetooth/6lowpan.c ++++ b/net/bluetooth/6lowpan.c +@@ -18,6 +18,7 @@ + #include <linux/debugfs.h> + + #include <net/ipv6.h> ++#include <net/ip6_fib.h> + #include <net/ip6_route.h> + #include <net/addrconf.h> + diff --git a/patches/collateral-evolutions/network/0030-qdisc_tx_busylock/bluetooth.patch b/patches/collateral-evolutions/network/0030-qdisc_tx_busylock/bluetooth.patch index 0c63a674..8626c3bf 100644 --- a/patches/collateral-evolutions/network/0030-qdisc_tx_busylock/bluetooth.patch +++ b/patches/collateral-evolutions/network/0030-qdisc_tx_busylock/bluetooth.patch @@ -1,6 +1,6 @@ --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c -@@ -663,7 +663,9 @@ static void bt_set_lockdep_class_one(str +@@ -664,7 +664,9 @@ static void bt_set_lockdep_class_one(str static int bt_dev_init(struct net_device *dev) { netdev_for_each_tx_queue(dev, bt_set_lockdep_class_one, NULL); |