Re: [PATCH v5 0/2] Add device driver for APU2/APU3 GPIOs

2018-12-02 Thread Florian Eckert
Hello Andy > Btw, is the statement in above email still actual? "...I can fix > required things." Yes i will fix your hints tomorrow and send a v6 of my patchset. Thank you for your hints and time It would be nice if you could fix ACPI problemmatik. I would like to see the ACPI dump for tha

Re: [PATCH v2 06/17] Platform: OLPC: Add XO-1.75 EC driver

2018-12-02 Thread Andy Shevchenko
On Mon, Dec 3, 2018 at 1:13 AM Darren Hart wrote: > On Fri, Nov 16, 2018 at 05:23:52PM +0100, Lubomir Rintel wrote: > > It's based off the driver from the OLPC kernel sources. Somewhat > > modernized and cleaned up, for better or worse. > > > > Modified to plug into the olpc-ec driver infrastructu

[PATCH 4/7] microblaze: fix multiple bugs in arch/microblaze/boot/Makefile

2018-12-02 Thread Masahiro Yamada
This Makefile is wrong in multiple ways. The first issue is the breakage of 'linux.bin.ub' target since commit ece97f3a5fb5 ("microblaze: Fix simpleImage format generation") because the addition of UIMAGE_{IN,OUT} obviously affected it. make ARCH=microblaze CROSS_COMPILE=microblaze-linux- linux.b

[PATCH 1/7] microblaze: fix cleaning of boot images

2018-12-02 Thread Masahiro Yamada
The simpleImage. target generates the following files: arch/microblaze/boot/simpleImage. arch/microblaze/boot/simpleImage..ub arch/microblaze/boot/simpleImage..strip arch/microblaze/boot/simpleImage..unstrip However, "make ARCH=microblaze clean" only cleans up the unstrip image. Fix the c

Re: jffs2: Fix use of uninitialized delayed_work, lockdep breakage

2018-12-02 Thread Boris Brezillon
On Fri, 2018-10-19 at 08:30:20 UTC, Daniel Santos wrote: > jffs2_sync_fs makes the assumption that if CONFIG_JFFS2_FS_WRITEBUFFER > is defined then a write buffer is available and has been initialized. > However, this does is not the case when the mtd device has no > out-of-band buffer: > > int jf

[PATCH 6/7] microblaze: fix race condition in building boot images

2018-12-02 Thread Masahiro Yamada
I fixed a race condition in the parallel building of ARM in commit 3939f3345050 ("ARM: 8418/1: add boot image dependencies to not generate invalid images"). I see the same problem for MicroBlaze too. "make -j ARCH=microblaze all linux.bin.ub" results in a broken build since two threads descend in

[PATCH 7/7] microblaze: remove the unneeded code just in case file copy fails

2018-12-02 Thread Masahiro Yamada
I guess || (rm -f $@ && echo false) ... should be || (rm -f $@ && false) since printing the string "false" on the console has no point. Moreover, no Makefile needs to delete a target on error explicitly since commit 9c2af1c7377a ("kbuild: add .DELETE_ON_ERROR special target"). Reuse e

[PATCH 3/7] microblaze: move "... is ready" message to arch/microblaze/Makefile

2018-12-02 Thread Masahiro Yamada
To prepare for more fixes, move this to arch/microblaze/Makefile. Otherwise, the same "... is ready" would be printed multiple times. (Another solution would be, to remove these messages entirely unless people persist with them.) Signed-off-by: Masahiro Yamada --- arch/microblaze/Makefile

Re: mtd: nftl: clean up indentation, remove extraneous tabs

2018-12-02 Thread Boris Brezillon
On Sun, 2018-11-18 at 16:36:56 UTC, Colin King wrote: > From: Colin Ian King > > The hunk of code is indented too much by one level, fix this by > removing the extraneous tabs. Also terminate block comment using > the recommended coding style to clean up checkpatch warning. > > Signed-off-by: Co

[PATCH 5/7] microblaze: add linux.bin* and simpleImage.* to PHONY

2018-12-02 Thread Masahiro Yamada
linux.bin, linux.bin.gz, and linux.bin.ub are phony targets to generate a corresponding image under arch/microblaze/boot/. simpleImage.% also works like a PHONY target, but a pattern that contains '%' cannot be a PHONY target. I renamed it to equivalent simpleImage.$(DTB). Signed-off-by: Masahiro

Re: [v3] mtd: change len type from signed to unsigned type

2018-12-02 Thread Boris Brezillon
On Thu, 2018-11-29 at 04:19:51 UTC, Huijin Park wrote: > From: "huijin.park" > > Callers of erase_write() always pass an unsigned int. > So this patch avoids a cast to an int. > > Signed-off-by: huijin.park > Reviewed-by: Miquel Raynal Applied to http://git.infradead.org/linux-mtd.git mtd/nex

