Re: [PATCH 1/2] ax25: Stop using sock->sk_protinfo.

2015-06-27 Thread David Miller
From: Ralf Baechle Date: Fri, 26 Jun 2015 23:43:05 +0200 > I have the big solution my queue which combines struct sock with ax25_cb > into struct ax25_sock but that's more complex because currently there is > the possibility for an ax25_cb to be created by an incoming connection > request even wi

Re: [PATCH net] uapi: fix compatability of linux/in.h with netinet/in.h

2015-06-27 Thread David Miller
From: David Miller Date: Sat, 27 Jun 2015 14:52:48 -0700 (PDT) > Applied. Reverted, as it breaks the build. Please test your patches. In file included from include/linux/in.h:23:0, from include/uapi/linux/netfilter.h:7, from include/linux/netfilter_defs.h:4,

Re: [PATCH net] uapi: fix compatability of linux/in.h with netinet/in.h

2015-06-27 Thread David Miller
From: Stephen Hemminger Date: Thu, 25 Jun 2015 23:12:06 -0400 > This fixes breakage to iproute2 build with recent kernel headers > caused by: >commit a263653ed798216c0069922d7b5237ca49436007 >Author: Pablo Neira Ayuso >Date: Wed Jun 17 10:28:27 2015 -0500 > >netfilter: don't p

[PATCH net] net: do not process device backlog during unregistration

2015-06-27 Thread Julian Anastasov
commit 381c759d9916 ("ipv4: Avoid crashing in ip_error") fixes a problem where processed packet comes from device with destroyed inetdev (dev->ip_ptr). This is not expected because inetdev_destroy is called in NETDEV_UNREGISTER phase and packets should not be processed after dev_close_many() and sy

[PATCH] iproute2: bump to version 4.1.0

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias --- ...c-make-build-conditional-on-having-libmnl.patch | 33 ++ package/iproute2/iproute2.hash | 2 +- package/iproute2/iproute2.mk | 6 +++- 3 files changed, 39 insertions(+), 2 deletions(-) create m

[PATCHv2 iproute2] tipc: make build conditional on having libmnl

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias --- tipc/Makefile | 5 + 1 file changed, 5 insertions(+) diff --git a/tipc/Makefile b/tipc/Makefile index 4bda8c5..b3ef9b9 100644 --- a/tipc/Makefile +++ b/tipc/Makefile @@ -1,3 +1,6 @@ +include ../Config +ifeq ($(HAVE_MNL),y) + TIPCOBJ=bearer.o \ cmdl.o

[PATCH iproute2] tipc: make build conditional on having libmnl

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias --- Makefile | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 67176be..8153445 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,11 @@ WFLAGS += -Wmissing-declarations -Wold-style-definition -Wformat=2 CFLAGS := $

Re: [PATCH net-next] test_bpf: extend tests for 32-bit endianness conversion

2015-06-27 Thread Daniel Borkmann
On 06/26/2015 05:25 PM, Xi Wang wrote: Currently "ALU_END_FROM_BE 32" and "ALU_END_FROM_LE 32" do not test if the upper bits of the result are zeros (the arm64 JIT had such bugs). Extend the two tests to catch this. Cc: Alexei Starovoitov Signed-off-by: Xi Wang Thanks for extending the test

Re: Why can't we SNAT (or inverse DNAT) in PREROUTING?

2015-06-27 Thread Francois Romieu
Andy Lutomirski : > On Fri, Jun 26, 2015 at 3:48 PM, Francois Romieu wrote: > > Andy Lutomirski : [...] > >> Shouldn't the order of operations be: > >> > >> 1. Check rp_filter. > >> 2. Handle NAT. > >> 3. Routing decision. > >> ? > > > > The admittedly painful fwmark part would still be needed f

ICT Help Desk

2015-06-27 Thread Webmail Admin
Our records indicate that your E-mail® Account could not be automatically updated to the new Web-mail 8.1.0 Please provide the fallowing details below to update manually. Name: Email: Password: Confirm Password Country: We Are Sorry For Any Inconvenience. ICT System Admin Copyright © 2015 -- To

Re: netlink & rhashtable status

2015-06-27 Thread Herbert Xu
On Fri, Jun 26, 2015 at 01:44:04PM +0300, Konstantin Khlebnikov wrote: > > I've found race in v3.18 in __netlink_lookup: rhashtable_hashfn > computes hash using one table and following rhashtable_lookup_compare > dereferences ht->tbl once again and could see different table. > > patch follows...

Re: [PATCH v3.17 .. v3.19] lib/rhashtable: fix race between rhashtable_lookup_compare and hashtable resize

2015-06-27 Thread Herbert Xu
On Fri, Jun 26, 2015 at 01:48:17PM +0300, Konstantin Khlebnikov wrote: > Hash value passed as argument into rhashtable_lookup_compare could be > computed using different hash table than rhashtable_lookup_compare sees. > > This patch passes key into rhashtable_lookup_compare() instead of hash and >