Re: PMTU discovery broken in Linux for UDP/raw application if the socket is not bound to a device

2018-10-06 Thread David Ahern
The correct mailing list is netdev@vger.kernel.org (added) non-text emails will be rejected. On 10/3/18 10:15 PM, Preethi Ramachandra wrote: > Hi, > >   > > While testing the PMTU discovery for UDP/raw applications, Linux is not > doing PMTU discovery if the UDP server socket is not bound to a

[PATCH][ipsec-next] xfrm: use correct size to initialise sp->ovec

2018-10-06 Thread Li RongQing
This place should want to initialize array, not a element, so it should be sizeof(array) instead of sizeof(element) but now this array only has one element, so no error in this condition that XFRM_MAX_OFFLOAD_DEPTH is 1 Signed-off-by: Li RongQing --- net/xfrm/xfrm_input.c | 2 +- 1 file changed

[PATCH][ipsec-next] xfrm: remove unnecessary check in xfrmi_get_stats64

2018-10-06 Thread Li RongQing
if tstats of a device is not allocated, this device is not registered correctly and can not be used. Signed-off-by: Li RongQing --- net/xfrm/xfrm_interface.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/net/xfrm/xfrm_interface.c b/net/xfrm/xfrm_interface.c index dc5b20bf29cf..abafd49cc6

Re: [net-next,v2,2/4] net/smc: ipv6 support for smc_diag.c

2018-10-06 Thread Eugene Syromiatnikov
On Wed, May 02, 2018 at 04:56:45PM +0200, Ursula Braun wrote: > From: Karsten Graul > > Update smc_diag.c to support ipv6 addresses on the diagnosis interface. > > Signed-off-by: Karsten Graul > Signed-off-by: Ursula Braun > --- > net/smc/smc_diag.c | 39 ++

Re: [PATCH net-next] net: dsa: mc88e6xxx: Fix 88E6141/6341 2500mbps SERDES speed

2018-10-06 Thread Marek Behun
Hi Andrew, I think that dividing this patch into three would be too much. How about this commit message? net: dsa: mv88e6xxx: Fix 88E6141/6341 2500mbps SERDES speed This is a fix for the port_set_speed method for the Topaz family. Currently the same method is used as for the Peridot family,

Re: [PATCH v7 04/15] octeontx2-af: Add mailbox support infra

2018-10-06 Thread David Miller
From: sunil.kovv...@gmail.com Date: Sat, 6 Oct 2018 11:36:22 +0530 > + tx_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->tx_start); > + rx_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->rx_start); Since mdev->mbase is a void pointer, you do not need these casts, nor the parenthesis, at a

Re: [PATCH net-next] net: dsa: mc88e6xxx: Fix 88E6141/6341 2500mbps SERDES speed

2018-10-06 Thread Andrew Lunn
On Sat, Oct 06, 2018 at 02:38:10AM +0200, Marek Behun wrote: > > Hi Marek > > > > I'm confused. > > > > The alt bit is used for configuring 2500. You say 2500 is only > > supported on port 5. But !port is only true for port 0? > > > > Andrew > > On Topaz alt_bit is used only for port 0 fo

Dear,

2018-10-06 Thread Mohammed Rouhani
Dear, Please accept my apologies I do not intend to invade your privacy, I wrote to you earlier, but no answer, in my first post I told you about my late client who bears the same surname with you, I received several letters from the bank, where he made a deposit of 7.2 million Euros before his

Re: [PATCH v7 15/15] MAINTAINERS: Add entry for Marvell OcteonTX2 Admin Function driver

2018-10-06 Thread Joe Perches
On Sat, 2018-10-06 at 11:36 +0530, sunil.kovv...@gmail.com wrote: > Added maintainers entry for Marvell OcteonTX2 SOC's RVU > admin function driver. [] > diff --git a/MAINTAINERS b/MAINTAINERS [] > @@ -8844,6 +8844,15 @@ S: Supported > F: drivers/mmc/host/sdhci-xenon* > F: Documentation/d

Re: [PATCH net] bpf: do not blindly change rlimit in reuseport net selftest

2018-10-06 Thread Daniel Borkmann
On 10/06/2018 04:38 AM, Eric Dumazet wrote: > If the current process has unlimited RLIMIT_MEMLOCK, > we should should leave it as is. > > Fixes: 941ff6f11c02 ("bpf: fix rlimit in reuseport net selftest") > Signed-off-by: John Sperbeck > Signed-off-by: Eric Dumazet > Cc: Daniel Borkmann Acked-b