Re: [v3] mtd: spi-nor: cast to u64 to avoid uint overflows

2018-12-02 Thread Boris Brezillon
On Wed, 2018-11-28 at 08:02:14 UTC, Huijin Park wrote: > From: "huijin.park" > > The "params->size" is defined as "u64". > And "info->sector_size" and "info->n_sectors" are defined as > unsigned int and u16. > Thus, u64 data might have strange data(loss data) if the result > overflows an unsigned

[PATCH 0/7] microblaze: fix various problems in building boot images

2018-12-02 Thread Masahiro Yamada
This patch set fixes various issues in microblaze Makefiles. BTW, "simpleImage." works like a phony target to generate the following four images, where the first three are just aliases. - arch/microblaze/boot/simpleImage.: identical to arch/microblaze/boot/linux.bin - arch/microblaze/

[PATCH 2/7] microblaze: adjust the help to the real behavior

2018-12-02 Thread Masahiro Yamada
"make ARCH=microblaze help" mentions simpleImage..unstrip, but it never works because Makefile assumes "system.unstrip" is the name of DT. $ make ARCH=microblaze CROSS_COMPILE=microblaze-linux- simpleImage.system.unstrip [ snip ] make[1]: *** No rule to make target 'arch/microblaze/boot/dts/sy

Re: mtd: use DEFINE_SHOW_ATTRIBUTE() instead of open-coding it

2018-12-02 Thread Boris Brezillon
On Sun, 2018-12-02 at 08:33:58 UTC, Yangtao Li wrote: > DEFINE_SHOW_ATTRIBUTE macro can help us simplify the code,so change > to it.And change the DEBUGFS_RO_ATTR macro defined in some file to a > standard macro. > > Signed-off-by: Yangtao Li Applied to http://git.infradead.org/linux-mtd.git mtd

[PATCH] Revert "exec: make de_thread() freezable (was: Re: Linux 4.20-rc4)

2018-12-02 Thread Ingo Molnar
* Linus Torvalds wrote: > The patch stats this week look a little bit more normal than last tim, > probably simply because it's also a normal-sized rc4 rather than the > unusually small rc3. So there's a new regression in v4.20-rc4, my desktop produces this lockdep splat: [ 1772.588771] WARN

RE: rcu_preempt caused oom

2018-12-02 Thread He, Bo
Thanks, we have run the test for the whole weekend and not reproduce the issue, so we confirm the CONFIG_RCU_BOOST can fix the issue. We have enabled the rcupdate.rcu_cpu_stall_timeout=7 and also set panic on rcu stall and will see if we can see the panic, will keep you posed with the test res

Re: [PATCH 02/14] dt-bindings: soc: milbeaut: Add Milbeaut trampoline description

2018-12-02 Thread Sugaya, Taichi
Hi, On 2018/11/30 17:16, Stephen Boyd wrote: Quoting Sugaya, Taichi (2018-11-29 04:24:51) On 2018/11/28 11:01, Stephen Boyd wrote: Quoting Sugaya Taichi (2018-11-18 17:01:07) create mode 100644 Documentation/devicetree/bindings/soc/socionext/socionext,m10v.txt diff --git a/Documentation/

Re: [PATCH v2 06/15] m68k: define syscall_get_arch()

2018-12-02 Thread Geert Uytterhoeven
Hi Dmitry, On Mon, Dec 3, 2018 at 1:24 AM Dmitry V. Levin wrote: > On Sun, Dec 02, 2018 at 11:29:10AM +0100, Geert Uytterhoeven wrote: > > On Tue, Nov 20, 2018 at 1:15 AM Dmitry V. Levin wrote: > > > syscall_get_arch() is required to be implemented on all architectures > > > in order to extend t

linux-next: Tree for Dec 3

2018-12-02 Thread Stephen Rothwell
Hi all, Changes since 20181130: The arm-soc tree gained a conflict against the kbuild tree. The reset tree gained a conflict against the arm-soc tree. The clk tree lost its build failure. The vfs tree gained a conflict against the fscrypt tree. The net-next tree gained conflicts against the n

Re: [PATCH v2] x86/hyper-v: Mark TLFS structures packed

2018-12-02 Thread Roman Kagan
On Mon, Dec 03, 2018 at 12:35:35AM +0100, Vitaly Kuznetsov wrote: > Nadav Amit writes: > > [skip] > > > > > Having said that, something else is sort of strange in the TLFS definitions, > > I think (I really know little about this whole protocol). Look at the > > following definitions from hyperv

Re: [PATCH AUTOSEL 4.14 25/35] iomap: sub-block dio needs to zeroout beyond EOF

