[RT PATCH] sched/deadline: Make inactive timer run in hardirq context

2019-07-31 Thread Juri Lelli
SCHED_DEADLINE inactive timer needs to run in hardirq context (as dl_task_timer already does). Make it HRTIMER_MODE_REL_HARD. Signed-off-by: Juri Lelli --- Hi, Both v4.19-rt and v5.2-rt need this. Mainline "sched: Mark hrtimers to expire in hard interrupt context" series needs this as well (20

Re: [PATCH v7 07/20] clk: tegra: clk-periph: Add save and restore support

2019-07-31 Thread Dmitry Osipenko
31.07.2019 12:50, Dmitry Osipenko пишет: > 31.07.2019 3:20, Sowjanya Komatineni пишет: >> This patch implements save and restore context for peripheral fixed >> clock ops, peripheral gate clock ops, sdmmc mux clock ops, and >> peripheral clock ops. >> >> During system suspend, core power goes off a

Re: [PATCH v3 2/2] iio: tsl2772: Use regulator_bulk_() APIs

2019-07-31 Thread Chuhong Yuan
Brian Masney 于2019年7月31日周三 下午5:40写道: > > Hi Chuhong, > > On Wed, Jul 31, 2019 at 11:04:23AM +0800, Chuhong Yuan wrote: > > Use regulator_bulk_() APIs to shrink driver size. > > > > Signed-off-by: Chuhong Yuan > > Just a few minor nitpicks below. Overall, this is looking nice. > > > --- > > Change

Re: [PATCH v7 03/20] clk: tegra: divider: Save and restore divider rate

2019-07-31 Thread Dmitry Osipenko
31.07.2019 3:20, Sowjanya Komatineni пишет: > This patch implements context restore for clock divider. > > During system suspend, core power goes off and looses the settings > of the Tegra CAR controller registers. > > So on resume, clock dividers are restored back for normal operation. > > Sign

Re: [PATCH v5 15/29] compat_ioctl: move tape handling into drivers

2019-07-31 Thread Heiko Carstens
On Tue, Jul 30, 2019 at 09:55:31PM +0200, Arnd Bergmann wrote: > MTIOCPOS and MTIOCGET are incompatible between 32-bit and 64-bit user > space, and traditionally have been translated in fs/compat_ioctl.c. > > To get rid of that translation handler, move a corresponding > implementation into each o

[PATCH] selftests: kvm: Adding config fragments

2019-07-31 Thread Naresh Kamboju
selftests kvm test cases need pre-required kernel configs for the test to get pass. Signed-off-by: Naresh Kamboju --- tools/testing/selftests/kvm/config | 26 ++ 1 file changed, 26 insertions(+) create mode 100644 tools/testing/selftests/kvm/config diff --git a/tools/te

Re: [PATCH v5 18/20] PM / devfreq: tegra30: Define ACTMON_DEV_CTRL_STOP

2019-07-31 Thread Dmitry Osipenko
31.07.2019 3:37, Chanwoo Choi пишет: > On 19. 7. 31. 오전 1:22, Dmitry Osipenko wrote: >> Add verbose definition for the client's device control register value that >> makes ACTMON to stop monitoring of the device. >> >> Suggested-by: Chanwoo Choi >> Signed-off-by: Dmitry Osipenko >> --- >> driver

[PATCH] i2c: core: remove unused function

2019-07-31 Thread Anders Roxell
GCC warns taht function 'i2c_acpi_find_match_adapter()' is not used. ../drivers/i2c/i2c-core-acpi.c:347:12: warning: ‘i2c_acpi_find_match_adapter’ defined but not used [-Wunused-function] static int i2c_acpi_find_match_adapter(struct device *dev, const void *data) ^~

Re: [PATCH] Function stack size and its name mismatch in arm64

2019-07-31 Thread Steven Rostedt
On Wed, 31 Jul 2019 17:04:37 +0800 Jiping Ma wrote: Hi Jiping, Note, the subject is not properly written, as it is missing the subsystem. In this case, it should start with "tracing: " > The PC of one the frame is matched to the next frame function, rather > than the function of his frame. Th

Re: [PATCH] HID: logitech-dj: Fix check of logi_dj_recv_query_paired_devices()

2019-07-31 Thread Petr Vorel
Hi, > In delayedwork_callback(), logi_dj_recv_query_paired_devices > may return positive value while success now, so check it > correctly. > Fixes: dbcbabf7da92 ("HID: logitech-dj: fix return value of > logi_dj_recv_query_hidpp_devices") > Signed-off-by: YueHaibing Reviewed-by: Petr Vorel Kin

Re: [patch 7/7] posix-timers: Prepare for PREEMPT_RT

2019-07-31 Thread Thomas Gleixner
On Wed, 31 Jul 2019, Peter Zijlstra wrote: > On Wed, Jul 31, 2019 at 12:33:55AM +0200, Thomas Gleixner wrote: > > +static struct k_itimer *timer_wait_running(struct k_itimer *timer, > > + unsigned long *flags) > > +{ > > + const struct k_clock *kc = READ_ONCE

Re: [PATCH v7 16/20] arm64: tegra: Enable wake from deep sleep on RTC alarm

2019-07-31 Thread Dmitry Osipenko
31.07.2019 3:20, Sowjanya Komatineni пишет: > This patch updates device tree for RTC and PMC to allow system wake > from deep sleep on RTC alarm. > > Signed-off-by: Sowjanya Komatineni > --- > arch/arm64/boot/dts/nvidia/tegra210.dtsi | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) >

Re: [PATCH 2/2] KVM: selftests: Enable dirty_log_test on s390x

2019-07-31 Thread David Hildenbrand
On 30.07.19 20:04, Christian Borntraeger wrote: > > > On 30.07.19 19:11, Thomas Huth wrote: >> On 30/07/2019 16.57, Christian Borntraeger wrote: >>> >>> >>> On 30.07.19 12:01, Thomas Huth wrote: To run the dirty_log_test on s390x, we have to make sure that we access the dirty log bitmap

Re: [PATCH] HID: logitech-dj: Fix check of logi_dj_recv_query_paired_devices()

2019-07-31 Thread Petr Vorel
Hi, > > In delayedwork_callback(), logi_dj_recv_query_paired_devices > > may return positive value while success now, so check it > > correctly. > > Fixes: dbcbabf7da92 ("HID: logitech-dj: fix return value of > > logi_dj_recv_query_hidpp_devices") > > Signed-off-by: YueHaibing > Reviewed-by: Pe

[tip:timers/core] sched/deadline: Ensure inactive_timer runs in hardirq context

2019-07-31 Thread tip-bot for Juri Lelli
Commit-ID: b223cc1bb098ebd1077a5390c434db411806d6b8 Gitweb: https://git.kernel.org/tip/b223cc1bb098ebd1077a5390c434db411806d6b8 Author: Juri Lelli AuthorDate: Wed, 31 Jul 2019 12:37:15 +0200 Committer: Thomas Gleixner CommitDate: Wed, 31 Jul 2019 13:01:26 +0200 sched/deadline: Ensure i

Re: linux-next: Tree for Jul 31 - s390 crypto build breakage

2019-07-31 Thread Herbert Xu
On Wed, Jul 31, 2019 at 10:58:20AM +0200, Heiko Carstens wrote: > On Wed, Jul 31, 2019 at 04:39:15PM +1000, Stephen Rothwell wrote: > > Hi all, > > > > Changes since 20190730: > > Hello Ard, > > two of your patches in the crypto tree cause build breakage on s390: > > The patch ("crypto: aes - c

Re: [RFC PATCH 1/3] mm, reclaim: make should_continue_reclaim perform dryrun detection

2019-07-31 Thread Vlastimil Babka
On 7/26/19 9:40 AM, Hillf Danton wrote: > > On Thu, 25 Jul 2019 08:05:55 + (UTC) Mel Gorman wrote: >> >> Agreed that the description could do with improvement. However, it >> makes sense that if compaction reports it can make progress that it is >> unnecessary to continue reclaiming. > > Than

Re: [PATCH v7 06/20] clk: tegra: Support for OSC context save and restore

2019-07-31 Thread Dmitry Osipenko
31.07.2019 3:20, Sowjanya Komatineni пишет: > This patch adds support for saving OSC clock frequency and the > drive-strength during OSC clock init and creates an API to restore > OSC control register value from the saved context. > > This API is invoked by Tegra210 clock driver during system resu

[PATCH] libnvdimm: change disk name of virtio pmem disk

2019-07-31 Thread Pankaj Gupta
This patch adds prefix 'v' in disk name for virtio pmem. This differentiates virtio-pmem disks from the pmem disks. Signed-off-by: Pankaj Gupta --- drivers/nvdimm/namespace_devs.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/nvdimm/namespace_devs.c b/drivers/n

Re: [PATCH 11/22] ARM: dts: imx6: Add sleep state to can interfaces

2019-07-31 Thread Philippe Schenker
On Wed, 2019-07-31 at 09:14 +0200, Michal Vokáč wrote: > On 30. 07. 19 16:46, Philippe Schenker wrote: > > From: Philippe Schenker > > > > This patch prepares the devicetree for the new Ixora V1.2 where we are > > able to turn off the supply of the can transceiver. This implies to use > > a sleep

Re: [PATCH v2 0/5] mm: Enable CONFIG_NODES_SPAN_OTHER_NODES by default for NUMA

2019-07-31 Thread Mike Rapoport
On Wed, Jul 31, 2019 at 10:03:09AM +0200, Michal Hocko wrote: > On Wed 31-07-19 09:24:21, Mike Rapoport wrote: > > [ sorry for a late reply too, somehow I missed this thread before ] > > > > On Tue, Jul 30, 2019 at 10:14:15AM +0200, Michal Hocko wrote: > > > [Sorry for a late reply] > > > > > > O

Re: linux-next: Tree for Jul 31 - s390 crypto build breakage

2019-07-31 Thread Heiko Carstens
On Wed, Jul 31, 2019 at 09:08:17PM +1000, Herbert Xu wrote: > On Wed, Jul 31, 2019 at 10:58:20AM +0200, Heiko Carstens wrote: > > On Wed, Jul 31, 2019 at 04:39:15PM +1000, Stephen Rothwell wrote: > > > Hi all, > > > > > > Changes since 20190730: > > > > Hello Ard, > > > > two of your patches in

Re: [PATCH v7 11/20] cpufreq: tegra124: Add suspend and resume support

2019-07-31 Thread Dmitry Osipenko
31.07.2019 13:23, Dmitry Osipenko пишет: > 31.07.2019 3:20, Sowjanya Komatineni пишет: >> This patch adds suspend and resume pm ops for cpufreq driver. >> >> PLLP is the safe clock source for CPU during system suspend and >> resume as PLLP rate is below the CPU Fmax at Vmin. >> >> CPUFreq driver su

Re: [PATCH 1/2] KVM: selftests: Implement ucall() for s390x

2019-07-31 Thread Thomas Huth
On 31/07/2019 12.28, Andrew Jones wrote: > On Wed, Jul 31, 2019 at 11:43:16AM +0200, Thomas Huth wrote: >> On 30/07/2019 12.48, Andrew Jones wrote: >>> On Tue, Jul 30, 2019 at 12:01:11PM +0200, Thomas Huth wrote: On s390x, we can neither exit via PIO nor MMIO, but have to use an instructi

Re: [PATCH v9 00/21] Generic page walk and ptdump

2019-07-31 Thread Steven Price
On 31/07/2019 10:27, Sven Schnelle wrote: > Hi Steven, > > On Mon, Jul 29, 2019 at 12:32:25PM +0100, Steven Price wrote: >> >> parisc is more interesting and I'm not sure if this is necessarily >> correct. I originally proposed a patch with the line "For parisc, we >> don't support large pages, so

[PATCH 2/2] ASoC: codecs: Add uda1334 codec driver

2019-07-31 Thread Andra Danciu
The UDA1334BTS supports the I2S-bus data format with word lengths of up to 24 bits serial data format and has basic features such as de-emphasis (at 44.1 kHz sampling rate) and mute. Datasheet can be found at: https://www.nxp.com/docs/en/data-sheet/UDA1334BTS.pdf Cc: Daniel Baluta Signed-off-by:

[PATCH 0/2] ASoC: Add uda1334 codec driver

2019-07-31 Thread Andra Danciu
The first patch contains uda1334 documentation. The second patch contains the codec driver. Andra Danciu (2): dt-bindings: sound: Add bindings for UDA1334 codec ASoC: codecs: Add uda1334 codec driver .../devicetree/bindings/sound/uda1334.txt | 17 ++ sound/soc/codecs/Kconfig

Re: [PATCH] net: sctp: Rename fallthrough label to unhandled

2019-07-31 Thread Neil Horman
On Tue, Jul 30, 2019 at 10:04:37PM -0700, Joe Perches wrote: > fallthrough may become a pseudo reserved keyword so this only use of > fallthrough is better renamed to allow it. > > Signed-off-by: Joe Perches Are you referring to the __attribute__((fallthrough)) statement that gcc supports? If so

[PATCH 1/2] dt-bindings: sound: Add bindings for UDA1334 codec

2019-07-31 Thread Andra Danciu
The UDA1334 is an NXP audio codec, supports the I2S-bus data format and has basic features such as de-emphasis (at 44.1 kHz sampling rate) and mute. Product information can be found at: https://www.nxp.com/pages/low-power-audio-dac-with-pll:UDA1334 Cc: Daniel Baluta Signed-off-by: Andra Danciu -

[PATCH 2/3] KVM: Check preempted_in_kernel for involuntary preemption

2019-07-31 Thread Wanpeng Li
From: Wanpeng Li preempted_in_kernel is updated in preempt_notifier when involuntary preemption ocurrs, it can be stale when the voluntarily preempted vCPUs are taken into account by kvm_vcpu_on_spin() loop. This patch lets it just check preempted_in_kernel for involuntary preemption. Cc: Pa

[PATCH 3/3] KVM: Fix leak vCPU's VMCS value into other pCPU

2019-07-31 Thread Wanpeng Li
From: Wanpeng Li After commit d73eb57b80b (KVM: Boost vCPUs that are delivering interrupts), a five years ago bug is exposed. Running ebizzy benchmark in three 80 vCPUs VMs on one 80 pCPUs Skylake server, a lot of rcu_sched stall warning splatting in the VMs after stress testing: INFO: rcu_s

[PATCH 1/3] KVM: Don't need to wakeup vCPU twice afer timer fire

2019-07-31 Thread Wanpeng Li
From: Wanpeng Li kvm_set_pending_timer() will take care to wake up the sleeping vCPU which has pending timer, don't need to check this in apic_timer_expired() again. Cc: Paolo Bonzini Cc: Radim Krčmář Signed-off-by: Wanpeng Li --- arch/x86/kvm/lapic.c | 8 1 file changed, 8 deletio

Re: [PATCH] HID: logitech-dj: Fix check of logi_dj_recv_query_paired_devices()

2019-07-31 Thread Hans de Goede
Hi Petr, On 31-07-19 13:06, Petr Vorel wrote: Hi, In delayedwork_callback(), logi_dj_recv_query_paired_devices may return positive value while success now, so check it correctly. Fixes: dbcbabf7da92 ("HID: logitech-dj: fix return value of logi_dj_recv_query_hidpp_devices") Signed-off-by: Y

Applied "ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usuall

Applied "ASoC: cs4271: Fix a typo in the CS4171_NR_RATIOS" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: cs4271: Fix a typo in the CS4171_NR_RATIOS has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) a

Applied "ASoC: meson: axg-pdm: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: axg-pdm: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually somet

Applied "ASoC: codecs: msm8916-wcd: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: codecs: msm8916-wcd: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually

Applied "ASoC: meson: g12a-tohdmitx: override codec2codec params" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: g12a-tohdmitx: override codec2codec params has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 h

Applied "ASoC: inno_rk3036: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: inno_rk3036: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Re: [GIT PULL] meminit fix for v5.3-rc2

2019-07-31 Thread Alexander Potapenko
On Tue, Jul 30, 2019 at 9:54 PM Linus Torvalds wrote: > > On Tue, Jul 30, 2019 at 6:53 AM Alexander Potapenko wrote: > > > > I wonder how hard it should be to make a zero-filling GCC plugin? > > I'm not a big fan of hacking GCC, but it shouldn't differ much from > > the existing GCC plugins that

Applied "ASoC: sirf: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: sirf: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the

Applied "ASoC: xtfpga-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: xtfpga-i2s: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: codec2codec: fix missing return of error return code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: codec2codec: fix missing return of error return code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 2

Applied "ASoC: tegra: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: tegra: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in th

Applied "ASoC: mxs-saif: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: mxs-saif: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in

Applied "ASoC: spear: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: spear: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in th

Applied "ASoC: meson: axg-fifo: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: axg-fifo: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually some

Applied "ASoC: uniphier: evea: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: uniphier: evea: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually somet

Applied "ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: kirkwood-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: kirkwood-i2s: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometim

Applied "ASoC: tegra20_das: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: tegra20_das: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: mt6797: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: mt6797: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in t

Applied "ASoC: meson: axg-tdm-formatter: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: axg-tdm-formatter: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (us

Applied "ASoC: fsl_audmix: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: fsl_audmix: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: rockchip: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: rockchip: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in

Applied "ASoC: codecs: jz4725b: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: codecs: jz4725b: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually some

Applied "ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: mmp-sspa: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: mmp-sspa: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in

Applied "ASoC: meson: axg-spdifin: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: axg-spdifin: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually

Applied "ASoC: psc-ac97: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: psc-ac97: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in

Applied "ASoC: mt8173: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: mt8173: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in t

Applied "ASoC: au1x: psc-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: au1x: psc-i2s: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually someti

Applied "ASoC: imx-audmux: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: imx-audmux: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Re: mmc: sdhci-of-arasan small issue with clock with 5.2 kernel

2019-07-31 Thread Michal Simek
+Manish, On 26. 07. 19 20:23, Paul Thomas wrote: > Hello, > > I'm using the arm64 Zynq Ultrascale+ parts, and I'm running into what > I think is a small issue in sdhci-of-arasan with the handling of the > 'clk_xin' which becomes pltfm_host->clk. > > If I just use the mainline zynqmp-clk.dtsi fil

Applied "dt-bindings: sound: Add bindings for UDA1334 codec" to the asoc tree

2019-07-31 Thread Mark Brown
The patch dt-bindings: sound: Add bindings for UDA1334 codec has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours)

