Darlehen Angebot von 3%

2016-10-10 Thread Lloyds TSB Bank PLC
Schönen Tag, Dies ist Lloyds TSB Bank plc Kredite anbieten. Lloyds TSB bietet flexible und günstige Kredite für jeden Zweck Sie Ihre Ziele erreichen zu helfen. wir bei niedrigen Zinssatz von 3% Darlehen. Hier sind einige wichtige Merkmale der persönlichen Kredit angeboten durch Lloyds

Darlehen Angebot von 3%

2016-10-10 Thread Lloyds TSB Bank PLC
Schönen Tag, Dies ist Lloyds TSB Bank plc Kredite anbieten. Lloyds TSB bietet flexible und günstige Kredite für jeden Zweck Sie Ihre Ziele erreichen zu helfen. wir bei niedrigen Zinssatz von 3% Darlehen. Hier sind einige wichtige Merkmale der persönlichen Kredit angeboten durch Lloyds

Re: [Xen-devel] [RFC KERNEL PATCH 0/2] Add Dom0 NVDIMM support for Xen

2016-10-10 Thread Haozhong Zhang
On 10/10/16 17:43, Andrew Cooper wrote: > On 10/10/16 01:35, Haozhong Zhang wrote: > > Overview > > > > This RFC kernel patch series along with corresponding patch series of > > Xen, QEMU and ndctl implements Xen vNVDIMM, which can map the host > > NVDIMM devices to Xen HVM domU as

Re: [Xen-devel] [RFC KERNEL PATCH 0/2] Add Dom0 NVDIMM support for Xen

2016-10-10 Thread Haozhong Zhang
On 10/10/16 17:43, Andrew Cooper wrote: > On 10/10/16 01:35, Haozhong Zhang wrote: > > Overview > > > > This RFC kernel patch series along with corresponding patch series of > > Xen, QEMU and ndctl implements Xen vNVDIMM, which can map the host > > NVDIMM devices to Xen HVM domU as

[PATCH] um: remove hppfs MAINTAINERS entry

2016-10-10 Thread Dan Carpenter
We removed hppfs in commit f74a14e870c8 ('um: Remove hppfs') so we can remove the MAINTAINERS entry as well. Signed-off-by: Dan Carpenter diff --git a/MAINTAINERS b/MAINTAINERS index 63f15c9..116729a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -12671,7 +12671,6 @@ F:

[PATCH] um: remove hppfs MAINTAINERS entry

2016-10-10 Thread Dan Carpenter
We removed hppfs in commit f74a14e870c8 ('um: Remove hppfs') so we can remove the MAINTAINERS entry as well. Signed-off-by: Dan Carpenter diff --git a/MAINTAINERS b/MAINTAINERS index 63f15c9..116729a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -12671,7 +12671,6 @@ F:

Re: slab corruption with current -git (was Re: [git pull] vfs pile 1 (splice))

2016-10-10 Thread Linus Torvalds
On Mon, Oct 10, 2016 at 10:39 PM, Linus Torvalds wrote: > > I guess I will have to double-check that the slub corruption is gone > still with that fixed. So I'm not getting any warnings now from SLUB debugging. So the original bug seems to not have re-surfaced, and

Re: slab corruption with current -git (was Re: [git pull] vfs pile 1 (splice))

2016-10-10 Thread Linus Torvalds
On Mon, Oct 10, 2016 at 10:39 PM, Linus Torvalds wrote: > > I guess I will have to double-check that the slub corruption is gone > still with that fixed. So I'm not getting any warnings now from SLUB debugging. So the original bug seems to not have re-surfaced, and the registration bug is gone,

Re: slab corruption with current -git (was Re: [git pull] vfs pile 1 (splice))

2016-10-10 Thread Linus Torvalds
On Sun, Oct 9, 2016 at 8:41 PM, Linus Torvalds wrote: > This COMPLETELY UNTESTED patch tries to fix the nf_hook_entry code to do this. > > I repeat: it's ENTIRELY UNTESTED. Gaah. That patch was subtle garbage. The "add to list" thing did this:

Re: slab corruption with current -git (was Re: [git pull] vfs pile 1 (splice))

2016-10-10 Thread Linus Torvalds
On Sun, Oct 9, 2016 at 8:41 PM, Linus Torvalds wrote: > This COMPLETELY UNTESTED patch tries to fix the nf_hook_entry code to do this. > > I repeat: it's ENTIRELY UNTESTED. Gaah. That patch was subtle garbage. The "add to list" thing did this: rcu_assign_pointer(entry->next, p);

[PATCH 5/8] autofs - change autofs4_wait() to take struct path

2016-10-10 Thread Ian Kent
From: Ian Kent In order to use the functions path_is_mountpoint() (or its rcu-walk variant) and path_has_submounts() autofs needs to pass a struct path in several places. Now change autofs4_wait() to take a struct path instead of a struct dentry. Signed-off-by: Ian Kent

[PATCH 5/8] autofs - change autofs4_wait() to take struct path

2016-10-10 Thread Ian Kent
From: Ian Kent In order to use the functions path_is_mountpoint() (or its rcu-walk variant) and path_has_submounts() autofs needs to pass a struct path in several places. Now change autofs4_wait() to take a struct path instead of a struct dentry. Signed-off-by: Ian Kent Cc: Al Viro Cc: Eric