2018-12-02 Thread Amir Goldstein
On Mon, Dec 3, 2018 at 1:23 AM Dave Chinner wrote: > > On Sat, Dec 01, 2018 at 02:49:09AM -0500, Sasha Levin wrote: > > On Sat, Dec 01, 2018 at 08:50:05AM +1100, Dave Chinner wrote: > > >On Fri, Nov 30, 2018 at 05:14:41AM -0500, Sasha Levin wrote: > > >>On Fri, Nov 30, 2018 at 09:22:03AM +0100, Gr

Re: [PATCH v7 0/7] Introduce STPMIC1 PMIC Driver

2018-12-02 Thread Lee Jones
On Fri, 30 Nov 2018, Pascal PAILLET-LME wrote: > The goal of this patch-set is to propose a driver for the STPMIC1 PMIC from > STMicroelectronics. > The STPMIC1 regulators supply power to an application processor as well as > to external system peripherals such as DDR, Flash memories and system

How are you today?

2018-12-02 Thread Ms.Amelia Halona
Good Day Dear, I'm Ms Amelia and am new here looking for a serious relationship with someone i can spend the rest of my life with, someone who is loving, caring, honest and faithful to spend the rest of my life with, i came across your profile and its very interesting to me and i would like

Re: [PATCH 2/2] iio: adc: ti_am335x_tscadc: Improve accuracy of measurement

2018-12-02 Thread Lee Jones
On Sat, 01 Dec 2018, Jonathan Cameron wrote: > On Wed, 28 Nov 2018 09:14:32 + > Lee Jones wrote: > > > On Mon, 19 Nov 2018, Vignesh R wrote: > > > > > When performing single ended measurements with TSCADC, its recommended > > > to set negative input (SEL_INM_SWC_3_0) of ADC step to ADC's VR

linux-next: build failure after merge of the akpm tree

2018-12-02 Thread Stephen Rothwell
Hi Andrew, After merging the akpm tree, today's linux-next build (powerpc_le perf) failed like this: bench/numa.c:37:10: fatal error: linux/numa.h: No such file or directory #include ^~ Caused by patches "mm: replace all open encodings for NUMA_NO_NODE" "mm-replace-a

Re: [PATCH V2 3/5] PM / Domains: Save OPP table pointer in genpd

2018-12-02 Thread Viresh Kumar
On 30-11-18, 09:53, Ulf Hansson wrote: > On Mon, 26 Nov 2018 at 09:10, Viresh Kumar wrote: > > > > We will need these going forward in hotpath, i.e. from within > > dev_pm_genpd_set_performance_state(). > > Well, as for patch2, please try to be a bit more descriptive of why > and what this patch

Re: [PATCH 4.19.6] BFS: static inode bitmap and extra sanity checking

