Re: [PATCH net v2] openvswitch: Fix mask generation for nested attributes.

2015-09-12 Thread Pravin Shelar
On Fri, Sep 11, 2015 at 6:38 PM, Jesse Gross wrote: > Masks were added to OVS flows in a way that was backwards compatible > with userspace programs that did not generate masks. As a result, it is > possible that we may receive flows that do not have a mask and we need > to

Investments and Loans.

2015-09-12 Thread Global
Dear sir/ Madam I am Mr Sujata Gupta Foreign investment Co-ordinator for Global Ore (M) SDN. BHD Malaysia, we are currently looking for foreign investors for property developement and purchase in our country. We are also business investors, We give out Equity Loan Funding, Collateral and Non

Re: [PATCH] ipvs:Fix locking requirements in the function ip_vs_unlink_service

2015-09-12 Thread Julian Anastasov
Hello, On Sat, 12 Sep 2015, nick wrote: > > BH locking is not needed anymore. Also, sched_lock is > > used by schedulers to protect only access to svc->sched_data > > fields. > > > > It seems the comment is outdated after > > commit ceec4c381681 ("ipvs: convert services to

Re: [PATCH 2/3] net: irda: pxaficp_ir: convert to readl and writel

2015-09-12 Thread Petr Cvek
Dne 12.9.2015 v 13:03 Robert Jarzmik napsal(a): > Petr Cvek writes: > > And it is true I have not tested the rootfs special case, where drivers > are not > yet initialized (and more specifically gpio and interrupt chip). Your > backtrace > should tell me

Re: [PATCH v2 2/3] net: irda: pxaficp_ir: convert to readl and writel

2015-09-12 Thread Petr Cvek
Dne 12.9.2015 v 13:45 Robert Jarzmik napsal(a): > Convert the pxa IRDA driver to readl and writel primitives, and remove > another set of direct registers access. This leaves only the DMA > registers access, which will be dealt with dmaengine conversion. > > Signed-off-by: Robert Jarzmik

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

2015-09-12 Thread Akemi Yagi
On Mon, Aug 31, 2015 at 12:16 AM, Vinson Lee wrote: > On Fri, Aug 28, 2015 at 4:21 PM, Akemi Yagi wrote: >> On Fri, Aug 28, 2015 at 3:59 PM, Pablo Neira Ayuso >> wrote: >>> On Sat, Aug 22, 2015 at 08:44:48PM +0200, Pablo Neira Ayuso

Re: [PATCH] ipvs:Fix locking requirements in the function ip_vs_unlink_service

2015-09-12 Thread Julian Anastasov
Hello, On Sat, 12 Sep 2015, Nicholas Krause wrote: > This fixes locking requirements in the function ip_vs_unlink_service > to properly use bottom half spinlocking around the call to the function > __ip_vs_del_service in order to meet the locking that this paricular > function requires

ATL1E 0000:02:00.0: swiotlb buffer is full (sz: 529461 bytes)

2015-09-12 Thread Markus Trippelsdorf
With the current Linus git tree I get an occasional swiotlb allocation error during network setup at boot-time: ATL1E :02:00.0: swiotlb buffer is full (sz: 529461 bytes) swiotlb: coherent allocation failed for device :02:00.0 size=529461 CPU: 0 PID: 200 Comm: ifconfig Not tainted

[PATCH v2] Net: core: stream.c: coding style fixes

2015-09-12 Thread Krzysztof Majzerowicz-Jaszcz
Fixed coding style issues reported by checkpatch.pl Signed-off-by: Krzysztof Majzerowicz-Jaszcz --- net/core/stream.c | 23 +-- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/net/core/stream.c b/net/core/stream.c index d70f77a..c089589

Re: [PATCH 2/3] net: irda: pxaficp_ir: convert to readl and writel

2015-09-12 Thread Robert Jarzmik
Petr Cvek writes: And it is true I have not tested the rootfs special case, where drivers are not yet initialized (and more specifically gpio and interrupt chip). Your backtrace should tell me if you fall into this category of issues ... but I

[PATCH] iwlwifi: mvm: fix tof.h header guard

2015-09-12 Thread Nicolas Iooss
Commit ce7929186a39 ("iwlwifi: mvm: add basic Time of Flight (802.11mc FTM) support") created drivers/net/wireless/iwlwifi/mvm/tof.h with a broken header guard: #ifndef __tof #define __tof_h__ ... #endif /* __tof_h__ */ Use __tof_h__ in the first line. Signed-off-by: Nicolas

[PATCH v2 3/3] net: irda: pxaficp_ir: dmaengine conversion

2015-09-12 Thread Robert Jarzmik
Convert pxaficp_ir to dmaengine. As pxa architecture is shifting from raw DMA registers access to pxa_dma dmaengine driver, convert this driver to dmaengine. Signed-off-by: Robert Jarzmik --- Since v1: removed mach/dma.h include, which is the goal ---

[PATCH v2 2/3] net: irda: pxaficp_ir: convert to readl and writel

2015-09-12 Thread Robert Jarzmik
Convert the pxa IRDA driver to readl and writel primitives, and remove another set of direct registers access. This leaves only the DMA registers access, which will be dealt with dmaengine conversion. Signed-off-by: Robert Jarzmik --- Since v1: modified __REG macro to

[PATCH v2 1/3] net: irda: pxaficp_ir: use sched_clock() for time management

2015-09-12 Thread Robert Jarzmik
Instead of using directly the OS timer through direct register access, use the standard sched_clock(), which will end up in OSCR reading anyway. This is a first step for direct access register removal and machine specific code removal from this driver. Signed-off-by: Robert Jarzmik