Re: linux-next: Tree for Jul 31 - s390 crypto build breakage

2019-07-31 Thread Herbert Xu
On Wed, Jul 31, 2019 at 01:15:20PM +0200, Heiko Carstens wrote: > > However that doesn't fix the simd.h header file breakage with the > second patch :) That fix should be there now too. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org

Applied "ASoC: xlnx: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: xlnx: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the

Applied "ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually s

Applied "ASoC: sun8i-codec-analog: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: sun8i-codec-analog: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually

Re: [PATCH v3 0/2] mm,thp: Add filemap_huge_fault() for THP

2019-07-31 Thread Matthew Wilcox
On Wed, Jul 31, 2019 at 08:20:53PM +1000, Dave Chinner wrote: > On Wed, Jul 31, 2019 at 02:25:11AM -0600, William Kucharski wrote: > > This set of patches is the first step towards a mechanism for automatically > > mapping read-only text areas of appropriate size and alignment to THPs > > whenever

Re: [PATCH] net: sctp: Rename fallthrough label to unhandled

2019-07-31 Thread Joe Perches
On Wed, 2019-07-31 at 07:19 -0400, Neil Horman wrote: > On Tue, Jul 30, 2019 at 10:04:37PM -0700, Joe Perches wrote: > > fallthrough may become a pseudo reserved keyword so this only use of > > fallthrough is better renamed to allow it. > > > > Signed-off-by: Joe Perches > Are you referring to th

