On Tue, May 16, 2017 at 10:49 PM, Dmitry Vyukov wrote:
> On Mon, May 15, 2017 at 11:23 PM, Joonsoo Kim wrote:
>>> >
>>> > Hello, all.
>>> >
>>> > This is an attempt to recude memory consumption of KASAN. Please see
>>> > following description to get the more information.
>>> >
>>> > 1. What is pe
Sync (copy) the following v4.12 kernel headers to the tooling headers:
arch/x86/include/asm/disabled-features.h:
arch/x86/include/uapi/asm/kvm.h:
arch/powerpc/include/uapi/asm/kvm.h:
arch/s390/include/uapi/asm/kvm.h:
arch/arm/include/uapi/asm/kvm.h:
arch/arm64/include/uapi/asm/kvm.h:
On Wed, May 24, 2017 at 08:50:39AM +0200, Greg Kroah-Hartman wrote:
> On Tue, May 23, 2017 at 09:01:05PM -0700, Guenter Roeck wrote:
> > On 05/23/2017 01:08 PM, Greg Kroah-Hartman wrote:
> > > This is the start of the stable review cycle for the 4.4.70 release.
> > > There are 103 patches in this s
* Namhyung Kim wrote:
> Hi Ingo,
>
> Please consider pulling the perf tooling changes below. Build tested
> on Ubuntu, Fedora and Archlinux. I found a problem during `perf test`
> but it seems unrelated to this series. Will take a look it later.
>
> Thanks,
> Namhyung
>
>
> The following
On Wed, May 24, 2017 at 01:25:45PM +0800, kernel test robot wrote:
> [ 15.697784] BUG: using smp_processor_id() in preemptible [] code:
> swapper/0/1
> [ 15.698793] caller is debug_smp_processor_id+0x1c/0x1e
> [ 15.699461] CPU: 0 PID: 1 Comm: swapper/0 Not tainted
> 4.12.0-rc2-0010
On Tue, May 23, 2017 at 09:01:05PM -0700, Guenter Roeck wrote:
> On 05/23/2017 01:08 PM, Greg Kroah-Hartman wrote:
> > This is the start of the stable review cycle for the 4.4.70 release.
> > There are 103 patches in this series, all will be posted as a response
> > to this one. If anyone has any
Add a watchdog driver for Socionext UniPhier series SoC.
Note that the timeout value for this device must be a power
of 2 because of the specification.
Signed-off-by: Keiji Hayashibara
---
.../devicetree/bindings/watchdog/uniphier-wdt.txt | 20 ++
Documentation/watchdog/watchdog-parameters.txt
Add nodes of watchdog timer for UniPhier LD11 and LD20 SoC.
The watchdog timer is included in sysctrl.
Signed-off-by: Keiji Hayashibara
---
arch/arm64/boot/dts/socionext/uniphier-ld11.dtsi | 4
arch/arm64/boot/dts/socionext/uniphier-ld20.dtsi | 4
2 files changed, 8 insertions(+)
diff
This series adds support for watchdog timer implemented on UniPhier LD11 and
LD20 SoCs. This driver supports watchdog and system reset for SoCs.
Keiji Hayashibara (2):
watchdog: uniphier: add UniPhier watchdog driver
arm64: dts: uniphier: add watchdog node for LD11 and LD20
.../devicetree/bi
On 05/23/2017 04:49 PM, Anshuman Khandual wrote:
> On 05/23/2017 02:08 PM, Vlastimil Babka wrote:
>> On 05/23/2017 09:02 AM, Christoph Hellwig wrote:
>>> On Mon, May 22, 2017 at 02:11:49PM -0700, Andrew Morton wrote:
On Mon, 22 May 2017 16:47:42 +0530 Anshuman Khandual
wrote:
>
* Namhyung Kim wrote:
> The --inline option is to show inlined functions in callchains.
>
> For example,
>
> $ perf script
> a.out 5644 11611.467597: 309961 cycles:u:
> 790 main (/home/namhyung/tmp/perf/a.out)
>20511 __libc_start_main (/usr/lib
On Tue, May 23, 2017 at 10:05:14PM -0600, Angus Ainslie wrote:
> On 2017-05-23 13:52, Maxime Ripard wrote:
> >
> > Ok, good.
> >
> > If you unrevert those patches, and add clk_ignore_unused to the kernel
> > command line, is it still broken?
> >
> > Maxime
>
>
> If I use the clk_ignore_unused
Fixes the warning:
arch/x86/kvm/emulate.c:4018:12: warning: stack frame size of 1080 bytes in
function
'em_fxrstor' [-Wframe-larger-than=]
static int em_fxrstor(struct x86_emulate_ctxt *ctxt)
^
Found with CONFIG_FRAME_WARN set to 1024.
Signed-off-by: Nick Desaulniers
---
arch/
* Kirill A. Shutemov wrote:
> On Mon, May 01, 2017 at 02:00:53PM +0200, Ingo Molnar wrote:
> > - Continued Intel 5-level paging enablement: in particular the conversion
> >of x86 GUP to the generic GUP code. (Kirill A. Shutemov)
> >
> ...
> >
> > I'd like to draw special attention to thi
From: Milian Wolff
I just hit a segfault when doing `perf report -g srcline`.
Valgrind pointed me at this code as the culprit:
==8359== Invalid read of size 8
==8359==at 0x3096D9: map__rip_2objdump (map.c:430)
==8359==by 0x2FC1A3: match_chain_srcline (callchain.c:645)
==8359==by 0x2F
From: Milian Wolff
The very last inlined frame, i.e. the one furthest away from the
non-inlined frame, was silently dropped. This is apparent when
comparing the output of `perf script` and `addr2line`:
~~
$ perf script --inline
...
a.out 26722 80836.309329: 72425 cycles:
The __hpp__sort_acc() sorts entries using callchain depth in order to
put callers above in children mode. But it assumed the callchain order
was callee-first. Now default (for children) is caller-first so the
order of entries is reverted.
For example, consider following case.
$ perf report --
The --inline option is to show inlined functions in callchains.
For example,
$ perf script
a.out 5644 11611.467597: 309961 cycles:u:
790 main (/home/namhyung/tmp/perf/a.out)
20511 __libc_start_main (/usr/lib/libc-2.25.so)
8ba _
From: Milian Wolff
As the documentation for dwfl_frame_pc says, frames that
are no activation frames need to have their program counter
decremented by one to properly find the function of the caller.
This fixes many cases where perf report currently attributes
the cost to the next line. I.e. I h
From: Milian Wolff
When a filename was found in addr2line it was duplicated via strdup
but never freed. Now we pass NULL and handle this gracefully in
addr2line.
Detected by Valgrind:
==16331== 1,680 bytes in 21 blocks are definitely lost in loss record 148 of 220
==16331==at 0x4C2AF1F: mal
Hi Ingo,
Please consider pulling the perf tooling changes below. Build tested
on Ubuntu, Fedora and Archlinux. I found a problem during `perf test`
but it seems unrelated to this series. Will take a look it later.
Thanks,
Namhyung
The following changes since commit 88b0193d9418c00340e45e0a91
From: Milian Wolff
So far, the inlined nodes where only reversed when we built perf
against libbfd. If that was not available, the addr2line fallback
code path was missing the inline_list__reverse call.
Now we always add the nodes in the correct order within
inline_list__append. This removes the
On 05/23/2017 01:17 PM, Gang He wrote:
This patch will fix a static code checker warning, which looks
like below,
fs/ocfs2/inode.c:179 ocfs2_iget()
warn: passing zero to 'ERR_PTR'
this warning was caused by the
commit d56a8f32e4c6 ("ocfs2: check/fix inode block for online file check").
after app
On Tue, 23 May 2017, Steven Rostedt wrote:
> On Tue, 23 May 2017 22:48:19 +0200 (CEST)
> Thomas Gleixner wrote:
>
>
> > It's not KPROBES, it's the new fangled ftrace trampoline code. I
> > added a few printks. All the leaked W+X mappings are allocated via
> > this callchain:
>
> The trampoline
On Mon, May 22, 2017 at 05:00:29PM +0300, Andrey Ryabinin wrote:
>
>
> On 05/19/2017 04:53 AM, Joonsoo Kim wrote:
> > On Wed, May 17, 2017 at 03:17:13PM +0300, Andrey Ryabinin wrote:
> >> On 05/16/2017 04:16 AM, js1...@gmail.com wrote:
> >>> From: Joonsoo Kim
> >>>
> >>> Hello, all.
> >>>
> >>>
The Linksys WRT3200ACM (Rango) is the lates Armada-385 based router in
the Linksys WRT AC Series which got released in October 2016.
Key differences to the earlier Armada-385 based devices in the series is
a bigger flash chip, next generation wireless modules (Marvell 88W8964)
in the mini pcie slo
On Wed, 24 May 2017 03:37:53 +0200
Andrew Lunn wrote:
> Hi Ralph
>
> > Changes since v1:
> >
> > - Use non-removable with the sdhci node
>
> ..
>
> > +
> > +&sdhci {
> > + pinctrl-names = "default";
> > + pinctrl-0 = <&sdhci_pins>;
> > + no-1-8-v;
> > + broken-cd;
> > + wp-inver
> -Original Message-
> From: Florian Fainelli [mailto:f.faine...@gmail.com]
> Sent: Tuesday, May 23, 2017 9:12 PM
> To: Andrew Lunn ; Bogdan Purcareata
>
> Cc: net...@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 1/2] net: phy: Update get_phy_c45_ids for Cortina PHYs
On Mon, May 22, 2017 at 08:02:36AM +0200, Dmitry Vyukov wrote:
> On Fri, May 19, 2017 at 3:53 AM, Joonsoo Kim wrote:
> > On Wed, May 17, 2017 at 03:17:13PM +0300, Andrey Ryabinin wrote:
> >> On 05/16/2017 04:16 AM, js1...@gmail.com wrote:
> >> > From: Joonsoo Kim
> >> >
> >> > Hello, all.
> >> >
When compiling with -Wsuggest-attribute=format, gcc complains that some
functions in kernel/printk/printk_safe.c transmit their argument to
printf-like functions without having a printf attribute. Silence these
warnings by adding relevant __printf attributes.
Signed-off-by: Nicolas Iooss
Acked-by
is_first_page() is only called from the macro VM_BUG_ON_PAGE() which is
only compiled in as a runtime check when CONFIG_DEBUG_VM is set,
otherwise is checked at compile time and not actually compiled in.
Fixes the following warning, found with Clang:
mm/zsmalloc.c:472:12: warning: function 'is_fi
On 24/05/17 08:43, Chris Packham wrote:
> Hi Andy,
>
> On 24/05/17 06:28, Andy Shevchenko wrote:
>> On Tue, May 23, 2017 at 7:03 AM, Chris Packham
>> wrote:
>>> By using a gpio_desc and gpiod_set_value() instead of a numeric gpio and
>>> gpio_set_value() the gpio flags are taken into account. Thi
于 2017年5月24日 GMT+08:00 下午1:34:58, Chen-Yu Tsai 写到:
>On Wed, May 24, 2017 at 1:28 PM, Icenowy Zheng wrote:
>>
>>
>> 于 2017年5月24日 GMT+08:00 下午1:24:29, Chen-Yu Tsai 写到:
>>>On Thu, May 18, 2017 at 12:43 AM, Icenowy Zheng
>>>wrote:
As we have already the support for the TV encoder on Allwinne
On Wed, May 24, 2017 at 1:28 PM, Icenowy Zheng wrote:
>
>
> 于 2017年5月24日 GMT+08:00 下午1:24:29, Chen-Yu Tsai 写到:
>>On Thu, May 18, 2017 at 12:43 AM, Icenowy Zheng
>>wrote:
>>> As we have already the support for the TV encoder on Allwinner H3,
>>add
>>> the display engine pipeline device tree nodes
smp_processor_id() can result in a function call if CONFIG_DEBUG_PREEMPT
is enabled. It would be much straight forward to use this_rq() macro
instead.
Signed-off-by: Viresh Kumar
---
kernel/sched/sched.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/sched.h b/k
update_freq is always true and there is no need to pass it to
update_cfs_rq_load_avg(). Remove it.
Signed-off-by: Viresh Kumar
---
kernel/sched/fair.c | 15 +++
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index e519f6c03fe9.
weighted_cpuload() uses the cpu number passed to it get pointer to the
runqueue. Almost all callers of weighted_cpuload() already have the rq
pointer with them and can send that directly to weighted_cpuload(). In
some cases the callers actually get the CPU number by doing cpu_of(rq).
It would be s
Rearrange pick_next_task_fair() a bit to avoid checking
cfs_rq->nr_running twice for the case where FAIR_GROUP_SCHED is enabled
and the previous task doesn't belong to the fair class.
Signed-off-by: Viresh Kumar
---
kernel/sched/fair.c | 16 +---
1 file changed, 9 insertions(+), 7 de
Reuse put_prev_task() instead of copying its implementation.
Signed-off-by: Viresh Kumar
---
kernel/sched/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index a8366cfebd31..8ddebb068585 100644
--- a/kernel/sched/core.c
+++ b/k
Hi,
The first patch fixes a potential regression we may observe on the UP
systems and the others are doing minor optimizations in the scheduler
core.
They are all tested on ARM 32 (exynos) and 64 (hikey) bit platforms.
--
viresh
Viresh Kumar (6):
sched: fair: Call cpufreq update util handlers
For SMP systems, update_load_avg() calls the cpufreq update util
handlers only for the top level cfs_rq (i.e. rq->cfs).
But that is not the case for UP systems. update_load_avg() calls util
handler for any cfs_rq for which it is called. This would result in way
too many calls from the scheduler to
于 2017年5月24日 GMT+08:00 下午1:24:29, Chen-Yu Tsai 写到:
>On Thu, May 18, 2017 at 12:43 AM, Icenowy Zheng
>wrote:
>> As we have already the support for the TV encoder on Allwinner H3,
>add
>> the display engine pipeline device tree nodes to its DTSI file.
>>
>> The H5 pipeline has some differences an
FYI, we noticed the following commit:
commit: 1c3c5eab171590f86edd8d31389d61dd1efe3037 ("sched/core: Enable
might_sleep() and smp_processor_id() checks early")
https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git sched/core
in testcase: boot
on test machine: qemu-system-x86_64 -enable-kvm
On Thu, May 18, 2017 at 12:43 AM, Icenowy Zheng wrote:
> As we have already the support for the TV encoder on Allwinner H3, add
> the display engine pipeline device tree nodes to its DTSI file.
>
> The H5 pipeline has some differences and will be enabled later.
>
> The currently-unused mixer0 and
Hi Ross,
On Tue, 23 May 2017 15:25:57 -0600 Ross Zwisler wrote:
> One of the primary motivations for adding tracepoints to the DAX PMD path
> was to allow the user to diagnose whether their system was actually using
> PMDs, and if not to help them understand why. For me at least this has
> worked
Most of DT files in PowerPC use #include "..." to make pre-processor
include DT in the same directory, but we have 3 exceptional files
that use #include <...> for that.
Fix them to remove -I$(srctree)/arch/$(SRCARCH)/boot/dts path from
dtc_cpp_flags.
Signed-off-by: Masahiro Yamada
---
arch/pow
Most of DT files in ARM use #include "..." to make pre-processor
include DT in the same directory, but this is one of the exceptional
files that use #include <...> for that.
Fix it to remove -I$(srctree)/arch/$(SRCARCH)/boot/dts path from
dtc_cpp_flags.
ARM: dts: versatile: use #include "..." to
Hi Shawn,
2017-05-15 22:10 GMT+09:00 Shawn Guo :
> Hi Masahiro,
>
> On Mon, May 15, 2017 at 08:14:45PM +0900, Masahiro Yamada wrote:
>> Most of DT files in ARM use #include "..." to make pre-processor
>> include DT in the same directory, but we have 3 exceptional files
>> that use #include <...> f
Most of DT files in ARM use #include "..." to make pre-processor
include DT in the same directory, but we have some exceptional files
that use #include <...> for that.
Fix them to remove -I$(srctree)/arch/$(SRCARCH)/boot/dts path from
dtc_cpp_flags.
Signed-off-by: Masahiro Yamada
---
arch/arm/
This adds the hooks for an optional reset controller in the 8250 device
tree node.
Signed-off-by: Joel Stanley
---
Documentation/devicetree/bindings/serial/8250.txt | 1 +
drivers/tty/serial/8250/8250_of.c | 16
2 files changed, 17 insertions(+)
diff --git a/Do
Hi Lee,
2017-05-23 16:05 GMT+09:00 Lee Jones :
> On Tue, 23 May 2017, Masahiro Yamada wrote:
>
>> Hi Lee, Linus,
>>
>> Thanks for your comments!
>>
>> 2017-05-22 17:43 GMT+09:00 Linus Walleij :
>> > On Mon, May 22, 2017 at 3:29 AM, Masahiro Yamada
>> > wrote:
>> >
>> >> Because "simple-bus" indic
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/cc_crypto_ctx.h | 17 ++---
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/ccree/cc_crypto_ctx.h
b/drivers/staging/ccree/cc_cryp
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/cc_hw_queue_defs.h | 32
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/drivers/staging/ccree/cc_hw_queue_defs.h
b/drivers
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/cc_regs.h | 13 +++--
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/ccree/cc_regs.h b/drivers/staging/ccree/cc_regs.h
index 8b89f0603
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/hash_defs.h | 15 ---
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/ccree/hash_defs.h
b/drivers/staging/ccree/hash_defs.h
index
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_aead.c | 45 ++--
1 file changed, 29 insertions(+), 16 deletions(-)
diff --git a/drivers/staging/ccree/ssi_aead.c b/drivers/staging/
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_aead.h | 7 ---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ccree/ssi_aead.h b/drivers/staging/ccree/ssi_aead.h
index 654a181729d7.
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_buffer_mgr.c | 87 +++---
1 file changed, 49 insertions(+), 38 deletions(-)
diff --git a/drivers/staging/ccree/ssi_buffer_mgr.c
b/drivers/s
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_buffer_mgr.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_buffer_mgr.h
b/drivers/staging/ccree/ssi_buffer_mgr.h
index 4
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_config.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/ccree/ssi_config.h
b/drivers/staging/ccree/ssi_config.h
index 431b518d
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_cipher.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_cipher.h
b/drivers/staging/ccree/ssi_cipher.h
index 7d58b56fc2c7.
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_driver.h | 16 ++--
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/ccree/ssi_driver.h
b/drivers/staging/ccree/ssi_driver.h
i
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips.c b/drivers/staging/ccree/ssi_fips.c
index 25e
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips.h b/drivers/staging/ccree/ssi_fips.h
index 607c64b8c458..
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips_data.h | 93 +--
1 file changed, 46 insertions(+), 47 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips_data.h
b/drivers/st
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips_ext.c | 46 ++--
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips_ext.c
b/drivers/sta
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips_ll.c | 21 -
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips_ll.c
b/drivers/staging/ccree/ssi_fip
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_hash.c | 9 ++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ccree/ssi_hash.c b/drivers/staging/ccree/ssi_hash.c
index 162d17dee2c
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_fips_local.c | 21 -
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips_local.c
b/drivers/staging/ccree/s
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_hash.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_hash.h b/drivers/staging/ccree/ssi_hash.h
index b821d0c854b5..7c9466
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_ivgen.c | 6 --
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/ccree/ssi_ivgen.c
b/drivers/staging/ccree/ssi_ivgen.c
index 1bb6f89191
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_pm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_pm.h b/drivers/staging/ccree/ssi_pm.h
index f1fe1777c04a..8b0d8be95199
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_pm_ext.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/ccree/ssi_pm_ext.c
b/drivers/staging/ccree/ssi_pm_ext.c
inde
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_request_mgr.c | 37 -
1 file changed, 22 insertions(+), 15 deletions(-)
diff --git a/drivers/staging/ccree/ssi_request_mgr.c
b/drivers/
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_pm_ext.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_pm_ext.h
b/drivers/staging/ccree/ssi_pm_ext.h
index 9049e6ffa8d3.
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_request_mgr.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_request_mgr.h
b/drivers/staging/ccree/ssi_request_mgr.h
inde
Fixed block comments across whole ccree driver
Derek Robson (27):
Drivers: ccree: ssi_sysfs.h - align block comments
Drivers: ccree: ssi_sysfs.c - align block comments
Drivers: ccree: ssi_request_mgr.h - align block comments
Drivers: ccree: ssi_request_mgr.c - align block comments
Drive
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_sysfs.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_sysfs.c
b/drivers/staging/ccree/ssi_sysfs.c
index 89021c009872..
On 2017/5/24 9:40, Xishi Qiu wrote:
> Hi, I find we use rcu access task_struct in mm_match_cgroup(), but not use
> rcu free in free_task_struct(), is it right?
>
> Here is the backtrace.
>
> PID: 2133 TASK: 881fe3353300 CPU: 2 COMMAND: "CPU 15/KVM"
> #0 [881fe276b528] machine_kexec
Fixed block comment alignment, Style fix only
Found using checkpatch
Signed-off-by: Derek Robson
---
drivers/staging/ccree/ssi_sysfs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/ccree/ssi_sysfs.h
b/drivers/staging/ccree/ssi_sysfs.h
index cd456c5dccc4..48
On Mon, May 22, 2017 at 04:01:48PM +0530, Arvind Yadav wrote:
> clk_prepare_enable() can fail here and we must check its return value.
Applied, thanks
--
~Vinod
On 2017-05-23 13:52, Maxime Ripard wrote:
Ok, good.
If you unrevert those patches, and add clk_ignore_unused to the kernel
command line, is it still broken?
Maxime
If I use the clk_ignore_unused flag with the patches below then the
kernel can boot and mount the nand.
diff --git a/drivers
Viresh,
On Wed, May 24, 2017 at 09:23:52AM +0530, Viresh Kumar wrote:
> On 23-05-17, 19:41, Eduardo Valentin wrote:
> > Hey,
> >
> > On Tue, Apr 25, 2017 at 03:57:07PM +0530, Viresh Kumar wrote:
> > > Hi Guys,
> > >
> > > The cpu_cooling driver is designed to use CPU frequency scaling to avoid
>
On 05/23/2017 01:08 PM, Greg Kroah-Hartman wrote:
This is the start of the stable review cycle for the 4.4.70 release.
There are 103 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be m
On 05/23/2017 01:06 PM, Greg Kroah-Hartman wrote:
This is the start of the stable review cycle for the 4.9.30 release.
There are 164 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be m
On 23-05-17, 19:41, Eduardo Valentin wrote:
> Hey,
>
> On Tue, Apr 25, 2017 at 03:57:07PM +0530, Viresh Kumar wrote:
> > Hi Guys,
> >
> > The cpu_cooling driver is designed to use CPU frequency scaling to avoid
> > high thermal states for a platform. But it wasn't glued really well with
> > cpufr
On 23-05-17, 19:27, Eduardo Valentin wrote:
> Hello,
>
> On Tue, May 23, 2017 at 12:33:06PM +0530, Viresh Kumar wrote:
> > Checkpatch reports following:
> >
> > WARNING: Prefer kmalloc_array over kmalloc with multiply
> > + cpufreq_cdev->freq_table = kmalloc(sizeof(*cpufreq_cdev->freq_table) *
On Fri, 2017-05-12 at 09:42 +0900, Byungchul Park wrote:
> Although llist provides proper APIs, they are not used. Make them used.
>
> Signed-off-by: Byungchul Park
> Acked-by: Nicholas Bellinger
> ---
> drivers/vhost/scsi.c | 11 +++
> 1 file changed, 3 insertions(+), 8 deletions(-)
>
On Thu, 2017-05-11 at 13:39 -0700, Tyrel Datwyler wrote:
> On 05/09/2017 02:46 PM, Gustavo A. R. Silva wrote:
> > Local variable _ret_ is assigned to a constant value and it is never
> > updated again. Remove this variable and the dead code it guards.
> >
> > Addresses-Coverity-ID: 140761
> > Sign
e1c618e6b5 ("spi: imx: only allow dynamic burst in PIO mode")
from a separate topic branch and not fixing it up in the merge. Although
that second commit could never have built anyway on its own :-(
I have used the spi tree from next-20170523 for today.
On Mon, May 22, 2017 at 07:26:36PM +0100, Alan Cox wrote:
> > We have in soc vendor tree similar patch but the reason is different.
> >
> > tty: serial: Added a CONFIG_SERIAL_XILINX_NR_UARTS option.
> >
> > This patch Adds CONFIG_SERIAL_XILINX_NR_UARTS option to allow
> > the user to
+++ Kees Cook [25/04/17 21:43 -0700]:
On Tue, Apr 25, 2017 at 7:32 PM, Jessica Yu wrote:
+++ Kees Cook [21/04/17 15:35 -0700]:
The mod structure is accessed for the "name" field prior to validating
sanity in check_modstruct_version(). This becomes very obvious once
struct layout randomization
Hi all,
Changes since 20170523:
The spi tree gained a build failure so I used the version from
next-20170523.
Non-merge commits (relative to Linus' tree): 2264
2585 files changed, 85073 insertions(+), 52432 dele
Rename the current Kconfig name used for the TI SYSCON Reset
driver from TI_SYSCON_RESET to RESET_TI_SYSCON to match the
convention used for all the reset drivers present at the
base reset folder.
Signed-off-by: Suman Anna
---
drivers/reset/Kconfig | 2 +-
drivers/reset/Makefile | 2 +-
2 files
Hi Stephen,
On 19 May 2017 at 10:12, Stephen Boyd wrote:
> On 05/18, Chunyan Zhang wrote:
>> On 18 May 2017 at 03:43, Arnd Bergmann wrote:
>> > On Mon, May 15, 2017 at 10:35 AM, Chunyan Zhang
>> > wrote:
>> >> diff --git
>> >> a/Documentation/devicetree/bindings/clock/sprd/sprd,adjustable-pll-
Hey,
On Tue, Apr 25, 2017 at 03:57:07PM +0530, Viresh Kumar wrote:
> Hi Guys,
>
> The cpu_cooling driver is designed to use CPU frequency scaling to avoid
> high thermal states for a platform. But it wasn't glued really well with
> cpufreq core. For example clipped-cpus is copied from the policy
On 05/23/2017 06:28 PM, Badhri Jagan Sridharan wrote:
User space applications in some cases have the need to enforce a
specific port type(DFP/UFP/DRP). This change allows userspace to
attempt setting the desired port type. Low level drivers can
however reject the request if the specific port type
Arnd,
> The lpfc_nvmeio_data() tracing helper always takes a format string and
> three additional arguments. The latest caller has a format string with
> only two integer arguments, causing this harmless warning:
James?
--
Martin K. Petersen Oracle Linux Engineering
Johannes,
> When pci_enable_device() or pci_enable_device_mem() fail in
> qla2x00_probe_one() we bail out but do a call to
> pci_disable_device(). This causes the dev_WARN_ON() in
> pci_disable_device() to trigger, as the device wasn't enabled
> previously.
>
> So instead of taking the 'probe_out
Hi, Jarkko
Would you mind give some suggestion?
On 2017年05月23日 20:48, Rob Herring wrote:
+ compatible = "snps,designware-i2c";
These should have an SoC specific compatible.
We directly use drivers/i2c/busses/i2c-designware-platdrv.c,
do we still an soc specific compati
1 - 100 of 1507 matches
Mail list logo