Re: [PATCH 1/5] xen: audit usages of module.h ; remove unnecessary instances

2016-02-15 Thread Stefano Stabellini
On Sun, 14 Feb 2016, Paul Gortmaker wrote: > Code that uses no modular facilities whatsoever should not be > sourcing module.h at all, since that header drags in a bunch > of other headers with it. > > Similarly, code that is not explicitly using modular facilities > like module_init() but only is

Re: Re: [PATCH RESEND] arm64: add alignment fault hanling

2016-02-15 Thread EunTaik Lee
> How do you end up with Device nGnRnE in user space? I thought we should > have got some guard page. I guess it is a device file that is mmaped in the user space and later remapped in the kernel using pgprot_noncached(). I can't find the code that inserts a guard page in between vma's can you

Re: [ppdev] e7223f1860: kernel BUG at drivers/base/driver.c:153!

2016-02-15 Thread Sudip Mukherjee
On Mon, Feb 15, 2016 at 04:20:45PM +0800, kernel test robot wrote: > Greetings, > > 0day kernel testing robot got the below dmesg and the first bad commit is > > https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git > char-misc-testing > > commit e7223f18603374d235d8bb0398532323e

Re: [PATCH 2/5] drivers/xen: make [xen-]ballon explicitly non-modular

2016-02-15 Thread Stefano Stabellini
On Sun, 14 Feb 2016, Paul Gortmaker wrote: > The Makefile / Kconfig currently controlling compilation here is: > > obj-y += grant-table.o features.o balloon.o manage.o preempt.o time.o > [...] > obj-$(CONFIG_XEN_BALLOON) += xen-balloon.o > > ...with: > > drivers/xen/Kconfig:confi

Re: [media 7/7] PCI bridge driver for PT3 & PXQ3PE

