Re: [RFC PATCH 3/3] devicetree: macb: Add optional property tsu-clk

2015-09-13 Thread Harini Katakam
On Fri, Sep 11, 2015 at 10:22 PM, Sören Brinkmann wrote: > Hi Harini, > > On Fri, 2015-09-11 at 01:27PM +0530, Harini Katakam wrote: >> Add TSU clock frequency to be used for 1588 support in macb driver. >> >> Signed-off-by: Harini Katakam >> --- >> Documentation/devicetree/bindings/net/macb.txt

Re: List corruption on epoll_ctl(EPOLL_CTL_DEL) an AF_UNIX socket

2015-09-13 Thread Eric Wong
+cc Jason Baron since he might be able to provide more insight into epoll. Mathias Krause wrote: > Hi, > > this is an attempt to resurrect the thread initially started here: > > http://thread.gmane.org/gmane.linux.network/353003 > > As that patch fixed the issue for the mentioned reproducer,

re: fjes: update_zone_task

2015-09-13 Thread Dan Carpenter
Hello Taku Izumi, The patch 785f28e061a8: "fjes: update_zone_task" from Aug 21, 2015, leads to the following static checker warning: drivers/net/fjes/fjes_hw.c:1016 fjes_hw_update_zone_task() warn: potential off by one 'info[]' limit 'hw->max_epid' drivers/net/fjes/fjes_hw.c 9

Re: [PATCH/RFC v2 net-next 3/4] ravb: Document binding for r8a7795 SoC

2015-09-13 Thread Simon Horman
On Fri, Sep 11, 2015 at 05:25:17PM +0300, Sergei Shtylyov wrote: > Hello. > > On 9/11/2015 5:01 AM, Simon Horman wrote: > > >From: Kazuya Mizuguchi > > > >This patch updates the ravb binding to support the r8a7795 SoC by: > >- Adding a compat string for the new hardware > >- Adding 25 named inte

Re: [PATCH v2] atomics,cmpxchg: Privatize the inclusion of asm/cmpxchg.h

2015-09-13 Thread Davidlohr Bueso
On Wed, 09 Sep 2015, Boqun Feng wrote: After commit: atomics: add acquire/release/relaxed variants of some atomic operations Architectures may only provide {cmp,}xchg_relaxed definitions in asm/cmpxchg.h. Other variants, such as {cmp,}xchg, may be built in linux/atomic.h, which means simply in

List corruption on epoll_ctl(EPOLL_CTL_DEL) an AF_UNIX socket

2015-09-13 Thread Mathias Krause
Hi, this is an attempt to resurrect the thread initially started here: http://thread.gmane.org/gmane.linux.network/353003 As that patch fixed the issue for the mentioned reproducer, it did not fix the bug for the production code Olivier is using. :( Changing the reproducer only slightly allow

Re: Netfilter: BUG: unable to handle kernel paging request, RIP: physdev_mt+0xd6/0x160

2015-09-13 Thread Florian Westphal
Sander Eikelenboom wrote: > Using a linux-4.3-rc1 kernel i encountered the splat below: Thanks for reporting this bug. > [ 290.200642] BUG: unable to handle kernel paging request at > 0484195d > [ 290.211702] IP: [] physdev_mt+0xd6/0x160 [..] > [ 290.444088] [] ipt_do_table+0x210/0x

[PATCH net] ipv6: include NLM_F_REPLACE in route replace notifications

2015-09-13 Thread Roopa Prabhu
From: Roopa Prabhu This patch adds NLM_F_REPLACE flag to ipv6 route replace notifications. This makes nlm_flags in ipv6 replace notifications consistent with ipv4. Signed-off-by: Roopa Prabhu --- Submitting this to net since it complements the other ipv6 replace fixes in net include/net/ip6_f

How to use hwsim?

2015-09-13 Thread Ramprasad Vempati
Hi, I've got hwsim source code from: http://git.sipsolutions.net/hwsim.git. I could compile it. And I see binary-hwsim is created after compilation. But there isn't any help on how do I use this. Can someone help me with these details? -ram -- To unsubscribe from this list: send the line "unsubs

Any way to configure a vlan interface to grab ONLY untagged frames?

2015-09-13 Thread Nathan Neulinger
It seems like running 'vconfig add IFACE 0' and using IFACE.0 would do this, but it doesn't actually seem to work that way. If I capture on IFACE directly, I'd expect to get all traffic, including the tagged frames (with the tag intact). Looking to be able to bridge/capture/etc. and specificall

Re: [PATCH net-next v2] bridge: vlan: allow to suppress local mac install for all vlans

2015-09-13 Thread Nikolay Aleksandrov
On 08/29/2015 03:11 AM, Vlad Yasevich wrote: > On 08/28/2015 11:26 AM, Nikolay Aleksandrov wrote: >> >>> On Aug 28, 2015, at 5:31 AM, Vlad Yasevich wrote: >>> >>> On 08/27/2015 10:17 PM, Nikolay Aleksandrov wrote: <<>> >>> >>> I don't remember learning being all that complicated. The hash only >

[PATCH 10/39] atm: he: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); // Signed-off-by: Julia Lawall --- drivers/atm/he.c |7 ++- 1 file

[PATCH 14/39] SUNRPC: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); // Signed-off-by: Julia Lawall --- net/sunrpc/sched.c | 12

[PATCH 00/39] drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Recent commits to kernel/git/torvalds/linux.git have made the following functions able to tolerate NULL arguments: kmem_cache_destroy (commit 3942d29918522) mempool_destroy (commit 4e3ca3e033d1) dma_pool_destroy (commit 44d7175da6ea) These patches remove the associated NULL tests for the files th

[PATCH 25/39] net: core: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) { \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); x = NULL; -} // Signed-off-by: Julia Lawall --- net/core/sock.c | 12

[PATCH 34/39] dccp: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); @@ expression x; @@ -if (x != NULL) { \(kmem_cache_destroy\|mempool_destroy

[PATCH 20/39] ixgbe: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); // Signed-off-by: Julia Lawall --- drivers/net/ethernet/intel/ixgbe/ixgbe_f

Re: [PATCH v2 net-next] netfilter: ipset: Fixing unnamed union initg

2015-09-13 Thread Pablo Neira Ayuso
On Sat, Sep 12, 2015 at 06:01:27PM -0700, Akemi Yagi wrote: > Thanks to all for this effort. The patch is finally in the mainline > kernel 4.3-rc1 released today. Now I wish backporting to the 4.2 > branch goes smoothly. It's on its path to 4.2: http://patchwork.ozlabs.org/patch/516795/ so I thi

Netfilter: BUG: unable to handle kernel paging request, RIP: physdev_mt+0xd6/0x160

2015-09-13 Thread Sander Eikelenboom
2] IP: [] physdev_mt+0xd6/0x160 [ 290.222716] PGD 591ea067 PUD 5772a067 PMD 0 [ 290.233389] Oops: [#1] SMP [ 290.244017] Modules linked in: [ 290.254338] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.3.0-rc1-20150913-linus-doflr+ #1 [ 290.264862] Hardware name: MSI MS-7640/890FXA-GD70 (MS-7