On 03/09/2016 03:29 PM, Andrey Utkin wrote:
> Hi Hans!
>
> Some improvements took place on the driver, including cleaner
> v4l2-compliance tests passing. But there's a single test failure I
> don't understand.
>
> In the code of v4l2-compliance, it seems like an API
> call CREATE_BUFS is supposed
On Fri, Mar 11, 2016 at 04:30:07PM +0900, Minchan Kim wrote:
> From: Gioh Kim
>
> The anon_inodes has already complete interfaces to create manage
> many anonymous inodes but don't have interface to get
> new inode. Other sub-modules can create anonymous inode
> without creating and mounting it's
On Thu, Mar 10, 2016 at 06:27:17AM -0800, Andi Kleen wrote:
> From: Andi Kleen
>
> Print a warning when --metric-only is specified, but the events
> define no metric. Requested by Jiri.
>
> % perf stat -e cycles --metric-only true
>
> Performance counter stats for 'true':
>
> No metrics defin
At the end of the function we check if "ret" has a negative error code,
but it seems possible that it is uninitialized.
Fixes: 12db5562e035 ('kexec: load and relocate purgatory at kernel load time')
Signed-off-by: Dan Carpenter
diff --git a/kernel/kexec_file.c b/kernel/kexec_file.c
index 503bc2d
It's basically harmless if "ref_level" isn't initialized since it's only
used for an error message, but it causes a static checker warning.
Signed-off-by: Dan Carpenter
diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
index e42aa27..39dbdcb 100644
--- a/fs/btrfs/scrub.c
+++ b/fs/btrfs/scrub.c
@@
Instead to being true/false, the "handled" is true/uninitialized.
Presumably this doesn't cause that many problems in real life because
normally we handle the IRQ.
Fixes: eea6b7cc53aa ('mfd: Add lp8788 mfd driver')
Signed-off-by: Dan Carpenter
diff --git a/drivers/mfd/lp8788-irq.c b/drivers/mfd/
Hi Minchan,
[auto build test ERROR on v4.5-rc7]
[cannot apply to next-20160310]
[if your patch is applied to the wrong git tree, please drop us a note to help
improving the system]
url:
https://github.com/0day-ci/linux/commits/Minchan-Kim/Support-non-lru-page-migration/20160311-153649
The code is checking for negative returns but it should be checking for
zero.
Fixes: aab3125c43d8 ('[media] em28xx: add support for registering multiple i2c
buses')
Signed-off-by: Dan Carpenter
---
Is -EBUSY correct? -EAGAIN?
diff --git a/drivers/media/usb/em28xx/em28xx-i2c.c
b/drivers/media/
The "msi_domain" variable is NULL here so it leads to a NULL
dereference. It looks like we actually intended to free
"middle_domain".
Fixes: e6b78f2c3e14 ('irqchip: Add the Alpine MSIX interrupt controller')
Signed-off-by: Dan Carpenter
diff --git a/drivers/irqchip/irq-alpine-msi.c b/drivers/ir
On i686 PAE enabled machine the contiguous physical area could be large
and it can cause triming down variables in below calculation in
read_vmcore() and mmap_vmcore():
tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);
Then the real size passed down is not correct any more.
Suppos
On Thu 10-03-16 15:50:14, Johannes Weiner wrote:
> Setting the original memory.limit_in_bytes hardlimit is subject to a
> race condition when the desired value is below the current usage. The
> code tries a few times to first reclaim and then see if the usage has
> dropped to where we would like it
On Thu 10-03-16 15:50:15, Johannes Weiner wrote:
> uncharge_list() does an unusual list walk because the function can
> take regular lists with dedicated list_heads as well as singleton
> lists where a single page is passed via the page->lru list node.
>
> This can sometimes lead to confusion as w
On Friday 11 March 2016 10:00 AM, Mark Brown wrote:
* PGP Signed by an unknown key
On Thu, Mar 10, 2016 at 05:42:46PM +0530, Laxman Dewangan wrote:
Remove the WAR implemented in fixed regulator to handle the
return of of_get_named_gpio().
You need to explain what a WAR is, I suspect it's som
On 03/11/16 at 04:15pm, Dave Young wrote:
> On i686 PAE enabled machine the contiguous physical area could be large
> and it can cause triming down variables in below calculation in
> read_vmcore() and mmap_vmcore():
>
> tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);
>
> Then the
On Thu, Mar 10, 2016 at 03:50:13PM -0500, Johannes Weiner wrote:
> When setting memory.high below usage, nothing happens until the next
> charge comes along, and then it will only reclaim its own charge and
> not the now potentially huge excess of the new memory.high. This can
> cause groups to sta
;
> url:
> https://github.com/0day-ci/linux/commits/Minchan-Kim/Support-non-lru-page-migration/20160311-153649
> config: x86_64-nfsroot (attached as .config)
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=x86_64
>
> All erro
On Thu, Mar 10, 2016 at 08:25:02AM +0100, Jiri Olsa wrote:
> On Thu, Mar 10, 2016 at 09:36:37AM +0900, Namhyung Kim wrote:
> > Hi Jiri,
> >
> > On Wed, Mar 09, 2016 at 09:46:41PM +0100, Jiri Olsa wrote:
> > > Currently we check sample type for ftrace:function event
> > > even if it's not created a
Hi Heiner,
Thanks for the updated set. I've renamed the feature to RGB LED class
and pushed out to devel branch of linux-leds.git. It will sit there
till the end of the upcoming merge window. There have been some
uncertainties raised related to overloading brightness syntax. so let's
better have
On Wed, 09 Mar 2016, Laxman Dewangan wrote:
> On Wednesday 02 March 2016 06:38 PM, Lee Jones wrote:
> >On Mon, 29 Feb 2016, Laxman Dewangan wrote:
> >
> >>On Friday 26 February 2016 10:05 PM, Rhyland Klein wrote:
> >>>Did you not see warnings like this when you compiled the kernel? Did you
> >>>fin
On Thu, Mar 10, 2016 at 09:39:55AM +0900, Namhyung Kim wrote:
> On Wed, Mar 09, 2016 at 09:46:42PM +0100, Jiri Olsa wrote:
> > We suppress events with attr::exclude_kernel set when
> > the event is generated, so following capture will
> > give no warning but won't produce any data:
> >
> > $ sud
On Fri, 11 Mar 2016 09:00:18 +0100
Hans Verkuil wrote:
> The reason is likely to be the tw5864_queue_setup function which has
> not been updated to handle CREATE_BUFS support correctly. It should
> look like this:
>
> static int tw5864_queue_setup(struct vb2_queue *q,
>
The function, cpufreq_quick_get, accesses the global 'cpufreq_driver' and
its fields without taking the associated lock, cpufreq_driver_lock.
Without the locking, nothing guarantees that 'cpufreq_driver' remains
consistent during the call. This patch fixes the issue by taking the lock
before acce
On Fri 11-03-16 11:34:40, Vladimir Davydov wrote:
> On Thu, Mar 10, 2016 at 03:50:13PM -0500, Johannes Weiner wrote:
> > When setting memory.high below usage, nothing happens until the next
> > charge comes along, and then it will only reclaim its own charge and
> > not the now potentially huge exc
On i686 PAE enabled machine the contiguous physical area could be large
and it can cause trimming down variables in below calculation in
read_vmcore() and mmap_vmcore():
tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);
Then the real size passed down is not correct any more.
Suppo
From: Parth Sane
diff --git a/drivers/staging/netlogic/platform_net.c
b/drivers/staging/netlogic/platform_net.c
index 7806c2b..de2c3cb 100644
--- a/drivers/staging/netlogic/platform_net.c
+++ b/drivers/staging/netlogic/platform_net.c
@@ -86,7 +86,8 @@ static void xlr_resource_init(struct resourc
* Arnaldo Carvalho de Melo wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> The following changes since commit 3a99e6db539e53cc9c79282e80f8362b0cb96ac8:
>
> perf bench mem: Prepare the x86-64 build for upstream memcpy_mcsafe()
> changes (2016-03-09 10:40:01 +0100)
>
Steve Calfee wrote:
> On Wed, Mar 9, 2016 at 11:39 AM, Felipe F. Tonello
> wrote:
>> [...]
>> This patch fixes this problem by setting the minimum usb_request's buffer
>> size
>> for the OUT endpoint as its wMaxPacketSize.
>>
>> --- a/drivers/usb/gadget/function/f_midi.c
>> +++ b/drivers/usb/gad
On 03/11/2016 02:43 AM, Martin K. Petersen wrote:
>> "Arnd" == Arnd Bergmann writes:
>
> Arnd> Looking through what other drivers do, I've found a couple of
> Arnd> patterns now. n particular, most use the SG_IO ioctl to pass down
> Arnd> commands from user space into a device specific comman
Commit-ID: 46dad054a19297af65c417c97cb920aa5bdf7e8c
Gitweb: http://git.kernel.org/tip/46dad054a19297af65c417c97cb920aa5bdf7e8c
Author: Arnaldo Carvalho de Melo
AuthorDate: Mon, 7 Mar 2016 18:48:45 -0300
Committer: Arnaldo Carvalho de Melo
CommitDate: Wed, 9 Mar 2016 10:29:03 -0300
perf
Commit-ID: 616df645d7238e45d3b369933a30fee4e4e305e2
Gitweb: http://git.kernel.org/tip/616df645d7238e45d3b369933a30fee4e4e305e2
Author: Chris Phlipot
AuthorDate: Tue, 8 Mar 2016 21:11:54 -0800
Committer: Arnaldo Carvalho de Melo
CommitDate: Wed, 9 Mar 2016 10:31:02 -0300
perf tools: Fix
Commit-ID: d7b617f51be4fffa3cbb5adf6d4258e616dce294
Gitweb: http://git.kernel.org/tip/d7b617f51be4fffa3cbb5adf6d4258e616dce294
Author: Jiri Olsa
AuthorDate: Wed, 9 Mar 2016 11:04:17 +0100
Committer: Arnaldo Carvalho de Melo
CommitDate: Wed, 9 Mar 2016 10:37:26 -0300
perf tools: Pass pe
Commit-ID: 9eb42dee2b11635174c74a7996934b6ca18f2179
Gitweb: http://git.kernel.org/tip/9eb42dee2b11635174c74a7996934b6ca18f2179
Author: Steven Rostedt
AuthorDate: Fri, 26 Feb 2016 18:13:28 -0500
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:27:41 -0300
tools lib tr
Commit-ID: ea8f75f981918c5946fc4029acdc86707fa901c1
Gitweb: http://git.kernel.org/tip/ea8f75f981918c5946fc4029acdc86707fa901c1
Author: Jiri Olsa
AuthorDate: Tue, 8 Mar 2016 19:42:30 +0100
Committer: Arnaldo Carvalho de Melo
CommitDate: Wed, 9 Mar 2016 10:42:22 -0300
perf tools: Omit un
Commit-ID: f4954cfb1cda4cf0abf36d23213c702e94666c3f
Gitweb: http://git.kernel.org/tip/f4954cfb1cda4cf0abf36d23213c702e94666c3f
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:46:56 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:45:36 -0300
perf tools: Fix
Commit-ID: e12b202f8fb9b62a3997cad8e93401f85293390c
Gitweb: http://git.kernel.org/tip/e12b202f8fb9b62a3997cad8e93401f85293390c
Author: Jiri Olsa
AuthorDate: Thu, 10 Mar 2016 17:41:13 +0100
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:33:19 -0300
perf jitdump: Bui
Hi,
Please ignore the previous patch. I’ll be sending in one soon again since the
earlier one sent more warning. Apologies for any inconvenience.
Regards,
Parth Sane
> On 11-Mar-2016, at 2:13 PM, laerdevstud...@gmail.com wrote:
>
> From: Parth Sane
>
> diff --git a/drivers/staging/netlogic/plat
Commit-ID: aec13a7ec78d9322a348fb26940097b0bdfef1bd
Gitweb: http://git.kernel.org/tip/aec13a7ec78d9322a348fb26940097b0bdfef1bd
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:46:58 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:45:48 -0300
perf tools: Fix
Commit-ID: 4945cf2aa1ed61994c158f22f26ea6101059a8d4
Gitweb: http://git.kernel.org/tip/4945cf2aa1ed61994c158f22f26ea6101059a8d4
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:46:57 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:45:44 -0300
perf tools: Add
Commit-ID: a515d8ff7085d5e9fde867f2048b8da36b95dc51
Gitweb: http://git.kernel.org/tip/a515d8ff7085d5e9fde867f2048b8da36b95dc51
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:46:59 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:45:59 -0300
perf tools: Rem
Commit-ID: 325a62834e81452d2a6e253444022cf493bbabfc
Gitweb: http://git.kernel.org/tip/325a62834e81452d2a6e253444022cf493bbabfc
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:47:00 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:46:04 -0300
perf hists brow
Commit-ID: 86e3ee5224c17b7967aac39aa15539393c144de7
Gitweb: http://git.kernel.org/tip/86e3ee5224c17b7967aac39aa15539393c144de7
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:47:01 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:46:08 -0300
perf tools: Rem
Commit-ID: f7fb538afea55383a9383dac5c56887c601af5f4
Gitweb: http://git.kernel.org/tip/f7fb538afea55383a9383dac5c56887c601af5f4
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 22:47:02 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:46:13 -0300
perf tools: Rec
Commit-ID: 078b8d4a406fa8ce4a3c9d5145c27be1ed2b1dfd
Gitweb: http://git.kernel.org/tip/078b8d4a406fa8ce4a3c9d5145c27be1ed2b1dfd
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 23:20:51 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:47:19 -0300
perf tools: Add
On 03/11/2016 03:36 AM, Martin K. Petersen wrote:
>> "Yaniv" == Yaniv Gardi writes:
>
> Yaniv> V8: fixed cyclic dependency by removing ufs_quirk.c that was
> Yaniv> previously added in V7 06/17, and moving its code into ufshcd.c
>
> Patch 6 is now different yet it retains Reviewed-by: tags f
* Hector Marco-Gisbert wrote:
> Currently on i386 and on X86_64 when emulating X86_32 in legacy mode, only
> the stack and the executable are randomized but not other mmapped files
> (libraries, vDSO, etc.). This patch enables randomization for the
> libraries, vDSO and mmap requests on i386 and
This patch adds uc match for debug port by:
1)Enables uc match of debug port when initializing gmac
2)Enables uc match of mac address register2
Signed-off-by: Daode Huang
Signed-off-by: Peng Li
---
changlog:
v2: fix the SoB name and code sytle according to Sergei .
---
drivers/net/ethernet/hisil
Commit-ID: 6962ccb37b50366014074aec6fd14497cf719642
Gitweb: http://git.kernel.org/tip/6962ccb37b50366014074aec6fd14497cf719642
Author: Namhyung Kim
AuthorDate: Thu, 10 Mar 2016 00:14:50 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:47:37 -0300
perf hists bro
Commit-ID: 54b5091606c18f68a7fc8b4ab03ac4592c7d2922
Gitweb: http://git.kernel.org/tip/54b5091606c18f68a7fc8b4ab03ac4592c7d2922
Author: Andi Kleen
AuthorDate: Thu, 3 Mar 2016 15:57:36 -0800
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:49:40 -0300
perf stat: Implem
Commit-ID: 6b45f7b2a37b0e00693985fd0abfc8e0319f91ce
Gitweb: http://git.kernel.org/tip/6b45f7b2a37b0e00693985fd0abfc8e0319f91ce
Author: Andi Kleen
AuthorDate: Thu, 3 Mar 2016 15:57:35 -0800
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:49:06 -0300
perf stat: Docume
Hi Dan,
On 2016/03/11 at 16:07, Dan Carpenter wrote:
> At the end of the function we check if "ret" has a negative error code,
> but it seems possible that it is uninitialized.
>
> Fixes: 12db5562e035 ('kexec: load and relocate purgatory at kernel load time')
> Signed-off-by: Dan Carpenter
>
> di
* Kees Cook wrote:
> On Thu, Mar 10, 2016 at 12:53 PM, Arjan van de Ven
> wrote:
> >> Arjan, or other folks, can you remember why x86_32 disabled mmap
> >> randomization here? There doesn't seem to be a good reason for it that
> >> I see.
> >
> >
> > for unlimited stack it got really messy with
Commit-ID: 599a2f38a989a79df99838f22cb607f5e2b5b56c
Gitweb: http://git.kernel.org/tip/599a2f38a989a79df99838f22cb607f5e2b5b56c
Author: Namhyung Kim
AuthorDate: Wed, 9 Mar 2016 23:20:53 +0900
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:48:02 -0300
perf hists brow
There are some differences in hilink status defination between
v1 and v2 chips.
for v1 chip, all ports connected to the same hilink share the same
hilink status register bit.
but for v2, all ports have separately hilink status register bit. And
the register addr is also changed.
So this patch fixes
Commit-ID: 206cab651d07563d766c7f4cb73f858c5df3dec5
Gitweb: http://git.kernel.org/tip/206cab651d07563d766c7f4cb73f858c5df3dec5
Author: Andi Kleen
AuthorDate: Thu, 3 Mar 2016 15:57:37 -0800
Committer: Arnaldo Carvalho de Melo
CommitDate: Thu, 10 Mar 2016 16:50:47 -0300
perf stat: Add --
from: Sheng Li
Service gmacs can not set mac add, this patch will fix the bug.
Signed-off-by: Daode Huang
Signed-off-by: Sheng Li
---
drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c | 19 +--
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/drivers/net/etherne
In V2 chip, when sending mamagement packets, the driver should
config the port id to BD descs.
Signed-off-by: Daode Huang
Signed-off-by: Sheng Li
---
v2: add space after /* and before */.
---
drivers/net/ethernet/hisilicon/hns/hnae.h | 3 +++
drivers/net/ethernet/hisilicon/hns/hns_ae_ad
Hi Dave,
This patch series are hisilicon network driver bug fix.
please merge them to the net repo.
Thanks
Daode Huang
---
changlog
v2: some minor change according to
MBR Sergei in
[patch 3/6] [patch 4/6].
v1: initial version.
Daode Huang (6):
net: hns: bug fix about the overflow of
When set MTU to the minimum value 68, there are increasing number
of error packets occur, which is caused by the overflowed value of
mss. This patch fix the bug.
Signed-off-by: Daode Huang
---
drivers/net/ethernet/hisilicon/hns/hns_enet.c | 17 -
1 file changed, 8 insertions(+),
In V1 chip, common_poll should check and clean fbd pkts, because it
can not pend irq to clean them if there is no new pkt comes in.
But V2 chip hw fixes this bug, and will pend irq itself to do this.
So, for V2 chip, we set ring_data->fini_process to NULL.
Signed-off-by: Daode Huang
Signed-off-by
I need your assistance in executing a profitable project ... Please respond for
detailed info
On 10.03.2016 01:48, SeongJae Park wrote:
This patchset aims to add Korean translation of memory-barriers document.
The patchset starts from fixing minor and trivial problems in the original
document that found during translation. After that, the final patch adds the
Korean translation of the
The problem is Linux registers pm_power_off = efi_power_off
only if we are in hardware reduced mode. Actually, what we also
want is to do this when ACPI S5 is simply not supported on
non-legacy platforms. That should handle both the HW reduced mode,
and the HW-full mode where the DSDT fails to supp
On Fri, 2016-03-11 at 11:25 +0800, Kejian Yan wrote:
> When we use ethtool to retrieves or configure the receive flow hash
> indirection table, ethtool needs to call .get_rxnfc to get the ring
> number
> so this patchset implements the .get_rxnfc and fixes the bug that we
> can
> not get the tatal
The evtchn_fifo_cpu_notification() hotplug callback lacks handling of
the CPU_UP_CANCELED case. That means, if CPU_UP_PREPARE fails, the
handle of the fifo events is not dropped.
Add handling for CPU_UP_CANCELED transition to drop the fifo events
handle.
Cc: Konrad Rzeszutek Wilk
Cc: Boris Ostro
* Toshi Kani wrote:
> MTRR manages PAT initialization as it implements a rendezvous
> handler that initializes PAT as part of MTRR initialization.
>
> When CPU does not support MTRR, ex. qemu32 virtual CPU, MTRR
> simply skips PAT init, which causes PAT left enabled without
> initialization. [.
From: Parth Sane
diff --git a/drivers/staging/netlogic/platform_net.c
b/drivers/staging/netlogic/platform_net.c
index 7806c2b..daee1b2 100644
--- a/drivers/staging/netlogic/platform_net.c
+++ b/drivers/staging/netlogic/platform_net.c
@@ -86,7 +86,8 @@ static void xlr_resource_init(struct resourc
Currently syscon does not provide an abstraction to access a
register from syscon reference like below
ocotp-cfg1 = <&ocotp 0x20>
syscon_regmap_read_from_offset provides a generic abstraction to
access a register from syscon reference as above. It allows to
specify the node and node name of phand
Add OCROM node and introduce phandles to OCROM, MSCM and NVMEM
OCOTP for use by the Vybrid SoC bus driver.
Signed-off-by: Sanchayan Maity
---
arch/arm/boot/dts/vfxxx.dtsi | 12 +++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot
This adds a SoC driver to be used by Freescale Vybrid SoC's.
Driver utilises syscon and nvmem consumer API's to get the
various register values needed and sysfs exposes the SoC specific
properties.
A sample output from Colibri Vybrid VF61 is below:
root@colibri-vf:~# cd /sys/bus/soc/devices/soc0
Add device tree node for the OCOTP peripheral on Vybrid.
Signed-off-by: Sanchayan Maity
---
arch/arm/boot/dts/vfxxx.dtsi | 16
1 file changed, 16 insertions(+)
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi
index 5e49fbd..db9157e 100644
--- a/arch/arm/
Hello,
This patchset implements SoC bus support for Freescale Vybrid platform,
implementing the following
https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-devices-soc
This a reworked version of an older patchset series posted in June 2015
which was at v5 then [1]. Since the NVMEM framew
* Andy Lutomirski wrote:
> On Thu, Mar 10, 2016 at 6:59 AM, Borislav Petkov wrote:
> > On Thu, Mar 10, 2016 at 03:31:43PM +0200, Andy Shevchenko wrote:
> >> Looks like it lacks that one.
> >>
> >> # grep -i fxsr /proc/cpuinfo; echo $?
> >> 1
> >
> > Ok, so looking at where the warning comes fro
On 2016/3/11 15:30, yalin wang wrote:
>
>> On Mar 11, 2016, at 15:23, Lu Bing wrote:
>>
>> From: l00215322
>>
>> Many android devices have zram,so we should add "MM_SWAPENTS" in tasksize.
>> Refer oom_kill.c,we add pte&pmd also.
>>
>> Reviewed-by: Chen Feng
>> Reviewed-by: Fu Jun
>> Reviewed
The mvneta_percpu_notifier() hotplug callback lacks handling of the
CPU_DOWN_FAILED case. That means, if CPU_DOWN_PREPARE failes, the
driver is not well configured on the CPU.
Add handling for CPU_DOWN_FAILED[_FROZEN] hotplug notifier transition
to setup the driver.
Cc: Thomas Petazzoni
Cc: net.
On 3/10/2016 5:47 PM, Dinh Nguyen wrote:
On Thu, Mar 10, 2016 at 3:13 AM, Giuseppe CAVALLARO
wrote:
On 3/9/2016 5:31 PM, Dinh Nguyen wrote:
On Wed, Mar 9, 2016 at 8:53 AM, Giuseppe CAVALLARO
wrote:
Hi Tomeu, Dinh, Andreas
I need a sum and help from you to go ahead on the
tx timeout.
The
On Friday 11 March 2016 02:09 PM, Lee Jones wrote:
On Wed, 09 Mar 2016, Laxman Dewangan wrote:
On Wednesday 02 March 2016 06:38 PM, Lee Jones wrote:
On Mon, 29 Feb 2016, Laxman Dewangan wrote:
On Friday 26 February 2016 10:05 PM, Rhyland Klein wrote:
Did you not see warnings like this when
On Thu, Mar 10, 2016 at 09:45:45PM -0700, Toshi Kani wrote:
> Since 'commit 9cd25aac1f44 ("x86/mm/pat: Emulate PAT when it
> is disabled")', we emulate a PAT table when PAT is disabled.
> This requires pat_init() be called even if PAT is disabled,
> which revealed a long standing issue that PAT is
* Ingo Molnar wrote:
>
> * Toshi Kani wrote:
>
> > MTRR manages PAT initialization as it implements a rendezvous
> > handler that initializes PAT as part of MTRR initialization.
> >
> > When CPU does not support MTRR, ex. qemu32 virtual CPU, MTRR
> > simply skips PAT init, which causes PAT l
Commit-ID: 143d36a33b4d59a56bb8e913a17a105578fd3237
Gitweb: http://git.kernel.org/tip/143d36a33b4d59a56bb8e913a17a105578fd3237
Author: Dan Carpenter
AuthorDate: Fri, 11 Mar 2016 11:14:43 +0300
Committer: Thomas Gleixner
CommitDate: Fri, 11 Mar 2016 10:06:55 +0100
irqchip/irq-alpine-msi
On Fri, Mar 11, 2016 at 09:42:39AM +0100, Michal Hocko wrote:
> On Fri 11-03-16 11:34:40, Vladimir Davydov wrote:
> > On Thu, Mar 10, 2016 at 03:50:13PM -0500, Johannes Weiner wrote:
> > > When setting memory.high below usage, nothing happens until the next
> > > charge comes along, and then it wil
From: Parth Sane
diff --git a/drivers/staging/netlogic/platform_net.c
b/drivers/staging/netlogic/platform_net.c
index 7806c2b..daee1b2 100644
--- a/drivers/staging/netlogic/platform_net.c
+++ b/drivers/staging/netlogic/platform_net.c
@@ -86,7 +86,8 @@ static void xlr_resource_init(struct resourc
Hi,
I forgot to add the signed off part in the patch please ignore the previous
patches I have sent. Please bear with a kernel newbie.
Regards,
Parth Sane
> On 11-Mar-2016, at 2:45 PM, laerdevstud...@gmail.com wrote:
>
> From: Parth Sane
>
> diff --git a/drivers/staging/netlogic/platform_net.c
On Fri, Mar 11, 2016 at 04:52:43PM +0800, Xunlei Pang wrote:
> Hi Dan,
>
> On 2016/03/11 at 16:07, Dan Carpenter wrote:
> > At the end of the function we check if "ret" has a negative error code,
> > but it seems possible that it is uninitialized.
> >
> > Fixes: 12db5562e035 ('kexec: load and relo
On Friday 11 March 2016 01:11 PM, Jiancheng Xue wrote:
Add hisilicon spi-nor flash controller driver
Signed-off-by: Binquan Peng
Signed-off-by: Jiancheng Xue
Acked-by: Rob Herring
Reviewed-by: Ezequiel Garcia
---
change log
v8:
Fixed issues pointed by Ezequiel Garcia and Brian Norris.
Move
On Fri, Mar 11, 2016 at 09:18:25AM +0100, Michal Hocko wrote:
> On Thu 10-03-16 15:50:14, Johannes Weiner wrote:
...
> > @@ -5037,9 +5040,36 @@ static ssize_t memory_max_write(struct
> > kernfs_open_file *of,
> > if (err)
> > return err;
> >
> > - err = mem_cgroup_resize_limit(
The action argument of the hotplug transition switch case is masked
with '0xf' to map CPU_XXX_FROZEN hotplug transition on corresponding
non frozen hotplug transitions. There is a global define
CPU_TASKS_FROZEN used as mask for frozen hotplug transitions.
Use '~CPU_TASKS_FROZEN' instead of '0xf'.
Hello,
On Wed, Jan 13, 2016 at 09:51:28AM +0100, Marc Kleine-Budde wrote:
> Hello,
>
> I'm on a ARMv5 (freescale mx25) and seeing this ftrace bug during bootup:
>
> > [0.059235] [ cut here ]
> > [0.059449] WARNING: CPU: 0 PID: 0 at kernel/trace/ftrace.c:1938
> >
From: Parth Sane
Fixed netlogic checkpatch multiple assignment warning in platform_net.c
Signed-off-by: Parth Sane
---
drivers/staging/netlogic/platform_net.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/netlogic/platform_net.c
b/drivers/staging/netlog
On Thu, Mar 10, 2016 at 09:45:46PM -0700, Toshi Kani wrote:
> MTRR manages PAT initialization as it implements a rendezvous
> handler that initializes PAT as part of MTRR initialization.
>
> When CPU does not support MTRR, ex. qemu32 virtual CPU, MTRR
> simply skips PAT init, which causes PAT left
This allows CONFIG_CPU_BIG_ENDIAN=y to build correctly out of the box,
w/o any other tweaks.
Cc: Noam Camus
Cc: Alexey Brodkin
Cc: Anton Kolesov
Signed-off-by: Vineet Gupta
---
arch/arc/Makefile | 4
1 file changed, 4 insertions(+)
diff --git a/arch/arc/Makefile b/arch/arc/Makefile
inde
Vineet Gupta (2):
ARC: [BE] Select correct CROSS_COMPILE prefix
ARC: [*defconfig] No need to specify CONFIG_CROSS_COMPILE
arch/arc/Makefile | 4
arch/arc/configs/axs101_defconfig | 1 -
arch/arc/configs/axs103_defconfig | 1 -
arch/arc/configs/a
The problem is with CONFIG_CPU_BIG_ENDIAN=y we still needed .config
fixup to override the the defconfig prefix to arceb-linux-
So remove these from defconfig and let user pass this via CROSS_COMPILE
environment var or use the default for ENDIAN (per previous patch)
No other arch carries them in d
Add device HID AMDI0020 to match the AMD ACPI Vendor ID (AMDI) as
registered in http://www.uefi.org/acpi_id_list, and the UART
controller on future AMD paltform will use the HID instead of AMD0020.
Signed-off-by: Wang Hongcheng
---
drivers/acpi/acpi_apd.c | 1 +
1 file changed, 1 insertion(+)
d
* Rich Felker wrote:
> No, it doesn't work. Cancellability of the target thread at the time
> of the cancellation request (when you would decide whether or not to
> send the signal) has no relation to cancellability at the time of
> calling the cancellation point. Consider 2 threads A and B and
On Fri, 11 Mar 2016 11:54:52 +0530
Vinod Koul wrote:
> On Wed, Mar 09, 2016 at 11:14:34AM +0100, Boris Brezillon wrote:
> > > > > > > + * struct sun4i_dma_chan_config - DMA channel config
> > > > > > > + *
> > > > > > > + * @para: contains information about block size and time before
> > > > > >
On Fri, 11 Mar 2016 11:56:07 +0530
Vinod Koul wrote:
> On Wed, Mar 09, 2016 at 12:06:27PM +0100, Boris Brezillon wrote:
> > On Tue, 8 Mar 2016 08:25:47 +0530
> > Vinod Koul wrote:
> > >
> > > Why does dmaengine need to wait? Can you explain that
> >
> > I don't have an answer for that one, but
On Fri, Mar 11, 2016 at 10:08:40AM +0100, Ingo Molnar wrote:
> So yes, this needs to be fixed too.
Yes indeed. So the diff below seems to work with Bryan's simple test
case.
Bryan, can you confirm on your box pls?
---
diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c
index dea
Am 11.03.2016 10:19, schrieb Dan Carpenter:
> On Fri, Mar 11, 2016 at 04:52:43PM +0800, Xunlei Pang wrote:
>> Hi Dan,
>>
>> On 2016/03/11 at 16:07, Dan Carpenter wrote:
>>> At the end of the function we check if "ret" has a negative error code,
>>> but it seems possible that it is uninitialized.
On Thu, Mar 10, 2016 at 12:30:44PM -0500, Stefan Berger wrote:
> > Some might want to use this in a way that the created virtual device
> > is not closed when /dev/vtpmx is closed.
>
> I don't see that happening. If you want the device pair to stay around after
> an application terminates, you hav
Hi Thierry,
On Thu, 10 Mar 2016 18:54:38 +0100
Thierry Reding wrote:
> On Mon, Mar 07, 2016 at 08:34:19AM -0800, Doug Anderson wrote:
> > Thierry,
> >
> > On Thu, Feb 25, 2016 at 3:14 PM, Doug Anderson wrote:
> > > So just to summarize:
> > >
> > > * Add pwm_get_state(), pwm_apply_state(), pwm
1 - 100 of 727 matches
Mail list logo