2016-02-15 Thread kbuild test robot
Hi Буди, [auto build test ERROR on linuxtv-media/master] [cannot apply to v4.5-rc4 next-20160215] [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/info-are-ma/Driver-bundle-for-PT3-PX-Q3PE

Re: [Xen-devel] [PATCH 3/5] drivers/xen: make xenbus_dev_[front/back]end explicitly non-modular

2016-02-15 Thread Stefano Stabellini
On Sun, 14 Feb 2016, Paul Gortmaker wrote: > The Makefile / Kconfig currently controlling compilation here is: > > obj-y += xenbus_dev_frontend.o > [...] > obj-$(CONFIG_XEN_BACKEND) += xenbus_dev_backend.o > > ...with: > > drivers/xen/Kconfig:config XEN_BACKEND > drivers/xen/Kconfig:bool "

Re: [PATCH 4/5] drivers/xen: make sys-hypervisor.c explicitly non-modular

2016-02-15 Thread Stefano Stabellini
On Sun, 14 Feb 2016, Paul Gortmaker wrote: > The Kconfig currently controlling compilation of this code is: > > config XEN_SYS_HYPERVISOR >bool "Create xen entries under /sys/hypervisor" > > ...meaning that it currently is not being built as a module by anyone. > > Lets remove the modula

Re: [PATCH 5/5] drivers/xen: make platform-pci.c explicitly non-modular

2016-02-15 Thread Stefano Stabellini
On Sun, 14 Feb 2016, Paul Gortmaker wrote: > The Kconfig currently controlling compilation of this code is: > > arch/x86/xen/Kconfig:config XEN_PVHVM > arch/x86/xen/Kconfig: def_bool y > > ...meaning that it currently is not being built as a module by anyone. > > Lets remove the modular code t

[PATCH] pinctrl: sh-pfc: Rework PFC GPIO support

2016-02-15 Thread Magnus Damm
From: Magnus Damm The sh-pfc Pinctrl driver is currently handling SoC-specific PFC hardware blocks on Arm64, Arm and SH architectures. For older SoCs using SH cores and some 32-bit Arm SoCs the PFC hardware also provides GPIO functionality. On the majority of 32-bit Arm SoCs from Renesas and so

Re: [REGRESSION, bisected] 4.5rc4 sound fsl-soc

2016-02-15 Thread Fabio Estevam
[Sorry for the top post, can't reply properly from this Inbox] Could you please try applying this commit from linux-next? https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/drivers/base/regmap/regcache.c?id=3245d460a1eb55b5c3ca31dde7b5c5ac71546edf Thanks, Fabio Estevam

Re: [PATCH v4 0/8] Add MT8173 Video Encoder Driver and VPU Driver

2016-02-15 Thread Hans Verkuil
Hi Tiffany, Once again, thanks for your patch series! I have some more comments below. On 02/04/2016 12:34 PM, Tiffany Lin wrote: > > == > Introduction > == > > The purpose of this series is to add the driver for video codec hw embedded > in the Mediatek's MT8173 SoCs

Re: [PATCH 1/2] ideapad: No hardware switch after 2016

2016-02-15 Thread Bjørn Mork
Ike Panhc writes: > There are complains on few ideapads that wireless is always hard > blocked but there is no physical radio switch. For now, we need > each user to report its dmi information and ignore hard blocks > on their ideapad. With more and more ideapads available in market > to maintain

[PATCH] pinctrl: sh-pfc: r8a7795: Add support for INTC-EX IRQ pins

2016-02-15 Thread Magnus Damm
From: Magnus Damm Most pins on the r8a7795 SoC can be configured in GPIO mode for interrupt and GPIO functionality, while a couple of them can also be routed to the INTC-EX hardware block (formerly known as IRQC). On r8a7795 the INTC-EX hardware handles pins IRQ0 -> IRQ5 and this patch adds supp

Re: [PATCH 0/4] mailbox: mailbox-test: support single channel with separate Tx and Rx buffer

2016-02-15 Thread Sudeep Holla
Hi Lee, On 12/02/16 09:41, Sudeep Holla wrote: On 12/02/16 09:17, Lee Jones wrote: On Thu, 11 Feb 2016, Sudeep Holla wrote: Hi Lee, Jassi, Assuming mailbox-test was designed to be generic, I am trying to extend it to support single channel with separate Tx and Rx buffer. With these changes

Re: [PATCH 0/4] mailbox: mailbox-test: support single channel with separate Tx and Rx buffer

2016-02-15 Thread Sudeep Holla
Hi Jassi, On 11/02/16 17:13, Sudeep Holla wrote: Hi Lee, Jassi, Assuming mailbox-test was designed to be generic, I am trying to extend it to support single channel with separate Tx and Rx buffer. With these changes I am able to test arm_mhu driver. However I couldn't understand the intention o

Re: [PATCH] Staging: xgifb: vgatypes.h: Coding style warning fix for block comments

2016-02-15 Thread Bo YU
Hi, Sorry for the delay to reply.I have send the patch to Arnaud,but he didn't reply me...Maybe i was wrong with something. Thanks again. On Mon, Feb 8, 2016 at 12:14 PM, Kroah-Hartman wrote: > On Fri, Jan 15, 2016 at 05:30:02PM +0800, YU Bo wrote: >> This patch is to vgatypes.h file that fixes

Re: [PATCH] lib/ucs2_string: Correct ucs2 -> utf8 conversion

2016-02-15 Thread Laszlo Ersek
On 02/15/16 12:12, Matt Fleming wrote: > (Cc'ing Laszlo and linux-efi) > > On Fri, 12 Feb, at 11:13:33PM, Jason Andryuk wrote: >> The comparisons should be >= since 0x800 and 0x80 require an additional bit >> to store. >> >> For the 3 byte case, the existing shift would drop off 2 more bits than >

I have registered your CHECK WORTH of $3.5 MILLION USD

2016-02-15 Thread Ben Taylor
I have registered your CHECK WORTH of $3.5 MILLION USD(THREE MILLION,FIVE HUNDRED THOUSAND DOLLARS) with delivery agency. Please Contact them with your delivery information such as, Your Name---, Your Address---, ID CARD COPY---, and Your Telephone Number: Contact Person: Mr. Mike Uwaa: E-mail: (de

Re: [PATCH v6] media: spi: Add support for LMH0395

2016-02-15 Thread Hans Verkuil
Hi Jean-Michel, Some minor comments below. On 02/08/2016 12:20 PM, Jean-Michel Hautbois wrote: > This device is a SPI based device from TI. > It is a 3 Gbps HD/SD SDI Dual Output Low Power > Extended Reach Adaptive Cable Equalizer. > > LMH0395 enables the use of up to two outputs. > These can b

[GIT PULL] spi fixes for v4.5

2016-02-15 Thread Mark Brown
The following changes since commit 388f7b1d6e8ca06762e2454d28d6c3c55ad0fe95: Linux 4.5-rc3 (2016-02-07 15:38:30 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git tags/spi-fix-v4.5-rc4 for you to fetch changes up to 4dd638f8ac6b4ed0

Re: [PATCH] kernel/cpu: Distinctive name for cpu_hotplug.dep_map

2016-02-15 Thread Joonas Lahtinen
Hi, According to scripts/get_maintainer.pl Ingo or Peter would be more appropriate to merge. Added them as To: On ke, 2016-02-03 at 22:42 +0530, Gautham R Shenoy wrote: > Hello Joonas, > > On Wed, Feb 03, 2016 at 04:24:28PM +0200, Joonas Lahtinen wrote: > > Use distinctive name for cpu_hotplug.

Re: [PATCH 0/4] mailbox: mailbox-test: support single channel with separate Tx and Rx buffer

2016-02-15 Thread Jassi Brar
On Mon, Feb 15, 2016 at 5:47 PM, Sudeep Holla wrote: > Hi Jassi, > > On 11/02/16 17:13, Sudeep Holla wrote: >> >> Hi Lee, Jassi, >> >> Assuming mailbox-test was designed to be generic, I am trying to extend >> it to support single channel with separate Tx and Rx buffer. With these >> changes I am

[PATCH] [RFC] kernel/cpu: Use lockref for online CPU reference counting

2016-02-15 Thread Joonas Lahtinen
Instead of implementing a custom locked reference counting, use lockref. Current implementation leads to a deadlock splat on Intel SKL platforms when lockdep debugging is enabled. This is due to few of CPUfreq drivers (including Intel P-state) having this; policy->rwsem is locked during driver in

Re: [PATCH] sched/deadline: Always calculate end of period on sched_yield()

2016-02-15 Thread Daniel Bristot de Oliveira
On 02/15/2016 08:18 AM, Juri Lelli wrote: > Do you think we could also skip some of the > following updates/accounting in this case? Not sure we win anything by > doing that, though. I reviewed rostedt's patch and the following updates/accounting operations. I agree with rostedt's patch, and als

Re: [PATCH 0/4] mailbox: mailbox-test: support single channel with separate Tx and Rx buffer

2016-02-15 Thread Sudeep Holla
On 15/02/16 12:31, Jassi Brar wrote: On Mon, Feb 15, 2016 at 5:47 PM, Sudeep Holla wrote: Hi Jassi, On 11/02/16 17:13, Sudeep Holla wrote: Hi Lee, Jassi, Assuming mailbox-test was designed to be generic, I am trying to extend it to support single channel with separate Tx and Rx buffer. Wi

[PATCH -trivial] devicetree: bindings: ARM: Use "uV" for micro-volt

2016-02-15 Thread Geert Uytterhoeven
The binding documentation uses both "uVolt" and "uV" for micro-volt. Improve consistency by settling on "uV". Signed-off-by: Geert Uytterhoeven --- Documentation/devicetree/bindings/arm/cpus.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings

Re: [rtc-linux] [PATCH] rtc: s3c: Document required clocks in the DT binding

2016-02-15 Thread Javier Martinez Canillas
Hello Krzysztof, Thanks a lot for your feedback. On 02/14/2016 03:34 AM, Krzysztof Kozlowski wrote: W dniu 10.02.2016 o 02:23, Javier Martinez Canillas pisze: The S3C Real Time Clock driver requires the clock and source clock to be defined in the device node but that requirement is not documen

Re: [media 7/7] PCI bridge driver for PT3 & PXQ3PE

2016-02-15 Thread kbuild test robot
Hi Буди, [auto build test ERROR on linuxtv-media/master] [cannot apply to v4.5-rc4 next-20160215] [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/info-are-ma/Driver-bundle-for-PT3-PX-Q3PE

Re: [PATCH] pinctrl: sh-pfc: Rework PFC GPIO support

2016-02-15 Thread Laurent Pinchart
Hi Magnus, Thank you for the patch. On Monday 15 February 2016 21:04:38 Magnus Damm wrote: > From: Magnus Damm > > The sh-pfc Pinctrl driver is currently handling SoC-specific > PFC hardware blocks on Arm64, Arm and SH architectures. > > For older SoCs using SH cores and some 32-bit Arm SoCs t

Re: [PATCH v8 4/8] ppc64 ftrace_with_regs configuration variables

2016-02-15 Thread Jiri Kosina
On Mon, 15 Feb 2016, Michael Ellerman wrote: > > > > +echo "int func() { return 0; }" | \ > > > > +$* -S -x c -O2 -p -mprofile-kernel - -o - 2> /dev/null | \ > > > > +sed -n -e '/func:/,/bl _mcount/p' | grep -q TOC > > > > + > > > > +leaf_toc_result=$? > > > > > > leaf_toc_result failed f

Re: [PATCH v2 3/9] ACPI: introduce acpi_table_parse2()

2016-02-15 Thread Aleksey Makarov
On 02/13/2016 02:07 AM, Rafael J. Wysocki wrote: > On Fri, Feb 12, 2016 at 6:43 PM, Aleksey Makarov > wrote: >> The function acpi_table_parse() has some problems: >> 1 It can be called only from __init code >> 2 It does not pass any data to the handler >> 3 It just throws out the value returned

Re: [PATCH v2 3/9] ACPI: introduce acpi_table_parse2()

2016-02-15 Thread Aleksey Makarov
Hi Rafael, Thank you for review. On 02/13/2016 02:08 AM, Rafael J. Wysocki wrote: > On Fri, Feb 12, 2016 at 7:51 PM, Greg Kroah-Hartman > wrote: >> On Fri, Feb 12, 2016 at 08:43:34PM +0300, Aleksey Makarov wrote: >>> The function acpi_table_parse() has some problems: >>> 1 It can be called only

Re: arm qemu test failures due to 'driver-core: platform: probe of-devices only using list of compatibles'

2016-02-15 Thread Robin Murphy
On 15/02/16 10:59, Uwe Kleine-König wrote: Hello Guenter, On Sun, Feb 14, 2016 at 08:50:10AM -0800, Guenter Roeck wrote: Uwe, Your patch 'driver-core: platform: probe of-devices only using list of compatibles' causes the following qemu tests to crash in -next. arm:vexpress-a9:vexpress_defconf

Re: [PATCH 1/3] Revert "workqueue: make sure delayed work run in local cpu"

2016-02-15 Thread Michal Hocko
On Tue 09-02-16 18:14:48, Tejun Heo wrote: > This reverts commit 874bbfe600a660cba9c776b3957b1ce393151b76. > > Workqueue used to implicity guarantee that work items queued without > explicit CPU specified are put on the local CPU. Recent changes in > timer broke the guarantee and led to vmstat br

[PATCH] rtc: s3c: Document in binding that only s3c6410 needs a src clk

2016-02-15 Thread Javier Martinez Canillas
Commit 43f3408261a2 ("rtc: s3c: Document required clocks in the DT binding") added to the S3C binding doc the required clocks needed by the Real Time Clock but the S3C driver supports different HW IP and only the s3c6410 needs a source clock. Fix the DT binding explaning that the second clock is o

Re: [PATCH 3/3] workqueue: implement "workqueue.debug_force_rr_cpu" debug feature

2016-02-15 Thread Michal Hocko
On Tue 09-02-16 18:14:50, Tejun Heo wrote: > Workqueue used to guarantee local execution for work items queued > without explicit target CPU. The guarantee is gone now which can > break some usages in subtle ways. To flush out those cases, this > patch implements a debug feature which forces roun

[PATCH 2/2] staging: fsl-mc: Avoid section mismatch

2016-02-15 Thread Thierry Reding
From: Thierry Reding The fsl_mc_allocator_driver_exit() function is marked __exit, but is called by the error handling code in fsl_mc_allocator_driver_init(). This results in a section mismatch, which in turn could lead to executing random code. Remove the __exit annotation to fix this. Cc: J.

Re: [lkp] [printk] af097cab1b: EIP is at vprintk_emit+0xab2/0xb5c

2016-02-15 Thread Sergey Senozhatsky
On (02/15/16 09:43), kernel test robot wrote: > FYI, we noticed the below changes on > > https://github.com/0day-ci/linux > Sergey-Senozhatsky/printk-move-can_use_console-out-of-console_trylock_for_printk/20160213-024210 > commit af097cab1b878d5be746be8bcaa9a79986716c41 ("printk: set may_schedule

[PATCH 1/2] staging: fsl-mc: Do not allow building as a module

2016-02-15 Thread Thierry Reding
From: Thierry Reding This driver uses functionality (MSI IRQ domain) whose symbols aren't exported, and hence the modular build fails. While arguably there might be reasons to make these symbols available to modules, that change would be fairly involved and the set of exported functions should be

Re: [PATCH v2] gpio: TS-4800: remove useless bgpio_init flags

2016-02-15 Thread Linus Walleij
On Wed, Feb 10, 2016 at 6:20 PM, Julien Grossholtz wrote: > No flags are required for bgpio_init in the TS-4800 gpio driver. This > patch set zero instead. The driver will have the same behaviour since > the & operator between the flags already resulted to zero. > > Fixes: 5041e791440a ("gpio: ad

Re: [PATCH] video: ARM CLCD: Added dt support to set tim2 register

2016-02-15 Thread Linus Walleij
On Wed, Feb 10, 2016 at 6:48 PM, Ray Jui wrote: > Could you please add me to the email thread and I can review it there (I > won't have time to test, but I can help to review the code and find time to > test later)? OK I will add you to subsequent postings, if any. > This may be a dumb question

[PATCH 1/1] gpio: add devm_ apis for gpio_chip_add and remove

2016-02-15 Thread Laxman Dewangan
Add device managed APIs devm_gpiochip_add_data() and devm_gpiochip_remove() for the APIs gpiochip_add_data() and gpiochip_remove(). This helps in reducing code in error path and sometimes removal of .remove callback for driver unbind. Signed-off-by: Laxman Dewangan --- drivers/gpio/gpiolib.c

kvm: GPF in kvm_irq_map_gsi

2016-02-15 Thread Dmitry Vyukov
Hello, The following program triggers GPF in kvm_irq_map_gsi: general protection fault: [#49] SMP DEBUG_PAGEALLOC KASAN Modules linked in: CPU: 0 PID: 5314 Comm: kvm-pit/4950 Tainted: G D 4.5.0-rc3+ #326 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Bochs 01/01/201

Re: [PATCH 1/2] gpio: Include linux/gpio.h instead of asm/gpio.h

2016-02-15 Thread Linus Walleij
On Tue, Feb 2, 2016 at 8:53 PM, Bjorn Helgaas wrote: > Most arches have an asm/gpio.h that merely includes linux/gpio.h. The > others select ARCH_HAVE_CUSTOM_GPIO_H, and when that's selected, > linux/gpio.h includes asm/gpio.h. > > Therefore, code should include linux/gpio.h instead of including

Re: [PATCH] ARM: dts: Move syscon reboot/poweroff to common dtsi for Exynos

2016-02-15 Thread Javier Martinez Canillas
Hello Krzysztof, On 02/14/2016 03:44 AM, Krzysztof Kozlowski wrote: W dniu 10.02.2016 o 03:30, Javier Martinez Canillas pisze: All Exynos SoCs have the same syscon reboot and poweroff device nodes so there is no need to duplicate the same on each SoC dtsi and can be moved to a common dtsi that

Re: [PATCH] davinci:Fix possible NULL pointer deference in the function davinci_gpio_probe

2016-02-15 Thread Linus Walleij
On Wed, Feb 3, 2016 at 1:17 AM, Nicholas Krause wrote: > This fixes a possible NULL pointer deference in the function, > davinci_gpio_probe due to the function, gpio2regs being able > to return a NULL pointer if it rans to get the registers for > the gpio devices on a davinci board. Furthermore i

Re: [rtc-linux] [PATCH] rtc: s3c: Document required clocks in the DT binding

2016-02-15 Thread Alexandre Belloni
On 15/02/2016 at 09:49:34 -0300, Javier Martinez Canillas wrote : > >No, not entirely. The samsung,s3c6410-rtc needs rtc and rtc_src clocks > >but rest of compatible devices need only rtc clock. > > > > Right, sorry for missing that. I noticed that this patch has already > been picked by Rob Herri

Re: [PATCH] rtc: s3c: Document in binding that only s3c6410 needs a src clk

2016-02-15 Thread Alexandre Belloni
On 15/02/2016 at 10:16:42 -0300, Javier Martinez Canillas wrote : > Commit 43f3408261a2 ("rtc: s3c: Document required clocks in the DT I'm pretty sure you shouldn't refer to a commit that is in linux-next. > binding") added to the S3C binding doc the required clocks needed > by the Real Time Cloc

[PATCH v7 RESEND 1/4] dt-bindings: mailbox: Document Hi6220 mailbox driver

2016-02-15 Thread Leo Yan
Document DT binding for Hisilicon Hi6220 mailbox driver. Acked-by: Rob Herring Signed-off-by: Leo Yan --- .../bindings/mailbox/hisilicon,hi6220-mailbox.txt | 74 ++ 1 file changed, 74 insertions(+) create mode 100644 Documentation/devicetree/bindings/mailbox/hisilicon,hi6

[PATCH v7 RESEND 0/4] mailbox: hisilicon: add Hi6220 mailbox driver

2016-02-15 Thread Leo Yan
Hi6220 mailbox supports up to 32 channels. Each channel is unidirectional with a maximum message size of 8 words. I/O is performed using register access (there is no DMA) and the cell raises an interrupt when messages are received. This patch series is to implement Hi6220 mailbox driver. It regist

[PATCH v7 RESEND 4/4] arm64: dts: add Hi6220's stub clock node

2016-02-15 Thread Leo Yan
Enable SRAM node and stub clock node for Hi6220, which uses mailbox channel 1 for CPU's frequency change. Furthermore, add the CPU clock phandle in CPU's node and using operating-points-v2 to register operating points. So can be used by cpufreq-dt driver. Signed-off-by: Leo Yan --- arch/arm64/b

Re: [PATCH 3/7] usb: gadget: pxa25x_udc: use readl/writel for mmio

2016-02-15 Thread Krzysztof Hałasa
Arnd Bergmann writes: > I consider the use of __raw_* accessors a bug, I don't think we should > ever do that because it hides how the hardware actually works, it doesn't > work with spinlocks, and it can lead to the compiler splitting up accesses > into byte sized ones (not on ARM with the curre

[PATCH v7 RESEND 2/4] mailbox: Hi6220: add mailbox driver

2016-02-15 Thread Leo Yan
Add driver for Hi6220 mailbox, the mailbox communicates with MCU; for sending data, it can support two methods for low level implementation: one is to use interrupt as acknowledge, another is automatic mode which without any acknowledge. These two methods have been supported in the driver. For rece

kvm: GPF in kvm_pic_clear_all

2016-02-15 Thread Dmitry Vyukov
Hello, The following program triggers GPF in kvm_pic_clear_all if run in a tight parallel loop: general protection fault: [#71] SMP DEBUG_PAGEALLOC KASAN Modules linked in: CPU: 0 PID: 7107 Comm: a2.out Tainted: G D 4.5.0-rc3+ #326 Hardware name: QEMU Standard PC (i440FX + PIIX,

[PATCH v7 RESEND 3/4] arm64: dts: add mailbox node for Hi6220

2016-02-15 Thread Leo Yan
This patch add device mailbox node for Hi6220 in DT. Signed-off-by: Leo Yan --- arch/arm64/boot/dts/hisilicon/hi6220.dtsi | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm64/boot/dts/hisilicon/hi6220.dtsi b/arch/arm64/boot/dts/hisilicon/hi6220.dtsi index 2585236..23c79e1 1006

Re: [PATCH] serial: 8250_pci: add MOXA Smartio MUE boards support

2016-02-15 Thread Andy Shevchenko
On Fri, 2016-02-12 at 19:28 +0100, Mathieu OTHACEHE wrote: > Add support for : > > - CP-102E: 2 ports RS232 PCIE card > - CP-102EL: 2 ports RS232 PCIE card > - CP-132EL: 2 ports RS422/485 PCIE card > - CP-114EL: 4 ports RS232/422/485 PCIE card > - CP-104EL-A: 4 ports RS232 PCIE card > - CP-168EL-A

CAN I GIVE YOU THIS TRUST?

2016-02-15 Thread Lawal Abdasil
Hello Dear. I am pleased to introduce a business opportunity to transfer to your overseas account the sum of US$2.600,000 from one of the prime banks here in Liberia. I am Abdasi Lawal, Bsc Msc , the auditor general, during the January audit ,I discovered a floating fund in an account opened in o

Re: [PATCH v7 RESEND 0/4] mailbox: hisilicon: add Hi6220 mailbox driver

2016-02-15 Thread Leo Yan
On Mon, Feb 15, 2016 at 09:50:22PM +0800, Leo Yan wrote: > Hi6220 mailbox supports up to 32 channels. Each channel is unidirectional > with a maximum message size of 8 words. I/O is performed using register > access (there is no DMA) and the cell raises an interrupt when messages > are received. >

Re: [PATCH] rtc: s3c: Document in binding that only s3c6410 needs a src clk

2016-02-15 Thread Javier Martinez Canillas
Hello Alexandre, On 02/15/2016 10:45 AM, Alexandre Belloni wrote: On 15/02/2016 at 10:16:42 -0300, Javier Martinez Canillas wrote : Commit 43f3408261a2 ("rtc: s3c: Document required clocks in the DT I'm pretty sure you shouldn't refer to a commit that is in linux-next. The commit comes fro

Re: [PATCH v4 2/8] [media] VPU: mediatek: support Mediatek VPU

2016-02-15 Thread 李務誠
On Thu, Feb 4, 2016 at 7:34 PM, Tiffany Lin wrote: > The VPU driver for hw video codec embedded in Mediatek's MT8173 SOCs. > It is able to handle video decoding/encoding of in a range of formats. > The driver provides with VPU firmware download, memory management and > the communication interface

Re: [PATCH v8 4/8] ppc64 ftrace_with_regs configuration variables

2016-02-15 Thread Torsten Duwe
On Mon, Feb 15, 2016 at 09:27:15PM +1100, Michael Ellerman wrote: > > There is explicit code in gcc to check whether the TOC setup is needed and > only That's undestood. The claim here is: that check is incomplete, at least. > emit it when it's required. One case where it's *not* required is wh

Re: [PATCH v1 1/8] kasan: Change the behavior of kmalloc_large_oob_right test

2016-02-15 Thread Alexander Potapenko
Turns out I've actually overintellectualized this test. I've reworked this patch so that kmalloc_pagealloc_oob_right() allocates a big chunk of memory from the page allocator (and therefore is enabled only under CONFIG_SLUB). kmalloc_large_oob_right() now allocates KMALLOC_MAX_CACHE_SIZE - 256 in b

[PATCH v2] rtc: s3c: Document in binding that only s3c6410 needs a src clk

2016-02-15 Thread Javier Martinez Canillas
The S3C binding doc says that the RTC and RTC source clocks are required but the S3C driver supports different HW IP and only the s3c6410 needs a source clock. Fix the binding explaining that the source clock is only needed for the s3c6410-rtc compatible controller. Reported-by: Krzysztof Kozlows

Re: [PATCH RFC] Introduce atomic and per-cpu add-max and sub-min operations

2016-02-15 Thread Peter Zijlstra
On Mon, Feb 15, 2016 at 10:50:29AM +, Will Deacon wrote: > Adding Peter and Paul, > > On Sun, Feb 14, 2016 at 12:09:00PM +0300, Konstantin Khlebnikov wrote: > > bool atomic_add_max(atomic_t *var, int add, int max); > > bool atomic_sub_min(atomic_t *var, int sub, int min); > > What are the mem

Re: richacl(7) man page review comments

2016-02-15 Thread Michael Kerrisk (man-pages)
On 15 February 2016 at 12:35, Andreas Gruenbacher wrote: > On Mon, Feb 15, 2016 at 11:25 AM, Michael Kerrisk (man-pages) > wrote: >> You're right. I was confusing with xattr(7). So, I think it might >> make some sense to eventually move both of these into man-pages (for >> richacl(7), at least, i

Re: [PATCH 2/2] mm/page_ref: add tracepoint to track down page reference manipulation

2016-02-15 Thread Joonsoo Kim
2016-02-15 14:28 GMT+09:00 Sergey Senozhatsky : > On (02/15/16 14:08), Sergey Senozhatsky wrote: >> >> will this compile with !CONFIG_TRACEPOINTS config? >> Yes, even if !CONFIG_TRACEPOINTS, it is compiled well. > uh.. sorry, was composed in email client. seems the correct way to do it is > > +#i

Re: [PATCH] [RFC] kernel/cpu: Use lockref for online CPU reference counting

2016-02-15 Thread Peter Zijlstra
On Mon, Feb 15, 2016 at 02:36:43PM +0200, Joonas Lahtinen wrote: > Instead of implementing a custom locked reference counting, use lockref. > > Current implementation leads to a deadlock splat on Intel SKL platforms > when lockdep debugging is enabled. > > This is due to few of CPUfreq drivers (i

Re: [PATCH 3/5] gcov: disable for COMPILE_TEST

2016-02-15 Thread Peter Oberparleiter
On 12.02.2016 17:06, Arnd Bergmann wrote: > Enabling gcov is counterproductive to compile testing: it significantly > increases the kernel image size, compile time, and it produces lots > of false positive "may be used uninitialized" warnings as the result > of missed optimizations. > > This is in

Re: [PATCH v2 3/3] mm/compaction: speed up pageblock_pfn_to_page() when zone is contiguous

2016-02-15 Thread Joonsoo Kim
2016-02-15 19:06 GMT+09:00 Xishi Qiu : > On 2016/2/15 10:42, Joonsoo Kim wrote: > >>> >>> I have a question about the zone continuity. because hole exists at >>> arbitrary position in a page block. Therefore, only pageblock_pf_to_page() >>> is insufficiency, whether pageblock aligned pfn or not , t

[PATCH] regulator: max77686: Fix MAINTAINER entry to match driver

2016-02-15 Thread Javier Martinez Canillas
The max77686 regulator driver was recently renamed to max77686-regulator but the entry in the MAINTAINERS file wasn't updated to match the driver. Reported-by: Krzysztof Kozlowski Signed-off-by: Javier Martinez Canillas --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) di

Re: [RFC PATCH 1/7] arm64/perf: Basic uncore counter support for Cavium ThunderX

2016-02-15 Thread Mark Rutland
On Mon, Feb 15, 2016 at 03:07:20PM +0100, Jan Glauber wrote: > Hi Mark, > > thanks for reviewing! I'll need several mails to address all questions. > > On Fri, Feb 12, 2016 at 05:36:59PM +, Mark Rutland wrote: > > On Fri, Feb 12, 2016 at 05:55:06PM +0100, Jan Glauber wrote: > > > Provide unco

Re: [Xen-devel] [PATCH 4/4] xen/pcifront: Fix mysterious crashes when NUMA locality information was extracted.

2016-02-15 Thread David Vrabel
On 11/02/16 21:10, Konrad Rzeszutek Wilk wrote: > --- a/drivers/pci/xen-pcifront.c > +++ b/drivers/pci/xen-pcifront.c > @@ -576,6 +578,7 @@ static void pcifront_free_roots(struct pcifront_device > *pdev) > free_root_bus_devs(bus_entry->bus); > > kfree(bus_entry->bus-

Re: [PATCH 4/5] gcov: disable tree-loop-im to reduce stack usage

2016-02-15 Thread Peter Oberparleiter
On 12.02.2016 17:06, Arnd Bergmann wrote: > Enabling CONFIG_GCOV_PROFILE_ALL produces us a lot of warnings like > > lib/lz4/lz4hc_compress.c: In function 'lz4_compresshcctx': > lib/lz4/lz4hc_compress.c:514:1: warning: the frame size of 1504 bytes is > larger than 1024 bytes [-Wframe-larger-than=]

Re: [PATCH 5/5] gcov: disable -Wmaybe-uninitialized warning

2016-02-15 Thread Peter Oberparleiter
On 12.02.2016 17:06, Arnd Bergmann wrote: > When gcov profiling is enabled, we see a lot of spurious warnings about > possibly uninitialized variables being used: > > arch/arm/mm/dma-mapping.c: In function 'arm_coherent_iommu_map_page': > arch/arm/mm/dma-mapping.c:1085:16: warning: 'start' may be

Re: [Xen-devel] [PATCH] Fixes to Xen pcifront and pciback (v1)

2016-02-15 Thread David Vrabel
On 11/02/16 21:10, Konrad Rzeszutek Wilk wrote: > Hey, > > These are patches that were developed for the Debian bug > 810379 which san Tommi had openned. > > The issue around from the two XSA fixes - which introduced > this regression. Applied to for-linus-4.6, thanks. I rewrote some of the com

[PATCH 5/7] serial: clps711x: fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. For signed types comparison 'ret < 0' should be used. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581

Re: [Xen-devel] [PATCH] Fixes to Xen pcifront and pciback (v1)

2016-02-15 Thread David Vrabel
On 15/02/16 14:35, David Vrabel wrote: > On 11/02/16 21:10, Konrad Rzeszutek Wilk wrote: >> Hey, >> >> These are patches that were developed for the Debian bug >> 810379 which san Tommi had openned. >> >> The issue around from the two XSA fixes - which introduced >> this regression. > > Applied to

[PATCH 4/7] atmel-isi: fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. For signed types comparison 'ret < 0' should be used. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581

[PATCH 2/7] MIPS: module: fix incorrect IS_ERR_VALUE macro usages

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. Specifically it works incorrectly with longer types. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581

[PATCH 3/7] drivers: char: mem: fix IS_ERROR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. Specifically it works incorrectly with longer types. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581

[PATCH 6/7] fbdev: exynos: fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. For signed types comparison 'ret < 0' should be used. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581

[PATCH 0/7] fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
Hi, This small set of independent patches tries to fix incorrect IS_ERR_VALUE macro usage. It fixes most usages leading to errors as described in [1]. It also follows conclusion from the discussion [1][2] - IS_ERR_VALUE should be used only with unsigned long type, signed types should use compariso

Re: [RFC PATCH 1/7] arm64/perf: Basic uncore counter support for Cavium ThunderX

2016-02-15 Thread Jan Glauber
Hi Mark, thanks for reviewing! I'll need several mails to address all questions. On Fri, Feb 12, 2016 at 05:36:59PM +, Mark Rutland wrote: > On Fri, Feb 12, 2016 at 05:55:06PM +0100, Jan Glauber wrote: > > Provide uncore facilities for non-CPU performance counter units. > > Based on Intel/AMD

Re: [REGRESSION] i915: No HDMI output with 4.4

2016-02-15 Thread Ville Syrjälä
On Mon, Feb 15, 2016 at 10:55:33AM +0200, Oleksandr Natalenko wrote: > 13.02.2016 01:23, Ville Syrjälä wrote: > > - Do you have another monitor to try? > > - Do you have another cable to try? > > More on this. > > Computer DVI —— old DVI-HDMI cable —— old monitor HDMI == not working > Computer DV

Re: [PATCH 4/4] xen/pcifront: Fix mysterious crashes when NUMA locality information was extracted.

2016-02-15 Thread Boris Ostrovsky
On 02/15/2016 09:05 AM, Konrad Rzeszutek Wilk wrote: On Sat, Feb 13, 2016 at 08:23:14PM -0500, Boris Ostrovsky wrote: On 02/11/2016 04:10 PM, Konrad Rzeszutek Wilk wrote: This patch fixes the issue by: 1) Use kzalloc to initialize to a well known state. 2) Put 'struct pci_sysdata' at the st

[PATCH 1/7] netfilter: fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE should be used only with unsigned long type. Otherwise it can work incorrectly. To achieve this function xt_percpu_counter_alloc is modified to return unsigned long, and its result is assigned to temporary variable to perform error checking, before assigning to .pcnt field. The patch

[PATCH 7/7] usb: gadget: fsl_qe_udc: fix IS_ERR_VALUE usage

2016-02-15 Thread Andrzej Hajda
IS_ERR_VALUE macro should be used only with unsigned long type. Otherwise it can work incorrectly. The patch follows conclusion from discussion on LKML [1][2]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2120927 [2]: http://permalink.gmane.org/gmane.linux.kernel/2150581 Signed-off-by: And

Re: [RFC PATCH 1/7] arm64/perf: Basic uncore counter support for Cavium ThunderX

2016-02-15 Thread Mark Rutland
On Mon, Feb 15, 2016 at 02:27:27PM +, Mark Rutland wrote: > > > > + uncore = event_to_thunder_uncore(event); > > > > + if (!uncore) > > > > + return -ENODEV; > > > > + if (!uncore->event_valid(event->attr.config)) > > > > + return -EINVAL; > > > > +

Re: [PATCH] rtc: mt6397: Add platform device ID table

2016-02-15 Thread Javier Martinez Canillas
Hello Eddie, On 02/14/2016 10:58 PM, Eddie Huang wrote: [snip] @@ -412,6 +418,7 @@ static struct platform_driver mtk_rtc_driver = { }, .probe = mtk_rtc_probe, .remove = mtk_rtc_remove, + .id_table = mt6397_rtc_id, }; module_platform_driver(mtk_rtc_driver); @

Re: [PATCH] regulator: Rename files for max77686 and max77802 drivers

2016-02-15 Thread Javier Martinez Canillas
Hello Krzysztof, On 02/14/2016 03:53 AM, Krzysztof Kozlowski wrote: [snip] +++ b/MAINTAINERS @@ -6904,7 +6904,7 @@ MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS M:Javier Martinez Canillas L:linux-kernel@vger.kernel.org S:Supported -F: drivers/*/*max77802.c +F: dri

Re: arm qemu test failures due to 'driver-core: platform: probe of-devices only using list of compatibles'

2016-02-15 Thread Russell King - ARM Linux
On Mon, Feb 15, 2016 at 01:11:49PM +, Robin Murphy wrote: > FWIW the PL180 on my Juno still works fine with this patch picked on top of > -rc3, so the issue would seem to be something else - From a quick comparison > between the DTs I see a slight difference in compatible strings for the > cloc

Re: [REGRESSION] i915: No HDMI output with 4.4

2016-02-15 Thread Oleksandr Natalenko
Hi, Ville. 13.02.2016 01:23, Ville Syrjälä wrote: Few other ideas: - Was the monitor sleeping when you tried this? Can you maybe push some button on it and then immediately run the intel_reg read command again? Nope. It just goes to sleep mode after (I suppose) drm module is loaded. Befor

Re: [RFC][PATCH 00/12] various perf fixes

2016-02-15 Thread Dmitry Vyukov
On Thu, Jan 14, 2016 at 11:05 AM, Dmitry Vyukov wrote: > On Thu, Jan 14, 2016 at 10:35 AM, Peter Zijlstra wrote: >> On Tue, Jan 12, 2016 at 12:26:27PM +0100, Dmitry Vyukov wrote: >>> What do you think if we work on making syzkaller work for you locally? >> >> There's no easy way to do this right?

Re: [PATCH 01/14] mfd: intel_quark_i2c_gpio: Use clkdev_create()

2016-02-15 Thread Andy Shevchenko
On Mon, 2016-02-08 at 17:45 -0800, Stephen Boyd wrote: > Convert this driver to use clkdev_create() instead of > clk_register_clkdevs(). The latter API is only used by this driver, > although this driver only allocates one clk to add anyway. > Furthermore, this driver allocates the clk_lookup struc

Re: [PATCH 02/14] clkdev: Remove clk_register_clkdevs()

2016-02-15 Thread Andy Shevchenko
On Mon, 2016-02-08 at 17:45 -0800, Stephen Boyd wrote: > Now that we've converted the only caller over to another clkdev > API, remove this one. > This API didn't feel suitable, good we get rid of it eventually. Reviewed-by: Andy Shevchenko >  > Cc: Andy Shevchenko > Cc: Russell King > Signed

Re: sound: memory leak in snd_seq_pool_init

2016-02-15 Thread Dmitry Vyukov
On Mon, Feb 15, 2016 at 11:21 AM, Takashi Iwai wrote: > On Mon, 15 Feb 2016 10:35:22 +0100, > Dmitry Vyukov wrote: >> >> Hello, >> >> The following program causes memory leak of a 24K object allocated in >> snd_seq_pool_init: >> >> // autogenerated by syzkaller (http://github.com/google/syzkaller)

Re: [PATCH 4.3 000/200] 4.3.6-stable review

2016-02-15 Thread Shuah Khan
On 02/14/2016 03:20 PM, Greg Kroah-Hartman wrote: > - > NOTE: This is the last 4.3.y kernel to be released. After this one, it > is end-of-life, please move to 4.4.y at this point in time. > - > > This is the start of the stable review cycle for the

Re: [PATCH 1/3] usb: USB Type-C Connector Class

2016-02-15 Thread Oliver Neukum
On Wed, 2016-02-10 at 13:23 +0200, Heikki Krogerus wrote: > That is tricky, as we would need to keep a list of the preselected > modes and for all SVIDs the connector supports. I don't think it would > be practical to do from this file as we would then use it differently > when connected and not c

[PATCH] staging: wilc1000: remove wilc1000_spi_ops as it is not used

2016-02-15 Thread Colin King
From: Colin Ian King building with gcc 6 I hit a build failure: CC drivers/staging/wilc1000/wilc_spi.o drivers/staging/wilc1000/wilc_spi.c:123:34: error: storage size of ‘wilc1000_spi_ops’ isn’t known static const struct wilc1000_ops wilc1000_spi_ops; ^

Re: [PATCH 3.12 00/64] 3.12.54-stable review

2016-02-15 Thread Jiri Slaby
On 02/11/2016, 08:26 PM, Shuah Khan wrote: > On 02/11/2016 06:59 AM, Jiri Slaby wrote: >> This is the start of the stable review cycle for the 3.12.54 release. >> There are 64 patches in this series, all will be posted as a response >> to this one. If anyone has any issues with these being applied

<    1   2   3   4   5   6   7   8   9   10   >