[PATCH 2/8] vfs - add path_is_mountpoint() helper

2016-10-10 Thread Ian Kent
From: Ian Kent d_mountpoint() can only be used reliably to establish if a dentry is not mounted in any namespace. It isn't aware of the possibility there may be multiple mounts using a given dentry that may be in a different namespace. Add helper functions,

[PATCH 8/8] vfs - remove unused have_submounts() function

2016-10-10 Thread Ian Kent
Now that path_has_submounts() has been added have_submounts() is no longer used so remove it. Signed-off-by: Ian Kent Cc: Al Viro Cc: Eric W. Biederman Cc: Omar Sandoval --- fs/dcache.c| 33

[PATCH 3/8] vfs - add path_has_submounts()

2016-10-10 Thread Ian Kent
From: Ian Kent d_mountpoint() can only be used reliably to establish if a dentry is not mounted in any namespace. It isn't aware of the possibility there may be multiple mounts using the given dentry, possibly in a different namespace. Add function, path_has_submounts(), that

[PATCH 4/8] autofs - change autofs4_expire_wait() to take struct path

2016-10-10 Thread Ian Kent
From: Ian Kent In order to use the functions path_is_mountpoint() (or it's rcu-walk variant) and path_has_submounts() autofs needs to pass a struct path in several places. Start by changing autofs4_expire_wait() to take a struct path instead of a struct dentry. Signed-off-by:

[PATCH 6/8] autofs - use path_is_mountpoint() to fix unreliable d_mountpoint() checks

2016-10-10 Thread Ian Kent
From: Ian Kent If an automount mount is clone(2)ed into a file system that is propagation private, when it later expires in the originating namespace, subsequent calls to autofs ->d_automount() for that dentry in the original namespace will return ELOOP until the mount is

[PATCH 2/8] vfs - add path_is_mountpoint() helper

2016-10-10 Thread Ian Kent
From: Ian Kent d_mountpoint() can only be used reliably to establish if a dentry is not mounted in any namespace. It isn't aware of the possibility there may be multiple mounts using a given dentry that may be in a different namespace. Add helper functions, path_is_mountpoint() and an rcu

[PATCH 8/8] vfs - remove unused have_submounts() function

2016-10-10 Thread Ian Kent
Now that path_has_submounts() has been added have_submounts() is no longer used so remove it. Signed-off-by: Ian Kent Cc: Al Viro Cc: Eric W. Biederman Cc: Omar Sandoval --- fs/dcache.c| 33 - include/linux/dcache.h |1 - 2 files changed, 34

[PATCH 3/8] vfs - add path_has_submounts()

2016-10-10 Thread Ian Kent
From: Ian Kent d_mountpoint() can only be used reliably to establish if a dentry is not mounted in any namespace. It isn't aware of the possibility there may be multiple mounts using the given dentry, possibly in a different namespace. Add function, path_has_submounts(), that checks is a struct

[PATCH 4/8] autofs - change autofs4_expire_wait() to take struct path

2016-10-10 Thread Ian Kent
From: Ian Kent In order to use the functions path_is_mountpoint() (or it's rcu-walk variant) and path_has_submounts() autofs needs to pass a struct path in several places. Start by changing autofs4_expire_wait() to take a struct path instead of a struct dentry. Signed-off-by: Ian Kent Cc: Al

[PATCH 6/8] autofs - use path_is_mountpoint() to fix unreliable d_mountpoint() checks

2016-10-10 Thread Ian Kent
From: Ian Kent If an automount mount is clone(2)ed into a file system that is propagation private, when it later expires in the originating namespace, subsequent calls to autofs ->d_automount() for that dentry in the original namespace will return ELOOP until the mount is umounted in the cloned

Re: [PATCH] mm/vmalloc: reduce the number of lazy_max_pages to reduce latency

2016-10-10 Thread Joel Fernandes
On Mon, Oct 10, 2016 at 10:06 PM, Joel Fernandes wrote: > On Sun, Oct 9, 2016 at 12:26 PM, Chris Wilson > wrote: >> On Sun, Oct 09, 2016 at 12:00:31PM -0700, Joel Fernandes wrote: >>> Ok. So I'll submit a patch with mutex for purge_lock and use

[PATCH 7/8] autofs - use path_has_submounts() to fix unreliable have_submount() checks

2016-10-10 Thread Ian Kent
From: Ian Kent If an automount mount is clone(2)ed into a file system that is propagation private, when it later expires in the originating namespace, subsequent calls to autofs ->d_automount() for that dentry in the original namespace will return ELOOP until the mount is

Re: [PATCH] mm/vmalloc: reduce the number of lazy_max_pages to reduce latency

2016-10-10 Thread Joel Fernandes
On Mon, Oct 10, 2016 at 10:06 PM, Joel Fernandes wrote: > On Sun, Oct 9, 2016 at 12:26 PM, Chris Wilson > wrote: >> On Sun, Oct 09, 2016 at 12:00:31PM -0700, Joel Fernandes wrote: >>> Ok. So I'll submit a patch with mutex for purge_lock and use >>> cond_resched_lock for the vmap_area_lock as

[PATCH 7/8] autofs - use path_has_submounts() to fix unreliable have_submount() checks

2016-10-10 Thread Ian Kent
From: Ian Kent If an automount mount is clone(2)ed into a file system that is propagation private, when it later expires in the originating namespace, subsequent calls to autofs ->d_automount() for that dentry in the original namespace will return ELOOP until the mount is umounted in the cloned

[PATCH 1/8] vfs - change d_manage() to take a struct path

2016-10-10 Thread Ian Kent
For the autofs module to be able to reliably check if a dentry is a mountpoint in a multiple namespace environment the ->d_manage() dentry operation will need to take a path argument instead of a dentry. Signed-off-by: Ian Kent Cc: Al Viro Cc: Eric W.

[PATCH 1/8] vfs - change d_manage() to take a struct path

2016-10-10 Thread Ian Kent
For the autofs module to be able to reliably check if a dentry is a mountpoint in a multiple namespace environment the ->d_manage() dentry operation will need to take a path argument instead of a dentry. Signed-off-by: Ian Kent Cc: Al Viro Cc: Eric W. Biederman Cc: Omar Sandoval ---

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 12:32, Lu Baolu wrote: > Hi, > > On 10/11/2016 12:07 PM, Baolin Wang wrote: /* >> + * usb_charger_unregister() - Unregister a usb charger. >> + * @uchger - the usb charger to be unregistered. >> + */ >> +static

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 12:32, Lu Baolu wrote: > Hi, > > On 10/11/2016 12:07 PM, Baolin Wang wrote: /* >> + * usb_charger_unregister() - Unregister a usb charger. >> + * @uchger - the usb charger to be unregistered. >> + */ >> +static int

Re: [PATCH 0/4] use up highorder free pages before OOM

2016-10-10 Thread Minchan Kim
On Mon, Oct 10, 2016 at 09:47:31AM +0200, Michal Hocko wrote: > On Sat 08-10-16 00:04:25, Minchan Kim wrote: > [...] > > I can show other log which reserve greater than 1%. See the DMA32 zone > > free pages. It was GFP_ATOMIC allocation so it's different with I posted > > but important thing is VM

Re: [PATCH 0/4] use up highorder free pages before OOM

2016-10-10 Thread Minchan Kim
On Mon, Oct 10, 2016 at 09:47:31AM +0200, Michal Hocko wrote: > On Sat 08-10-16 00:04:25, Minchan Kim wrote: > [...] > > I can show other log which reserve greater than 1%. See the DMA32 zone > > free pages. It was GFP_ATOMIC allocation so it's different with I posted > > but important thing is VM

Re: [PATCH] mm/vmalloc: reduce the number of lazy_max_pages to reduce latency

2016-10-10 Thread Joel Fernandes
On Sun, Oct 9, 2016 at 12:26 PM, Chris Wilson wrote: > On Sun, Oct 09, 2016 at 12:00:31PM -0700, Joel Fernandes wrote: >> Ok. So I'll submit a patch with mutex for purge_lock and use >> cond_resched_lock for the vmap_area_lock as you suggested. I'll also >> drop the

Re: [PATCH] mm/vmalloc: reduce the number of lazy_max_pages to reduce latency

2016-10-10 Thread Joel Fernandes
On Sun, Oct 9, 2016 at 12:26 PM, Chris Wilson wrote: > On Sun, Oct 09, 2016 at 12:00:31PM -0700, Joel Fernandes wrote: >> Ok. So I'll submit a patch with mutex for purge_lock and use >> cond_resched_lock for the vmap_area_lock as you suggested. I'll also >> drop the lazy_max_pages to 8MB as Andi

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Liping Zhang
2016-10-11 11:57 GMT+08:00 Chris Caputo : > I have tested the above patch with 4.8.1, with and without nflog-size > defined in an iptables configuration, and it works well. > > The ulogd-2.0.5 segfaults no longer happen when nflog-size is not present > in a target. > > I recommend

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Liping Zhang
2016-10-11 11:57 GMT+08:00 Chris Caputo : > I have tested the above patch with 4.8.1, with and without nflog-size > defined in an iptables configuration, and it works well. > > The ulogd-2.0.5 segfaults no longer happen when nflog-size is not present > in a target. > > I recommend this fix.

Re: [PATCH 3/4] mm: unreserve highatomic free pages fully before OOM

2016-10-10 Thread Minchan Kim
Hi Michal, On Mon, Oct 10, 2016 at 09:41:40AM +0200, Michal Hocko wrote: > On Fri 07-10-16 23:43:45, Minchan Kim wrote: > > On Fri, Oct 07, 2016 at 11:09:17AM +0200, Michal Hocko wrote: > > > On Fri 07-10-16 14:45:35, Minchan Kim wrote: > > > > After fixing the race of highatomic page count, I

Re: [PATCH 3/4] mm: unreserve highatomic free pages fully before OOM

2016-10-10 Thread Minchan Kim
Hi Michal, On Mon, Oct 10, 2016 at 09:41:40AM +0200, Michal Hocko wrote: > On Fri 07-10-16 23:43:45, Minchan Kim wrote: > > On Fri, Oct 07, 2016 at 11:09:17AM +0200, Michal Hocko wrote: > > > On Fri 07-10-16 14:45:35, Minchan Kim wrote: > > > > After fixing the race of highatomic page count, I

Re: [PATCH 1/4] mm: adjust reserved highatomic count

2016-10-10 Thread Minchan Kim
Hi Vlasimil, On Mon, Oct 10, 2016 at 08:57:40AM +0200, Vlastimil Babka wrote: > On 10/07/2016 04:29 PM, Minchan Kim wrote: > >>>In that case, we should adjust nr_reserved_highatomic. > >>>Otherwise, VM cannot reserve highorderatomic pageblocks any more > >>>although it doesn't reach 1% limit. It

Re: [PATCH 1/4] mm: adjust reserved highatomic count

2016-10-10 Thread Minchan Kim
Hi Vlasimil, On Mon, Oct 10, 2016 at 08:57:40AM +0200, Vlastimil Babka wrote: > On 10/07/2016 04:29 PM, Minchan Kim wrote: > >>>In that case, we should adjust nr_reserved_highatomic. > >>>Otherwise, VM cannot reserve highorderatomic pageblocks any more > >>>although it doesn't reach 1% limit. It

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Lu Baolu
Hi, On 10/11/2016 12:07 PM, Baolin Wang wrote: >>> /* >>> >> + * usb_charger_unregister() - Unregister a usb charger. >>> >> + * @uchger - the usb charger to be unregistered. >>> >> + */ >>> >> +static int usb_charger_unregister(struct usb_charger *uchger) >>> >> +{ >>> >> +

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Lu Baolu
Hi, On 10/11/2016 12:07 PM, Baolin Wang wrote: >>> /* >>> >> + * usb_charger_unregister() - Unregister a usb charger. >>> >> + * @uchger - the usb charger to be unregistered. >>> >> + */ >>> >> +static int usb_charger_unregister(struct usb_charger *uchger) >>> >> +{ >>> >> +

Re: [PATCH v14 2/4] CMDQ: Mediatek CMDQ driver

2016-10-10 Thread Jassi Brar
On 11 October 2016 at 08:10, Horng-Shyang Liao wrote: > On Thu, 2016-10-06 at 18:40 +0530, Jassi Brar wrote: >> On 6 October 2016 at 18:31, Horng-Shyang Liao wrote: >> >> > Back to our original statement, we need to flush all tasks to queue >> > in GCE

Re: [PATCH v14 2/4] CMDQ: Mediatek CMDQ driver

2016-10-10 Thread Jassi Brar
On 11 October 2016 at 08:10, Horng-Shyang Liao wrote: > On Thu, 2016-10-06 at 18:40 +0530, Jassi Brar wrote: >> On 6 October 2016 at 18:31, Horng-Shyang Liao wrote: >> >> > Back to our original statement, we need to flush all tasks to queue >> > in GCE HW; i.e. we need to use mbox_client_txdone

Re: [PATCH kernel v2] PCI: Enable access to custom VPD for Chelsio devices (cxgb3)

2016-10-10 Thread Alexey Kardashevskiy
On 11/10/16 02:23, Alexander Duyck wrote: > On Wed, Sep 28, 2016 at 10:21 PM, Alexey Kardashevskiy wrote: >> There is at least one Chelsio 10Gb card which uses VPD area to store >> some custom blocks (example below). However pci_vpd_size() returns >> the length of the first block

Re: [PATCH kernel v2] PCI: Enable access to custom VPD for Chelsio devices (cxgb3)

2016-10-10 Thread Alexey Kardashevskiy
On 11/10/16 02:23, Alexander Duyck wrote: > On Wed, Sep 28, 2016 at 10:21 PM, Alexey Kardashevskiy wrote: >> There is at least one Chelsio 10Gb card which uses VPD area to store >> some custom blocks (example below). However pci_vpd_size() returns >> the length of the first block only assuming

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 11:06, Lu Baolu wrote: > Hi, > > On 10/10/2016 02:22 PM, Baolin Wang wrote: >> When the usb gadget supporting for usb charger is ready, the usb charger >> can implement the usb_charger_plug_by_gadget() function, usb_charger_exit() >>

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 11:06, Lu Baolu wrote: > Hi, > > On 10/10/2016 02:22 PM, Baolin Wang wrote: >> When the usb gadget supporting for usb charger is ready, the usb charger >> can implement the usb_charger_plug_by_gadget() function, usb_charger_exit() >> function and dev_to_uchger()

Re: [PATCH 2/2] x86, kvm: use kvmclock to compute TSC deadline value

2016-10-10 Thread Wanpeng Li
2016-09-10 0:38 GMT+08:00 Paolo Bonzini : > > > On 09/09/2016 00:13, David Matlack wrote: >> Hi Paolo, >> >> On Tue, Sep 6, 2016 at 3:29 PM, Paolo Bonzini wrote: >>> Bad things happen if a guest using the TSC deadline timer is migrated. >>> The guest

Re: [PATCH 2/2] x86, kvm: use kvmclock to compute TSC deadline value

2016-10-10 Thread Wanpeng Li
2016-09-10 0:38 GMT+08:00 Paolo Bonzini : > > > On 09/09/2016 00:13, David Matlack wrote: >> Hi Paolo, >> >> On Tue, Sep 6, 2016 at 3:29 PM, Paolo Bonzini wrote: >>> Bad things happen if a guest using the TSC deadline timer is migrated. >>> The guest doesn't re-calibrate the TSC after migration,

Re: [PATCH v17 1/4] usb: gadget: Introduce the usb charger framework

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 10:59, Lu Baolu wrote: > Hi Baolin, > > Some review comments below. > > On 10/10/2016 02:22 PM, Baolin Wang wrote: >> This patch introduces the usb charger driver based on usb gadget that >> makes an enhancement to a power driver. It

Re: [PATCH v17 1/4] usb: gadget: Introduce the usb charger framework

2016-10-10 Thread Baolin Wang
Hi Baolu, On 11 October 2016 at 10:59, Lu Baolu wrote: > Hi Baolin, > > Some review comments below. > > On 10/10/2016 02:22 PM, Baolin Wang wrote: >> This patch introduces the usb charger driver based on usb gadget that >> makes an enhancement to a power driver. It works well in practice but >>

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Chris Caputo
On Tue, 11 Oct 2016, Liping Zhang wrote: > Yes, thanks for clarifying this. There's a bug in kernel, can you try > this patch: > > diff --git a/net/netfilter/xt_NFLOG.c b/net/netfilter/xt_NFLOG.c > index 018eed7..8c069b4 100644 > --- a/net/netfilter/xt_NFLOG.c > +++ b/net/netfilter/xt_NFLOG.c >

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Chris Caputo
On Tue, 11 Oct 2016, Liping Zhang wrote: > Yes, thanks for clarifying this. There's a bug in kernel, can you try > this patch: > > diff --git a/net/netfilter/xt_NFLOG.c b/net/netfilter/xt_NFLOG.c > index 018eed7..8c069b4 100644 > --- a/net/netfilter/xt_NFLOG.c > +++ b/net/netfilter/xt_NFLOG.c >

Good News

2016-10-10 Thread Friedrich Mayrhofer..
-- This is the second time i am sending you this mail. I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer

Good News

2016-10-10 Thread Friedrich Mayrhofer..
-- This is the second time i am sending you this mail. I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer

Re: [PATCH 04/10] i2c: i2c-mux-i2cs: Add device tree bindings

2016-10-10 Thread Peter Rosin
On 2016-10-07 17:21, Pantelis Antoniou wrote: > From: Georgi Vlaev > > Add binding document for the i2c mux driver of Juniper's I2CS FPGA. > > Signed-off-by: Georgi Vlaev > [Ported from Juniper kernel] > Signed-off-by: Pantelis Antoniou

Re: [PATCH 04/10] i2c: i2c-mux-i2cs: Add device tree bindings

2016-10-10 Thread Peter Rosin
On 2016-10-07 17:21, Pantelis Antoniou wrote: > From: Georgi Vlaev > > Add binding document for the i2c mux driver of Juniper's I2CS FPGA. > > Signed-off-by: Georgi Vlaev > [Ported from Juniper kernel] > Signed-off-by: Pantelis Antoniou > --- >

Re: [PATCH 1/5] dt-bindings: add vendor prefix for ILI Technology Corp

2016-10-10 Thread Dmitry Torokhov
On Mon, Oct 10, 2016 at 5:33 PM, Icenowy Zheng wrote: > ILI Technology Corp (a.k.a Ilitek, http://www.ilitek.com/index-e.asp ) is a > company that produces LCD driver ICs and touch screen controller ICs. Was there patch 3/5? I do not see it in my mailbox. > > Signed-off-by:

Re: [PATCH 1/5] dt-bindings: add vendor prefix for ILI Technology Corp

2016-10-10 Thread Dmitry Torokhov
On Mon, Oct 10, 2016 at 5:33 PM, Icenowy Zheng wrote: > ILI Technology Corp (a.k.a Ilitek, http://www.ilitek.com/index-e.asp ) is a > company that produces LCD driver ICs and touch screen controller ICs. Was there patch 3/5? I do not see it in my mailbox. > > Signed-off-by: Icenowy Zheng > ---

Re: [RESEND PATCH v6, 4/5] usb: Add MediaTek USB3 DRD Driver

2016-10-10 Thread Chunfeng Yun
On Mon, 2016-10-10 at 13:00 +0200, Matthias Brugger wrote: > > On 09/21/2016 07:54 AM, Chunfeng Yun wrote: > > This patch adds support for the MediaTek USB3 controller > > integrated into MT8173. It can be configured as Dual-Role > > Device (DRD), Peripheral Only and Host Only (xHCI) modes. > > >

Re: [RESEND PATCH v6, 4/5] usb: Add MediaTek USB3 DRD Driver

2016-10-10 Thread Chunfeng Yun
On Mon, 2016-10-10 at 13:00 +0200, Matthias Brugger wrote: > > On 09/21/2016 07:54 AM, Chunfeng Yun wrote: > > This patch adds support for the MediaTek USB3 controller > > integrated into MT8173. It can be configured as Dual-Role > > Device (DRD), Peripheral Only and Host Only (xHCI) modes. > > >

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Lu Baolu
Hi, On 10/10/2016 02:22 PM, Baolin Wang wrote: > When the usb gadget supporting for usb charger is ready, the usb charger > can implement the usb_charger_plug_by_gadget() function, usb_charger_exit() > function and dev_to_uchger() function by getting 'struct usb_charger' from > 'struct gadget'. >

Re: [PATCH v17 3/4] usb: gadget: Integrate with the usb gadget supporting for usb charger

2016-10-10 Thread Lu Baolu
Hi, On 10/10/2016 02:22 PM, Baolin Wang wrote: > When the usb gadget supporting for usb charger is ready, the usb charger > can implement the usb_charger_plug_by_gadget() function, usb_charger_exit() > function and dev_to_uchger() function by getting 'struct usb_charger' from > 'struct gadget'. >

linux-next: Tree for Oct 11

2016-10-10 Thread Stephen Rothwell
Hi all, Please do *not* add any v4.10 material to your linux-next included trees until v4.9-rc1 has been released i.e. the merge window closes. Changes since 20161010: Non-merge commits (relative to Linus' tree): 3095 3410 files changed, 169222 insertions(+), 98883 deletions

[git pull] vfs.git

2016-10-10 Thread Al Viro
->rename2() work from Miklos + current_time() from Deepa. The following changes since commit 08895a8b6b06ed2323cd97a36ee40a116b3db8ed: Linux 4.8-rc8 (2016-09-25 18:47:13 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git

linux-next: Tree for Oct 11

2016-10-10 Thread Stephen Rothwell
Hi all, Please do *not* add any v4.10 material to your linux-next included trees until v4.9-rc1 has been released i.e. the merge window closes. Changes since 20161010: Non-merge commits (relative to Linus' tree): 3095 3410 files changed, 169222 insertions(+), 98883 deletions

[git pull] vfs.git

2016-10-10 Thread Al Viro
->rename2() work from Miklos + current_time() from Deepa. The following changes since commit 08895a8b6b06ed2323cd97a36ee40a116b3db8ed: Linux 4.8-rc8 (2016-09-25 18:47:13 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git

RE: [PATCH 4/5] rpmsg: Driver for user space endpoint interface

2016-10-10 Thread Marek Novak
-Original Message- From: Bjorn Andersson [mailto:bjorn.anders...@linaro.org] Sent: Saturday, October 08, 2016 6:23 AM To: Ohad Ben-Cohen ; Bjorn Andersson Cc: Jonathan Corbet ; Linus Walleij ; Marek

RE: [PATCH 4/5] rpmsg: Driver for user space endpoint interface

2016-10-10 Thread Marek Novak
-Original Message- From: Bjorn Andersson [mailto:bjorn.anders...@linaro.org] Sent: Saturday, October 08, 2016 6:23 AM To: Ohad Ben-Cohen ; Bjorn Andersson Cc: Jonathan Corbet ; Linus Walleij ; Marek Novak ; Matteo Sartori ; Michal Simek ; linux-...@vger.kernel.org;

[PATCH v1 2/2] MIPS: loongson1: Add watchdog support for Loongson1C board

2016-10-10 Thread Yang Ling
The patch adds watchdog support for Loongson1C board. Signed-off-by: Yang Ling --- arch/mips/configs/loongson1c_defconfig | 4 arch/mips/include/asm/mach-loongson32/platform.h | 1 + arch/mips/loongson32/common/platform.c | 16

[PATCH v1 2/2] MIPS: loongson1: Add watchdog support for Loongson1C board

2016-10-10 Thread Yang Ling
The patch adds watchdog support for Loongson1C board. Signed-off-by: Yang Ling --- arch/mips/configs/loongson1c_defconfig | 4 arch/mips/include/asm/mach-loongson32/platform.h | 1 + arch/mips/loongson32/common/platform.c | 16

Re: [PATCH v17 1/4] usb: gadget: Introduce the usb charger framework

2016-10-10 Thread Lu Baolu
Hi Baolin, Some review comments below. On 10/10/2016 02:22 PM, Baolin Wang wrote: > This patch introduces the usb charger driver based on usb gadget that > makes an enhancement to a power driver. It works well in practice but > that requires a system with suitable hardware. > > The basic

Re: [PATCH v17 1/4] usb: gadget: Introduce the usb charger framework

2016-10-10 Thread Lu Baolu
Hi Baolin, Some review comments below. On 10/10/2016 02:22 PM, Baolin Wang wrote: > This patch introduces the usb charger driver based on usb gadget that > makes an enhancement to a power driver. It works well in practice but > that requires a system with suitable hardware. > > The basic

[PATCH v1 1/2] watchdog: loongson1: Add Loongson1 SoC watchdog driver

2016-10-10 Thread Yang Ling
Add watchdog timer specific driver for Loongson1 SoC. Signed-off-by: Yang Ling --- drivers/watchdog/Kconfig | 7 ++ drivers/watchdog/Makefile| 1 + drivers/watchdog/loongson1_wdt.c | 158 +++ 3 files changed, 166

[PATCH v1 1/2] watchdog: loongson1: Add Loongson1 SoC watchdog driver

2016-10-10 Thread Yang Ling
Add watchdog timer specific driver for Loongson1 SoC. Signed-off-by: Yang Ling --- drivers/watchdog/Kconfig | 7 ++ drivers/watchdog/Makefile| 1 + drivers/watchdog/loongson1_wdt.c | 158 +++ 3 files changed, 166 insertions(+) create mode

Re: [RESEND PATCH v6, 3/5] usb: xhci-mtk: make IPPC register optional

2016-10-10 Thread Chunfeng Yun
On Mon, 2016-10-10 at 12:55 +0200, Matthias Brugger wrote: > > On 09/21/2016 07:54 AM, Chunfeng Yun wrote: > > Make IPPC register optional to support host side of dual-role mode, > > due to it is moved into common glue layer for simplification. > > > > Signed-off-by: Chunfeng Yun

Re: [RESEND PATCH v6, 3/5] usb: xhci-mtk: make IPPC register optional

2016-10-10 Thread Chunfeng Yun
On Mon, 2016-10-10 at 12:55 +0200, Matthias Brugger wrote: > > On 09/21/2016 07:54 AM, Chunfeng Yun wrote: > > Make IPPC register optional to support host side of dual-role mode, > > due to it is moved into common glue layer for simplification. > > > > Signed-off-by: Chunfeng Yun > > --- > >

Re: [PATCH v14 2/4] CMDQ: Mediatek CMDQ driver

2016-10-10 Thread Horng-Shyang Liao
On Thu, 2016-10-06 at 18:40 +0530, Jassi Brar wrote: > On 6 October 2016 at 18:31, Horng-Shyang Liao wrote: > > > Back to our original statement, we need to flush all tasks to queue > > in GCE HW; i.e. we need to use mbox_client_txdone after > > mbox_send_message, or send

Re: [PATCH v14 2/4] CMDQ: Mediatek CMDQ driver

2016-10-10 Thread Horng-Shyang Liao
On Thu, 2016-10-06 at 18:40 +0530, Jassi Brar wrote: > On 6 October 2016 at 18:31, Horng-Shyang Liao wrote: > > > Back to our original statement, we need to flush all tasks to queue > > in GCE HW; i.e. we need to use mbox_client_txdone after > > mbox_send_message, or send tx_done once mailbox

[PATCH] staging: android: ion: Make ion_free asynchronous more actively.

2016-10-10 Thread ming.ling
From: Ming Ling So far some ion heaps such as carveout_heap, chunk_heap, system_heap have freed buffers asynchrounously. Freed buffers are placed on a free list and freed from a low priority background thread. If allocations from a particular heap fail, the free list is

[PATCH] staging: android: ion: Make ion_free asynchronous more actively.

2016-10-10 Thread ming.ling
From: Ming Ling So far some ion heaps such as carveout_heap, chunk_heap, system_heap have freed buffers asynchrounously. Freed buffers are placed on a free list and freed from a low priority background thread. If allocations from a particular heap fail, the free list is drained. But that

I Hope You Get My Message This Time

2016-10-10 Thread Friedrich Mayrhofer
This is the second time i am sending you this mail. I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer

I Hope You Get My Message This Time

2016-10-10 Thread Friedrich Mayrhofer
This is the second time i am sending you this mail. I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer

[lkp] [driver core] bea5b158ff: kobject (922508b4): tried to init an initialized object

2016-10-10 Thread kernel test robot
FYI, we noticed the following commit: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master commit bea5b158ff0da9c7246ff391f754f5f38e34577a ("driver core: add test of driver remove calls during probe") in testcase: trinity with following parameters: runtime: 300s

[lkp] [driver core] bea5b158ff: kobject (922508b4): tried to init an initialized object

2016-10-10 Thread kernel test robot
FYI, we noticed the following commit: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master commit bea5b158ff0da9c7246ff391f754f5f38e34577a ("driver core: add test of driver remove calls during probe") in testcase: trinity with following parameters: runtime: 300s

[PATCH] objtool: support '-mtune=atom' stack frame setup instruction

2016-10-10 Thread Josh Poimboeuf
>From 60c982d4d04014adb3bde1ebee6ca95320ffb213 Mon Sep 17 00:00:00 2001 Message-Id: <60c982d4d04014adb3bde1ebee6ca95320ffb213.1476150736.git.jpoim...@redhat.com> From: Josh Poimboeuf Date: Mon, 10 Oct 2016 15:24:01 -0500 Subject: [PATCH] objtool: support '-mtune=atom' stack

[PATCH] objtool: support '-mtune=atom' stack frame setup instruction

2016-10-10 Thread Josh Poimboeuf
>From 60c982d4d04014adb3bde1ebee6ca95320ffb213 Mon Sep 17 00:00:00 2001 Message-Id: <60c982d4d04014adb3bde1ebee6ca95320ffb213.1476150736.git.jpoim...@redhat.com> From: Josh Poimboeuf Date: Mon, 10 Oct 2016 15:24:01 -0500 Subject: [PATCH] objtool: support '-mtune=atom' stack frame setup

Re: tty, fbcon: use-after-free in fbcon_invert_region

2016-10-10 Thread Scot Doyle
On Fri, 7 Oct 2016, Dmitry Vyukov wrote: > On Sat, Sep 3, 2016 at 9:20 PM, Dmitry Vyukov wrote: > > Hello, > > > > The following program causes use-after-free in fbcon_invert_region: > > > >

Re: tty, fbcon: use-after-free in fbcon_invert_region

2016-10-10 Thread Scot Doyle
On Fri, 7 Oct 2016, Dmitry Vyukov wrote: > On Sat, Sep 3, 2016 at 9:20 PM, Dmitry Vyukov wrote: > > Hello, > > > > The following program causes use-after-free in fbcon_invert_region: > > > >

Re: [PATCH v8 10/16] mm/memblock: add a new function memblock_alloc_near_nid

2016-10-10 Thread Leizhen (ThunderTown)
On 2016/9/1 14:55, Zhen Lei wrote: > If HAVE_MEMORYLESS_NODES is selected, and some memoryless numa nodes are > actually exist. The percpu variable areas and numa control blocks of that > memoryless numa nodes must be allocated from the nearest available node > to improve performance. > >

Re: [PATCH v8 10/16] mm/memblock: add a new function memblock_alloc_near_nid

2016-10-10 Thread Leizhen (ThunderTown)
On 2016/9/1 14:55, Zhen Lei wrote: > If HAVE_MEMORYLESS_NODES is selected, and some memoryless numa nodes are > actually exist. The percpu variable areas and numa control blocks of that > memoryless numa nodes must be allocated from the nearest available node > to improve performance. > >

Re: [PATCH 3/3] mtd: s3c2410: parse the device configuration from OF node

2016-10-10 Thread Sergio Prado
On Fri, Oct 07, 2016 at 07:28:10PM +0300, Krzysztof Kozlowski wrote: > > +struct s3c24XX_nand_devtype_data { > > + enum s3c_cpu_type type; > > +}; > > + > > +struct s3c24XX_nand_devtype_data s3c2410_nand_devtype_data = { > > + .type = TYPE_S3C2410, > > +}; > > + > > +struct

Re: [PATCH 3/3] mtd: s3c2410: parse the device configuration from OF node

2016-10-10 Thread Sergio Prado
On Fri, Oct 07, 2016 at 07:28:10PM +0300, Krzysztof Kozlowski wrote: > > +struct s3c24XX_nand_devtype_data { > > + enum s3c_cpu_type type; > > +}; > > + > > +struct s3c24XX_nand_devtype_data s3c2410_nand_devtype_data = { > > + .type = TYPE_S3C2410, > > +}; > > + > > +struct

Re: [PATCH v2] clk: hisilicon: add CRG driver for Hi3798CV200 SoC

2016-10-10 Thread Jiancheng Xue
在 2016/9/24 9:45, Jiancheng Xue 写道: > 在 2016/9/24 1:47, Rob Herring 写道: >> On Sun, Sep 18, 2016 at 03:30:21PM +0800, Jiancheng Xue wrote: >>> Add CRG driver for Hi3798CV200 SoC. CRG(Clock and Reset >>> Generator) module generates clock and reset signals used >>> by other module blocks on SoC.

Re: [PATCH v2] clk: hisilicon: add CRG driver for Hi3798CV200 SoC

2016-10-10 Thread Jiancheng Xue
在 2016/9/24 9:45, Jiancheng Xue 写道: > 在 2016/9/24 1:47, Rob Herring 写道: >> On Sun, Sep 18, 2016 at 03:30:21PM +0800, Jiancheng Xue wrote: >>> Add CRG driver for Hi3798CV200 SoC. CRG(Clock and Reset >>> Generator) module generates clock and reset signals used >>> by other module blocks on SoC.

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Liping Zhang
2016-10-11 2:33 GMT+08:00 Chris Caputo : >> >> What numbers did you specify after --nflog-size option? >> --nflog-size 0 or ...? If you want log the whole packet to >> the ulogd, please do not specify this nflog-size option. > > Not specifying nflog-size does not appear to log the

RE: [GIT PULL 1/3] ARM: soc: exynos: Drivers for v4.9

2016-10-10 Thread Kukjin Kim
Kukjin Kim wrote: - Krzysztof's samsung email because he is not using now > > 2016. 10. 3. 21:19 Kukjin Kim wrote: > > + my samsung email > > > 2016. 10. 3. 15:48 Krzysztof Kozlowski wrote: > > > On Sun, Oct 02, 2016 at 05:25:07PM -0700, Olof

Re: kernel v4.8: iptables logs are truncated with the 4.8 kernel?

2016-10-10 Thread Liping Zhang
2016-10-11 2:33 GMT+08:00 Chris Caputo : >> >> What numbers did you specify after --nflog-size option? >> --nflog-size 0 or ...? If you want log the whole packet to >> the ulogd, please do not specify this nflog-size option. > > Not specifying nflog-size does not appear to log the whole packet...

RE: [GIT PULL 1/3] ARM: soc: exynos: Drivers for v4.9

2016-10-10 Thread Kukjin Kim
Kukjin Kim wrote: - Krzysztof's samsung email because he is not using now > > 2016. 10. 3. 21:19 Kukjin Kim wrote: > > + my samsung email > > > 2016. 10. 3. 15:48 Krzysztof Kozlowski wrote: > > > On Sun, Oct 02, 2016 at 05:25:07PM -0700, Olof Johansson wrote: > > On Mon, Sep 19,

  1   2   3   4   5   6   7   8   9   10   >