Applied "ASoC: meson: axg-spdifout: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: meson: axg-spdifout: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually

Applied "ASoC: sunxi: sun50i-codec-analog: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: sunxi: sun50i-codec-analog: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (

Applied "ASoC: max98373: add 88200 and 96000 sampling rate support" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: max98373: add 88200 and 96000 sampling rate support has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.3 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24

Applied "ASoC: codecs: Add uda1334 codec driver" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: codecs: Add uda1334 codec driver has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: ep93xx-i2s: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: ep93xx-i2s: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime

Applied "ASoC: jz4740: use devm_platform_ioremap_resource() to simplify code" to the asoc tree

2019-07-31 Thread Mark Brown
The patch ASoC: jz4740: use devm_platform_ioremap_resource() to simplify code has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.4 All being well this means that it will be integrated into the linux-next tree (usually sometime in t

Re: [PATCH] mmc: atmel-mci: Mark expected switch fall-throughs

2019-07-31 Thread Ludovic Desroches
Hi, On Sun, Jul 28, 2019 at 07:01:23PM -0500, Gustavo A. R. Silva wrote: > > Mark switch cases where we are expecting to fall through. > > This patch fixes the following warnings: > > drivers/mmc/host/atmel-mci.c: In function 'atmci_get_cap': > drivers/mmc/host/atmel-mci.c:2415:30: warning: thi

Re: [PATCH v3] staging: rtl8192u: null check the kzalloc

2019-07-31 Thread Greg KH
On Tue, Jul 30, 2019 at 05:01:39PM -0500, Navid Emamdoost wrote: > In rtl8192_init_priv_variable allocation for priv->pFirmware may fail, > so a null check is necessary.priv->pFirmware is accessed later in > rtl8192_adapter_start. I added the check and made appropriate changes > to propagate the er

Re: [PATCH 15/22] ARM: dts: apalis-imx6: Add some optional I2C devices

2019-07-31 Thread Philippe Schenker
On Tue, 2019-07-30 at 17:43 -0300, Fabio Estevam wrote: > Hi Philippe, > > On Tue, Jul 30, 2019 at 11:57 AM Philippe Schenker wrote: > > > +&mipi_csi { > > + ipu_id = <0>; > > + csi_id = <1>; > > + v_channel = <0>; > > + lanes = <2>; > > None of these properties are vali

Re: [PATCH 14/22] ARM: dts: apalis-imx6: Add some example I2C devices

2019-07-31 Thread Philippe Schenker
On Tue, 2019-07-30 at 17:53 -0300, Fabio Estevam wrote: > On Tue, Jul 30, 2019 at 11:57 AM Philippe Schenker wrote: > > > &backlight { > > @@ -204,6 +228,77 @@ > > */ > > &i2c3 { > > status = "okay"; > > + > > + adv7280: adv7280@21 { > > + compatible = "adv7280"; >

Re: [PATCH v2 0/5] mm: Enable CONFIG_NODES_SPAN_OTHER_NODES by default for NUMA

2019-07-31 Thread Michal Hocko
On Wed 31-07-19 14:14:22, Mike Rapoport wrote: > On Wed, Jul 31, 2019 at 10:03:09AM +0200, Michal Hocko wrote: > > On Wed 31-07-19 09:24:21, Mike Rapoport wrote: > > > [ sorry for a late reply too, somehow I missed this thread before ] > > > > > > On Tue, Jul 30, 2019 at 10:14:15AM +0200, Michal H

[PATCH v2 3/3] KVM: Fix leak vCPU's VMCS value into other pCPU

2019-07-31 Thread Wanpeng Li
From: Wanpeng Li After commit d73eb57b80b (KVM: Boost vCPUs that are delivering interrupts), a five years ago bug is exposed. Running ebizzy benchmark in three 80 vCPUs VMs on one 80 pCPUs Skylake server, a lot of rcu_sched stall warning splatting in the VMs after stress testing: INFO: rcu_s

Re: [PATCH] HID: logitech-dj: Fix check of logi_dj_recv_query_paired_devices()

2019-07-31 Thread Yuehaibing
On 2019/7/31 19:29, Hans de Goede wrote: > Hi Petr, > > On 31-07-19 13:06, Petr Vorel wrote: >> Hi, >> In delayedwork_callback(), logi_dj_recv_query_paired_devices may return positive value while success now, so check it correctly. >> Fixes: dbcbabf7da92 ("HID: logitech-dj: fix

Re: [patch v4 1/5] AST2500 DMA UART driver

2019-07-31 Thread Greg KH
On Wed, Jul 31, 2019 at 05:06:08PM +0530, sudheer v wrote: > Hi Greg, > After modifying [ patch v4 1/5 ] , should i submit whole patchset as v5 ? Yes please. thanks, greg k-h

[PATCH v2] dt-bindings: arm-boards: Update pointer to ARM CPU bindings

2019-07-31 Thread Geert Uytterhoeven
The ARM CPU DT bindings were converted from plain text to YAML, but not all referrers were updated. Fixes: 672951cbd1b70a9e ("dt-bindings: arm: Convert cpu binding to json-schema") Signed-off-by: Geert Uytterhoeven Acked-by: Linus Walleij --- v2: - Add Acked-by. --- Documentation/devicetree/b

query on linux kernel timer implementation

2019-07-31 Thread Arul Jeniston
Hi Team, We have a query on the implementation linux timer implementation. We have been running our application on linux kernel 4.9.168 (debian - stretch) version. We use intel Rangeley 4 cpu system which has tsc timer. Our application is an multi-threaded program which creates a monotonic timer-

Re: linux-next: Tree for Jul 31 - s390 crypto build breakage

2019-07-31 Thread Heiko Carstens
On Wed, Jul 31, 2019 at 09:32:16PM +1000, Herbert Xu wrote: > On Wed, Jul 31, 2019 at 01:15:20PM +0200, Heiko Carstens wrote: > > > > However that doesn't fix the simd.h header file breakage with the > > second patch :) > > That fix should be there now too. Yes, works now. Thank you!

Re: [PATCH] drivers/macintosh/smu.c: Mark expected switch fall-through

2019-07-31 Thread Michael Ellerman
Kees Cook writes: > On Wed, Jul 31, 2019 at 12:28:55AM +1000, Michael Ellerman wrote: >> Stephen Rothwell writes: >> > Mark switch cases where we are expecting to fall through. >> > >> > This patch fixes the following warning (Building: powerpc): >> > >> > drivers/macintosh/smu.c: In function 'sm

Re: [PATCH] HID: logitech-dj: Fix check of logi_dj_recv_query_paired_devices()

2019-07-31 Thread Petr Vorel
Hi Hans, > Please test my patch titled: "HID: logitech-dj: Really fix return value of > logi_dj_recv_query_hidpp_devices" > which should fix this. Indeed, patch [1] fixed that, thanks :) > Regards, > Hans Kind regards, Petr [1] https://patchwork.kernel.org/patch/11064087/

[RFC PATCH 1/7] dax: Introduce dax_copy_edges() for COW.

2019-07-31 Thread Shiyang Ruan
To copy source data to destance address before write. Change dax_iomap_pfn() to return the address as well in order to use it for performing a memcpy in case the type is IOMAP_COW. dax_copy_edges() is a helper functions performs a copy from one part of the device to another for data not page alig

[RFC PATCH 7/7] xfs: Add dedupe support for fsdax.

2019-07-31 Thread Shiyang Ruan
In dax mode, use a new range compare function provided by dax framework. Don't share dax file with non-dax file. Use xfs lock and xfs_break_layouts() to simplify the lock and break layout operation, and rename to xfs_reflink_remap_lock_and_break_layout() in order to echo the unlock function: xfs_r

[RFC PATCH 5/7] dax: memcpy before zeroing range

2019-07-31 Thread Shiyang Ruan
From: Goldwyn Rodrigues However, this needed more iomap fields, so it was easier to pass iomap and compute inside the function rather than passing a log of arguments. Note, there is subtle difference between iomap_sector and dax_iomap_sector(). Can we replace dax_iomap_sector with iomap_sector()

[RFC PATCH 0/7] xfs: add reflink & dedupe support for fsdax.

2019-07-31 Thread Shiyang Ruan
This patchset aims to take care of this issue to make reflink and dedupe work correctly in XFS. It is based on Goldwyn's patchsets: "v4 Btrfs dax support" and "Btrfs iomap". I picked up some patches related and made a few fix to make it basically works fine. For dax framework: 1. adapt to the

[RFC PATCH 4/7] fs: dedup file range to use a compare function

2019-07-31 Thread Shiyang Ruan
From: Goldwyn Rodrigues With dax we cannot deal with readpage() etc. So, we create a funciton callback to perform the file data comparison and pass it to generic_remap_file_range_prep() so it can use iomap-based functions. This may not be the best way to solve this. Suggestions welcome. Signed-

[RFC PATCH 2/7] dax: copy data before write.

2019-07-31 Thread Shiyang Ruan
Add dax_copy_edges() into each dax actor functions to perform COW in the case of IOMAP_COW type is set. Signed-off-by: Shiyang Ruan --- fs/dax.c | 39 +-- 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/fs/dax.c b/fs/dax.c index 450baafe2ea4..08

[RFC PATCH 6/7] xfs: Add COW handle for fsdax.

2019-07-31 Thread Shiyang Ruan
WRITE and ZERO on a shared extent need to perform COW. For direct io in dax mode, it is handled like WRITE, but with block aligned. So COW seems a bit redundant for it. Because of COW, new extent has been allocated. The extent list needs to be updated at the end. Signed-off-by: Shiyang Ruan -

[RFC PATCH 3/7] dax: replace mmap entry in case of CoW

2019-07-31 Thread Shiyang Ruan
From: Goldwyn Rodrigues We replace the existing entry to the newly allocated one in case of CoW. Also, we mark the entry as PAGECACHE_TAG_TOWRITE so writeback marks this entry as writeprotected. This helps us snapshots so new write pagefaults after snapshots trigger a CoW. btrfs does not support

Re: [PATCH 107/107] perf vendor events power9: Added missing event descriptions

2019-07-31 Thread Michael Ellerman
Arnaldo Carvalho de Melo writes: > From: Michael Petlan > > Documentation source: > > https://wiki.raptorcs.com/w/images/6/6b/POWER9_PMU_UG_v12_28NOV2018_pub.pdf > > Signed-off-by: Michael Petlan > Reviewed-by: Madhavan Srinivasan > Cc: Ananth N Mavinakayanahalli > Cc: Carl Love > Cc: Michael

  1   2   3   4   5   6   7   8   9   10   >