2018-12-02 Thread Greg KH
On Sun, Dec 02, 2018 at 08:21:30PM +, Tigran Aivazian wrote: > On Sun, 2 Dec 2018 at 20:13, Greg KH wrote: > > What is the git commit id of this patch in Linus's tree? > > In linux-next the commit id is > d2e6681167c634cfc3558991b59a6f614a31d226 , but it is not in Linus' > tree (i.e. at githu

[PATCH 1/2] HID: use macros in IS_INPUT_APPLICATION

2018-12-02 Thread Chris Chiu
Add missing definition for HID_DG_WHITEBOARD then replace the hid usage hex with macros for better readibility. Signed-off-by: Chris Chiu --- include/linux/hid.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/linux/hid.h b/include/linux/hid.h index a355d61940f2.

[PATCH 2/2] HID: input: support Microsoft wireless radio control hotkey

2018-12-02 Thread Chris Chiu
The ASUS laptops start to support the airplane mode radio management to replace the original mechanism of airplane mode toggle hotkey. On the ASUS P5440FF, it presents as a HID device connecting via I2C, named i2c-AMPD0001. When pressing it, the Embedded Controller send hid report via I2C and switc

Re: [PATCH] scsi: megaraid_sas: NULL check before some freeing functions is not needed

2018-12-02 Thread Sumit Saxena
On Wed, Nov 28, 2018 at 1:36 PM Wen Yang wrote: > > dma_pool_destroy(NULL) is safe, so removes NULL check before freeing > the mem. This patch also fix the ifnullfree.cocci warnings. > > Signed-off-by: Wen Yang Acked-by: Sumit Saxena > CC: Julia Lawall > CC: Kashyap Desai > CC: Sumit Saxena

Re: [PATCH V2 2/5] OPP: Add dev_pm_opp_xlate_performance_state() helper

2018-12-02 Thread Viresh Kumar
On 30-11-18, 09:45, Ulf Hansson wrote: > On Mon, 26 Nov 2018 at 09:10, Viresh Kumar wrote: > > > > Introduce a new helper dev_pm_opp_xlate_performance_state() which will > > be used to translate from pstate of a device to another one. > > I don't get this, could you please elaborate? > > > > > I

Re: [PATCH] percpu_rwsem: fix missed wakeup due to reordering of load

2018-12-02 Thread Davidlohr Bueso
On 2018-11-30 07:10, Prateek Sood wrote: In a scenario where cpu_hotplug_lock percpu_rw_semaphore is already acquired for read operation by P1 using percpu_down_read(). Now we have P1 in the path of releaseing the cpu_hotplug_lock and P2 is in the process of acquiring cpu_hotplug_lock. P1

[PATCH v2] mailbox: Hi3660: Fixup mailbox state machine malfunction issue

2018-12-02 Thread Kevin Wangtao
Current mailbox driver of Hi3660 release the mailbox directly before sending a new message which may cause last message lost and next message sending doesn't take effect actually. This patch fixes this issue by following the right process below, each time before sending a message, mailbox driver w

[GIT] IDE

2018-12-02 Thread David Miller
A missing of_node_put() and a small cleanup. Please pull, thanks! The following changes since commit 2595646791c319cadfdbf271563aac97d0843dc7: Linux 4.20-rc5 (2018-12-02 15:07:55 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git

Re: [PATCH v2 1/9] mm: Introduce new vm_insert_range API

2018-12-02 Thread Mike Rapoport
On Mon, Dec 03, 2018 at 09:51:45AM +0530, Souptick Joarder wrote: > Hi Mike, > > On Sun, Dec 2, 2018 at 4:43 PM Mike Rapoport wrote: > > > > On Sun, Dec 02, 2018 at 11:49:44AM +0530, Souptick Joarder wrote: > > > Previouly drivers have their own way of mapping range of > > > kernel pages/memory i

Re: [PATCH] Uprobes: Fix kernel oops with delayed_uprobe_remove()

2018-12-02 Thread Ravi Bangoria
Hi Steve, Please pull this patch. Thanks. On 11/15/18 6:13 PM, Oleg Nesterov wrote: > On 11/15, Ravi Bangoria wrote: >> >> There could be a race between task exit and probe unregister: >> >> exit_mm() >> mmput() >> __mmput() uprobe_unregister() >> uprobe_clear_state()

[PATCH] udlfb: fix potential NULL pointer dereference in dlfb_usb_probe

2018-12-02 Thread Wen Yang
This patch fixes a possible null pointer dereference in dlfb_usb_probe, detected by the semantic patch deref_null.cocci, with the following warning: drivers/video/fbdev/udlfb.c:1704:11-15: ERROR: dlfb is NULL but dereferenced. The following code has potential null pointer references: 1597

Re: [PATCH v4 7/7] cgroup: document cgroup v2 freezer interface

2018-12-02 Thread Mike Rapoport
On Fri, Nov 30, 2018 at 03:47:45PM -0800, Roman Gushchin wrote: > Describe cgroup v2 freezer interface in the cgroup v2 admin guide. > > Signed-off-by: Roman Gushchin > Cc: Tejun Heo > Cc: linux-...@vger.kernel.org > Cc: kernel-t...@fb.com Reviewed-by: Mike Rapoport > --- > Documentation/adm

[PATCH 1/2] dt-bindings: interrupt-controller: New binding for Meson-G12A SoC

2018-12-02 Thread Xingyu Chen
Update the dt-binding document to support new compatible string for the GPIO interrupt controller which found in Amlogic's Meson-G12A SoC. Signed-off-by: Xingyu Chen Signed-off-by: Jianxin Pan --- .../bindings/interrupt-controller/amlogic,meson-gpio-intc.txt| 1 + 1 file changed, 1 insertio

[PATCH 2/2] irqchip/meson-gpio: Add support for Meson-G12A SoC

2018-12-02 Thread Xingyu Chen
The Meson-G12A SoC uses the same GPIO interrupt controller IP block as the other Meson SoCs, A totle of 100 pins can be spied on, which is the sum of: - 223:100 undefined (no interrupt) - 99:97 3 pins on bank GPIOE - 96:77 20 pins on bank GPIOX - 76:61 16 pins on bank GPIOA - 60:53 8 pins

[PATCH 0/2] irqchip/meson-gpio: Add support for Meson-G12A SoC

2018-12-02 Thread Xingyu Chen
This series try to add GPIO interrupt controller support for Meson-G12A SoCs. Although the total number of pins is the same as the Meson-AXG SoC, the gpio banks and irq numbers are different. To avoid confusion on use, i think the new compatible string is needed. Xingyu Chen (2): dt-bindings: in

Re: [PATCH v4 7/7] zram: writeback throttle

2018-12-02 Thread Sergey Senozhatsky
On (12/03/18 15:02), Sergey Senozhatsky wrote: > Seems like I misread writeback_limit_store() a bit. > > So, if I want to, say, let only 10M of writteback pages, I need to > do > > echo 0 > writeback_limit > echo 10M > writeback_limit_store// memparse format is for >

Re: [PATCH] Malformatted switch statment

2018-12-02 Thread David Miller
From: Joris Gutjahr Date: Sun, 28 Oct 2018 17:45:46 +0100 > I fixed this coding style error I got after running > checkpatch --file on this file. > The problem was that the whole case block was on one line. > > Signed-off-by: Joris Gutjahr Frankly I think the existing code is more compact and

Re: [PATCH v4 7/7] zram: writeback throttle

2018-12-02 Thread Sergey Senozhatsky
On (12/03/18 14:50), Sergey Senozhatsky wrote: > On (12/03/18 11:40), Minchan Kim wrote: > [..] > > + down_read(&zram->init_lock); > > + atomic64_set(&zram->stats.bd_wb_limit, val); > > + if (val == 0) > > + zram->stop_writeback = false; > > + up_read(&zram->init_lock); > > [..]

RE: [PATCH] scsi: qedf: NULL check before some freeing functions is not needed.

2018-12-02 Thread Rangankar, Manish
> -Original Message- > From: Thomas Meyer > Sent: Monday, December 3, 2018 2:22 AM > To: Dept-Eng QLogic Storage Upstream upstr...@cavium.com>; j...@linux.vnet.ibm.com; > martin.peter...@oracle.com; linux-s...@vger.kernel.org; linux- > ker...@vger.kernel.org > Subject: [PATCH] scsi: qedf

[PATCH v5 1/3] thermal: tegra: remove unnecessary warnings

2018-12-02 Thread Wei Ni
Convert warnings to info as not all platforms may have all the thresholds and sensors enabled. Signed-off-by: Wei Ni --- drivers/thermal/tegra/soctherm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c in

[PATCH] igb: Fix an issue that PME is not enabled during runtime suspend

2018-12-02 Thread Kai-Heng Feng
I210 ethernet card doesn't wakeup when a cable gets plugged. It's because its PME is not set. Since commit 42eca2302146 ("PCI: Don't touch card regs after runtime suspend D3"), if the PCI state is saved, pci_pm_runtime_suspend() stops calling pci_finish_runtime_suspend(), which enables the PCI PME

[PATCH v5 3/3] thermal: tegra: parse sensor id before sensor register

2018-12-02 Thread Wei Ni
Since different platforms may not support all 4 sensors, so the sensor registration may be failed. Add codes to parse dt to find sensor id which need to be registered. So that the registration can be successful on all platform. Signed-off-by: Wei Ni --- drivers/thermal/tegra/soctherm.c | 45

[PATCH v5 2/3] thermal: tegra: fix memory allocation

2018-12-02 Thread Wei Ni
Fix memory allocation to store the pointers to thermal_zone_device. Signed-off-by: Wei Ni Acked-by: Thierry Reding --- drivers/thermal/tegra/soctherm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c index f

[PATCH v5 0/3] Fixes for Tegra soctherm

2018-12-02 Thread Wei Ni
This series fixed some issues for Tegra soctherm Main changes from v4: 1. fixed for the parsing sensor id. 2. keep warning for missing critical trips. Main changes from v3: 1. updated codes for parsing sensor id, per Thierry's comments Main changes from v2: 1. add codes to parse sensor id to avo

Re: [PATCH v4 7/7] zram: writeback throttle

2018-12-02 Thread Sergey Senozhatsky
On (12/03/18 11:40), Minchan Kim wrote: [..] > + down_read(&zram->init_lock); > + atomic64_set(&zram->stats.bd_wb_limit, val); > + if (val == 0) > + zram->stop_writeback = false; > + up_read(&zram->init_lock); [..] > + if (zram->stop_writeback) { > +

RE: [PATCH] scsi: qla4xxx: NULL check before some freeing functions is not needed.

2018-12-02 Thread Rangankar, Manish
> -Original Message- > From: Thomas Meyer > Sent: Monday, December 3, 2018 2:22 AM > To: Dept-Eng QLogic Storage Upstream upstr...@cavium.com>; j...@linux.vnet.ibm.com; > martin.peter...@oracle.com; linux-s...@vger.kernel.org; linux- > ker...@vger.kernel.org > Subject: [PATCH] scsi: qla4

[GIT] Sparc

2018-12-02 Thread David Miller
1) Some implicit switch fallthrough fixes from Stephen Rothwell. 2) Missing of_node_put() in various sparc drivers from Yangtao Li. Please pull, thanks! The following changes since commit 25e19c1fe421280a47f37c3571aa379e6e67966c: Merge tag 'libnvdimm-fixes-4.20-rc3' of git://git.kernel.

[PATCH -tip] kernel/sched,wake_q: Branch predict wake_q_add() cmpxchg

2018-12-02 Thread Davidlohr Bueso
The cmpxchg will fail when the task is already in the process of waking up, and as such is an extremely rare occurrence. Micro-optimize the call and put an unlikely() around it. To no surprise, when using CONFIG_PROFILE_ANNOTATED_BRANCHES under a number of workloads the incorrect rate was a mere

Re: [PATCH v9 3/4] seccomp: add a return code to trap to userspace

2018-12-02 Thread Serge E. Hallyn
On Sun, Dec 02, 2018 at 08:28:26PM -0700, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with containers. For example, > if a container d

[PATCH RESEND V2 3/4] ARM: dts: imx6ul: Add flexcan stop mode wakeup support

2018-12-02 Thread Joakim Zhang
From: Aisheng Dong Add stop-mode property which is required by stop mode wakeup feature. Signed-off-by: Aisheng Dong Signed-off-by: Joakim Zhang --- arch/arm/boot/dts/imx6ul.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dts

[PATCH RESEND V2 4/4] ARM: dts: imx7s: Add flexcan stop mode wakeup support

2018-12-02 Thread Joakim Zhang
From: Aisheng Dong Add stop-mode property which is required by stop mode wakeup feature. Signed-off-by: Aisheng Dong Signed-off-by: Joakim Zhang --- arch/arm/boot/dts/imx7s.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi i

[PATCH RESEND V2 2/4] ARM: dts: imx6qdl: Add flexcan stop mode wakeup support

2018-12-02 Thread Joakim Zhang
From: Aisheng Dong Add stop-mode property which is required by stop mode wakeup feature. Signed-off-by: Aisheng Dong Signed-off-by: Joakim Zhang --- arch/arm/boot/dts/imx6qdl.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.

[PATCH RESEND V2 1/4] ARM: dts: imx6sx: Add flexcan stop mode wakeup support

2018-12-02 Thread Joakim Zhang
From: Aisheng Dong Add stop-mode property which is required by stop mode wakeup feature. Signed-off-by: Aisheng Dong Signed-off-by: Joakim Zhang --- arch/arm/boot/dts/imx6sx.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/imx6sx.dtsi b/arch/arm/boot/dts/imx6sx.dts

[PATCH RESEND V2 0/4] ARM: dts: imx: Add flexcan stop mode wake

2018-12-02 Thread Joakim Zhang
This patchset intends to add flexcan stop mode wakeup support on IMX6/7 platforms. ChangeLog: V1->V2: *update stop mode property(stop-mode -> fsl,stop-mode). Hi Shawn, This property has been merged both flexcan bindings doc and kernel driver. Best Regards, Joakim Zhang Aisheng Do

Re: [PATCH v9 2/4] seccomp: switch system call argument type to void *

2018-12-02 Thread Serge E. Hallyn
On Sun, Dec 02, 2018 at 08:28:25PM -0700, Tycho Andersen wrote: > The const qualifier causes problems for any code that wants to write to the > third argument of the seccomp syscall, as we will do in a future patch in > this series. > > The third argument to the seccomp syscall is documented as vo

Re: [PATCH] serial/sunsu: add missing of_node_put()

2018-12-02 Thread David Miller
From: Yangtao Li Date: Wed, 21 Nov 2018 11:06:15 -0500 > of_find_node_by_path() acquires a reference to the node > returned by it and that reference needs to be dropped by its caller. > This place is not doing this, so fix it. > > Signed-off-by: Yangtao Li Several coding style problems and you

Re: [PATCH] sbus: char: add of_node_put()

2018-12-02 Thread David Miller
From: Yangtao Li Date: Tue, 20 Nov 2018 08:30:40 -0500 > use of_node_put() to release the refcount. > > Signed-off-by: Yangtao Li Applied.

Re: [PATCH] drivers/tty: add missing of_node_put()

2018-12-02 Thread David Miller
From: Yangtao Li Date: Wed, 21 Nov 2018 10:22:54 -0500 > of_find_node_by_path() acquires a reference to the node > returned by it and that reference needs to be dropped by its caller. > This place is not doing this, so fix it. > > Signed-off-by: Yangtao Li Applied.

Re: [PATCH] drivers/sbus/char: add of_node_put()

2018-12-02 Thread David Miller
From: Yangtao Li Date: Tue, 20 Nov 2018 08:38:26 -0500 > use of_node_put() to release the refcount. > > Signed-off-by: Yangtao Li Applied.

Re: [PATCH v9 1/4] seccomp: hoist struct seccomp_data recalculation higher

2018-12-02 Thread Serge E. Hallyn
On Sun, Dec 02, 2018 at 08:28:24PM -0700, Tycho Andersen wrote: > In the next patch, we're going to use the sd pointer passed to > __seccomp_filter() as the data to pass to userspace. Except that in some > cases (__seccomp_filter(SECCOMP_RET_TRACE), emulate_vsyscall(), every time > seccomp is inovk

BROTHERS HOOD

2018-12-02 Thread Illuminati brotherschurch
HELLO Are you a business man, politician, musical, student and you want to be rich, powerful and be famous in life or need a power to achieving your dreams. You can achieve your dreams by being a member of the Illuminati. With this all your dreams and heart desire can be fully accomplish, if you

Re: [PATCH] cpufreq: ia64: Remove unused header files

2018-12-02 Thread Viresh Kumar
On 03-12-18, 10:12, Viresh Kumar wrote: > On 30-11-18, 09:16, Yangtao Li wrote: > > seq_file.h does not need to be included,so remove it.Moreover deleted a > > line of meaningless return and move the module declaration to the end. > > In a function whose return type is void, returning on the last l

Re: [PATCH] cpufreq: ia64: Remove unused header files

2018-12-02 Thread Viresh Kumar
On 30-11-18, 09:16, Yangtao Li wrote: > seq_file.h does not need to be included,so remove it.Moreover deleted a > line of meaningless return and move the module declaration to the end. > In a function whose return type is void, returning on the last line is > not required. > > Signed-off-by: Yangt

Re: [PATCH] pci: p2pdma: clean up documentation and kernel-doc

2018-12-02 Thread Logan Gunthorpe
On 2018-12-01 10:31 a.m., Randy Dunlap wrote: > From: Randy Dunlap > > Fix typos, spellos, and grammar in p2pdma.rst and p2pdma.c. > > Fix return value(s) in function pci_p2pmem_alloc_sgl(). > > Signed-off-by: Randy Dunlap > Cc: linux-...@vger.kernel.org > Cc: Bjorn Helgaas > Cc: Jonathan

Re: [RFC PATCH net v2] net: phy: Fix the issue that netif always links up after resuming

2018-12-02 Thread Kunihiko Hayashi
Hi Florian Heiner, On Fri, 30 Nov 2018 19:47:37 +0100 wrote: > On 30.11.2018 18:46, Florian Fainelli wrote: > > > > > > On 11/30/2018 1:25 AM, Kunihiko Hayashi wrote: > >> Even though the link is down before entering hibernation, > >> there is an issue that the network interface always links u

[PATCH 19/22] mfd: wm831x-core: drop unused MODULE_ tags from non-modular code

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM831X drivers/mfd/Kconfig:bool ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces of modular infrastructure use, so that when reading the driver th

[PATCH 18/22] mfd: wm831x-i2c: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM831X_I2C drivers/mfd/Kconfig:bool "Wolfson Microelectronics WM831x/2x PMICs with I2C" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is es

[PATCH 20/22] mfd: wm8350-i2c: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM8350_I2C drivers/mfd/Kconfig:bool "Wolfson Microelectronics WM8350 with I2C" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially

[PATCH 22/22] mfd: wm8400-core: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM8400 drivers/mfd/Kconfig:bool "Wolfson Microelectronics WM8400" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so

[PATCH 17/22] mfd: wm831x-spi: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM831X_SPI drivers/mfd/Kconfig:bool "Wolfson Microelectronics WM831x/2x PMICs with SPI" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is es

[PATCH 21/22] mfd: wm8350-core: drop unused MODULE_ tags from non-modular code

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_WM8350 drivers/mfd/Kconfig:bool ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces of modular infrastructure use, so that when reading the driver th

[PATCH 16/22] mfd: tps80031: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_TPS80031 drivers/mfd/Kconfig:bool "TI TPS80031/TPS80032 Power Management chips" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentiall

[PATCH 14/22] mfd: tps65090: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_TPS65090 drivers/mfd/Kconfig:bool "TI TPS65090 Power Management chips" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphane

[PATCH 15/22] mfd: tps65910: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_TPS65910 drivers/mfd/Kconfig-bool "TI TPS65910 Power Management chip" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned

[PATCH 12/22] mfd: sta2x11: drop unused MODULE_ tags from non-modular code

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_STA2X11 drivers/mfd/Kconfig:bool "STMicroelectronics STA2X11" ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces of modular infrastructure use, so t

[PATCH 13/22] mfd: syscon: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_SYSCON drivers/mfd/Kconfig:bool "System Controller Register R/W Based on Regmap" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essential

[PATCH 11/22] mfd: rc5t583: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_RC5T583 drivers/mfd/Kconfig:bool "Ricoh RC5T583 Power Management system device" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentiall

[PATCH 09/22] mfd: htc-i2cpld: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig for this option is currently: config HTC_I2CPLD bool "HTC I2C PLD chip support" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading the driver there is no doubt it is builtin-onl

[PATCH 10/22] mfd: max8925-core: drop unused MODULE_ tags from non-modular code

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_MAX8925 drivers/mfd/Kconfig:bool "Maxim Semiconductor MAX8925 PMIC Support" ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces of modular infrastruc

[PATCH 07/22] mfd: da9055-core: make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_DA9055 drivers/mfd/Kconfig-bool "Dialog Semiconductor DA9055 PMIC Support" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orp

[PATCH 08/22] mfd: db8500-prcmu: drop unused MODULE_ tags from non-modular code

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_DB8500_PRCMU drivers/mfd/Kconfig:bool "ST-Ericsson DB8500 Power Reset Control Management Unit" ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces o

[PATCH 06/22] mfd: da9055-i2c: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Makefile/Kconfig currently controlling compilation of this code is: drivers/mfd/Makefile:da9055-objs := da9055-core.o da9055-i2c.o drivers/mfd/Makefile:obj-$(CONFIG_MFD_DA9055) += da9055.o ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code t

[PATCH v2 00/22] mfd: demodularization of non-modular drivers

2018-12-02 Thread Paul Gortmaker
[v1 --> v2: add some more commits as requested by Lee (MFD maintainer), update the 00/NN text; re-do build and link testing on new linux-next. ] This group of MFD drivers are all controlled by "bool" Kconfig settings, but contain various amounts of largely pointless uses of infrastructure related

[PATCH 05/22] mfd: da9052-*: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfigis currently controlling compilation of this code are: mfd/Kconfig:config MFD_DA9052_SPI mfd/Kconfig:bool "Dialog Semiconductor DA9052/53 PMIC variants with SPI" mfd/Kconfig:config MFD_DA9052_I2C mfd/Kconfig:bool "Dialog Semiconductor DA9052/53 PMIC variants with I2C" drivers/

[PATCH 04/22] mfd: da903x: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config PMIC_DA903X drivers/mfd/Kconfig-bool "Dialog Semiconductor DA9030/DA9034 PMIC Support" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essenti

[PATCH 03/22] mfd: as3711: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_AS3711 drivers/mfd/Kconfig:bool "AMS AS3711" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading th

[PATCH 02/22] mfd: adp5520: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Makefile/Kconfig currently controlling compilation of this code is: drivers/mfd/Makefile:obj-$(CONFIG_PMIC_ADP5520) += adp5520.o drivers/mfd/Kconfig:config PMIC_ADP5520 drivers/mfd/Kconfig:bool "Analog Devices ADP5520/01 MFD PMIC Core Support" ...meaning that it currently is not being bui

[PATCH 01/22] mfd: aat2870-core: Make it explicitly non-modular

2018-12-02 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_AAT2870_CORE drivers/mfd/Kconfig:bool "AnalogicTech AAT2870" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that

Re: [PATCH v2 1/9] mm: Introduce new vm_insert_range API

2018-12-02 Thread Souptick Joarder
Hi Mike, On Sun, Dec 2, 2018 at 4:43 PM Mike Rapoport wrote: > > On Sun, Dec 02, 2018 at 11:49:44AM +0530, Souptick Joarder wrote: > > Previouly drivers have their own way of mapping range of > > kernel pages/memory into user vma and this was done by > > invoking vm_insert_page() within a loop. >

Re: [PATCH v12 4/5] x86/boot: Parse SRAT table from RSDP and store immovable memory

2018-12-02 Thread Chao Fan
On Fri, Nov 30, 2018 at 09:54:33AM -0500, Masayoshi Mizuma wrote: >On Fri, Nov 30, 2018 at 09:24:54AM +0800, Chao Fan wrote: >> >> /* acpitb.c */ >> >> +#ifdef CONFIG_RANDOMIZE_BASE >> >> +/* Store the amount of immovable memory regions */ >> >> +int num_immovable_mem; >> >> +#endif >> >> + >> >>

[PATCH] mailbox: Hi3660: Fixup mailbox state machine malfunction issue

2018-12-02 Thread Kevin Wangtao
Current mailbox driver of Hi3660 release the mailbox directly before sending a new message which may cause last message lost and next message sending doesn't take effect actually. This patch fixs this issue by following the right progress below, each time before sending a message, mailbox driver w

RE: [PATCHv2 3/6] PCI: layerscape: Add the EP mode support

2018-12-02 Thread Xiaowei Bao
Hi Lorenzo, -Original Message- From: Lorenzo Pieralisi Sent: 2018年11月30日 18:55 To: Xiaowei Bao Cc: bhelg...@google.com; robh...@kernel.org; mark.rutl...@arm.com; shawn...@kernel.org; Leo Li ; kis...@ti.com; a...@arndb.de; gre...@linuxfoundation.org; M.h. Lian ; Mingkai Hu ; Roy Zang

RE: [PATCHv2 5/6] pci: layerscape: Add the EP mode support.

2018-12-02 Thread Xiaowei Bao
Hi Lorenzo, -Original Message- From: Lorenzo Pieralisi Sent: 2018年12月1日 0:22 To: Xiaowei Bao Cc: bhelg...@google.com; robh...@kernel.org; mark.rutl...@arm.com; shawn...@kernel.org; Leo Li ; kis...@ti.com; a...@arndb.de; gre...@linuxfoundation.org; M.h. Lian ; Mingkai Hu ; Roy Zang ;

  1   2   3   4   >