Re: [PATCH v2] ARM: mm: Facilitate debugging CONFIG_KUSER_HELPERS disabled

2018-10-31 Thread Florian Fainelli
On 10/25/18 12:26 PM, Andrew Lunn wrote: > On Thu, Oct 25, 2018 at 12:01:08PM -0700, Florian Fainelli wrote: >> Some software such as perf makes unconditional use of the special >> [vectors] page which is only provided when CONFIG_KUSER_HELPERS is >> enabled in the kernel. >> >> Facilitate the

Re: [PATCH v2] ARM: mm: Facilitate debugging CONFIG_KUSER_HELPERS disabled

2018-10-31 Thread Florian Fainelli
On 10/25/18 12:26 PM, Andrew Lunn wrote: > On Thu, Oct 25, 2018 at 12:01:08PM -0700, Florian Fainelli wrote: >> Some software such as perf makes unconditional use of the special >> [vectors] page which is only provided when CONFIG_KUSER_HELPERS is >> enabled in the kernel. >> >> Facilitate the

Re: [PATCH] RISC-V: defconfig: Enable printk timestamps

2018-10-31 Thread Olof Johansson
On Wed, Oct 31, 2018 at 1:42 PM Palmer Dabbelt wrote: > > On Wed, 31 Oct 2018 12:20:40 PDT (-0700), Olof Johansson wrote: > > On Tue, Oct 30, 2018 at 5:37 AM Anup Patel wrote: > >> > >> The printk timestamps are very useful information to visually see > >> where kernel is spending time during

Re: [PATCH] RISC-V: defconfig: Enable printk timestamps

2018-10-31 Thread Olof Johansson
On Wed, Oct 31, 2018 at 1:42 PM Palmer Dabbelt wrote: > > On Wed, 31 Oct 2018 12:20:40 PDT (-0700), Olof Johansson wrote: > > On Tue, Oct 30, 2018 at 5:37 AM Anup Patel wrote: > >> > >> The printk timestamps are very useful information to visually see > >> where kernel is spending time during

Re: [GIT PULL] UML changes for 4.20-rc1

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 2:22 PM Richard Weinberger wrote: > > - Removal of old and dead code > - A bug fix for our tty driver > - Other minor cleanups across the code base Pulled. I may not like recent rebases, but I do like this: > 11 files changed, 19 insertions(+), 456 deletions(-) >

Re: [GIT PULL] UML changes for 4.20-rc1

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 2:22 PM Richard Weinberger wrote: > > - Removal of old and dead code > - A bug fix for our tty driver > - Other minor cleanups across the code base Pulled. I may not like recent rebases, but I do like this: > 11 files changed, 19 insertions(+), 456 deletions(-) >

Fix for 10-second delay bug for -stable

2018-10-31 Thread Paul E. McKenney
Hello! I have lightly tested the following backport of 92aa39e9dc77 ("rcu: Make need_resched() respond to urgent RCU-QS needs") on v4.12-v4.19. Does it look reasonable from your viewpoint? If I don't hear otherwise, I will send it along to -stable at the end of this coming weekend, Pacific Time.

Fix for 10-second delay bug for -stable

2018-10-31 Thread Paul E. McKenney
Hello! I have lightly tested the following backport of 92aa39e9dc77 ("rcu: Make need_resched() respond to urgent RCU-QS needs") on v4.12-v4.19. Does it look reasonable from your viewpoint? If I don't hear otherwise, I will send it along to -stable at the end of this coming weekend, Pacific Time.

Re: [GIT PULL] c6x changes for 4.20

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 12:59 PM Mark Salter wrote: > > c6x changes for 4.20 Pulled, Linus

Re: [GIT PULL] c6x changes for 4.20

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 12:59 PM Mark Salter wrote: > > c6x changes for 4.20 Pulled, Linus

Re: Regression found (Stop-marking-clocks-as-CLK_IS_CRITICAL)

2018-10-31 Thread Pierre-Louis Bossart
Just thought it worth mentioning, this new patch that fixes sound again, seems to have ressurected an old issue with PLL unlock. I'm seeing journal entries after fresh boot .. ``` picard kernel: max98090 i2c-193C9890:00: PLL unlocked picard systemd[462]: Started Sound Service. picard

Re: Regression found (Stop-marking-clocks-as-CLK_IS_CRITICAL)

2018-10-31 Thread Pierre-Louis Bossart
Just thought it worth mentioning, this new patch that fixes sound again, seems to have ressurected an old issue with PLL unlock. I'm seeing journal entries after fresh boot .. ``` picard kernel: max98090 i2c-193C9890:00: PLL unlocked picard systemd[462]: Started Sound Service. picard

Re: [PATCH 0/2] perf tests: Check for ARM [vectors] page

2018-10-31 Thread Florian Fainelli
On 10/24/18 5:09 PM, Florian Fainelli wrote: > Hi all, > > I just painfully learned that perf would segfault when > CONFIG_KUSER_HELPERS is disabled because it unconditionally makes use of > it. This patch series adds an ARM test for that by leveraging the > existing find_vdso_map() function and

Re: [PATCH 0/2] perf tests: Check for ARM [vectors] page

2018-10-31 Thread Florian Fainelli
On 10/24/18 5:09 PM, Florian Fainelli wrote: > Hi all, > > I just painfully learned that perf would segfault when > CONFIG_KUSER_HELPERS is disabled because it unconditionally makes use of > it. This patch series adds an ARM test for that by leveraging the > existing find_vdso_map() function and

[Patch v4 1/3] CIFS: Add support for direct I/O read

2018-10-31 Thread Long Li
From: Long Li With direct I/O read, we transfer the data directly from transport layer to the user data buffer. Change in v3: add support for kernel AIO Change in v4: Refactor common read code to __cifs_readv for direct and non-direct I/O. Retry on direct I/O failure. Signed-off-by: Long Li

[Patch v4 2/3] CIFS: Add support for direct I/O write

2018-10-31 Thread Long Li
From: Long Li With direct I/O write, user supplied buffers are pinned to the memory and data are transferred directly from user buffers to the transport layer. Change in v3: add support for kernel AIO Change in v4: Refactor common write code to __cifs_writev for direct and non-direct I/O.

[Patch v4 1/3] CIFS: Add support for direct I/O read

2018-10-31 Thread Long Li
From: Long Li With direct I/O read, we transfer the data directly from transport layer to the user data buffer. Change in v3: add support for kernel AIO Change in v4: Refactor common read code to __cifs_readv for direct and non-direct I/O. Retry on direct I/O failure. Signed-off-by: Long Li

[Patch v4 2/3] CIFS: Add support for direct I/O write

2018-10-31 Thread Long Li
From: Long Li With direct I/O write, user supplied buffers are pinned to the memory and data are transferred directly from user buffers to the transport layer. Change in v3: add support for kernel AIO Change in v4: Refactor common write code to __cifs_writev for direct and non-direct I/O.

[Patch v4 3/3] CIFS: Add direct I/O functions to file_operations

2018-10-31 Thread Long Li
From: Long Li With direct read/write functions implemented, add them to file_operations. Dircet I/O is used under two conditions: 1. When mounting with "cache=none", CIFS uses direct I/O for all user file data transfer. 2. When opening a file with O_DIRECT, CIFS uses direct I/O for all data

[Patch v4 3/3] CIFS: Add direct I/O functions to file_operations

2018-10-31 Thread Long Li
From: Long Li With direct read/write functions implemented, add them to file_operations. Dircet I/O is used under two conditions: 1. When mounting with "cache=none", CIFS uses direct I/O for all user file data transfer. 2. When opening a file with O_DIRECT, CIFS uses direct I/O for all data

[tip:perf/urgent] perf intel-pt/bts: Calculate cpumode for synthesized samples

2018-10-31 Thread tip-bot for Adrian Hunter
Commit-ID: 5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5 Gitweb: https://git.kernel.org/tip/5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5 Author: Adrian Hunter AuthorDate: Wed, 31 Oct 2018 11:10:43 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 12:56:26 -0300 perf

[tip:perf/urgent] perf intel-pt/bts: Calculate cpumode for synthesized samples

2018-10-31 Thread tip-bot for Adrian Hunter
Commit-ID: 5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5 Gitweb: https://git.kernel.org/tip/5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5 Author: Adrian Hunter AuthorDate: Wed, 31 Oct 2018 11:10:43 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 12:56:26 -0300 perf

[tip:perf/urgent] perf intel-pt: Insert callchain context into synthesized callchains

2018-10-31 Thread tip-bot for Adrian Hunter
Commit-ID: 242483068b4b9ad02f1653819b6e683577681e0e Gitweb: https://git.kernel.org/tip/242483068b4b9ad02f1653819b6e683577681e0e Author: Adrian Hunter AuthorDate: Wed, 31 Oct 2018 11:10:42 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 12:54:27 -0300 perf

[tip:perf/urgent] perf intel-pt: Insert callchain context into synthesized callchains

2018-10-31 Thread tip-bot for Adrian Hunter
Commit-ID: 242483068b4b9ad02f1653819b6e683577681e0e Gitweb: https://git.kernel.org/tip/242483068b4b9ad02f1653819b6e683577681e0e Author: Adrian Hunter AuthorDate: Wed, 31 Oct 2018 11:10:42 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 12:54:27 -0300 perf

[tip:perf/urgent] perf tools: Don't clone maps from parent when synthesizing forks

2018-10-31 Thread tip-bot for David Miller
Commit-ID: 4f8f382e635707ddaddf8269a116e4f8cc8835c0 Gitweb: https://git.kernel.org/tip/4f8f382e635707ddaddf8269a116e4f8cc8835c0 Author: David Miller AuthorDate: Tue, 30 Oct 2018 22:24:04 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 10:18:01 -0300 perf tools:

[tip:perf/urgent] perf tools: Don't clone maps from parent when synthesizing forks

2018-10-31 Thread tip-bot for David Miller
Commit-ID: 4f8f382e635707ddaddf8269a116e4f8cc8835c0 Gitweb: https://git.kernel.org/tip/4f8f382e635707ddaddf8269a116e4f8cc8835c0 Author: David Miller AuthorDate: Tue, 30 Oct 2018 22:24:04 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 10:18:01 -0300 perf tools:

[tip:perf/urgent] perf top: Start display thread earlier

2018-10-31 Thread tip-bot for David Miller
Commit-ID: ff27a06af6ffd3f49b9e193eb68f487ad76651e1 Gitweb: https://git.kernel.org/tip/ff27a06af6ffd3f49b9e193eb68f487ad76651e1 Author: David Miller AuthorDate: Tue, 30 Oct 2018 22:30:03 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 10:10:11 -0300 perf top:

[tip:perf/urgent] perf top: Start display thread earlier

2018-10-31 Thread tip-bot for David Miller
Commit-ID: ff27a06af6ffd3f49b9e193eb68f487ad76651e1 Gitweb: https://git.kernel.org/tip/ff27a06af6ffd3f49b9e193eb68f487ad76651e1 Author: David Miller AuthorDate: Tue, 30 Oct 2018 22:30:03 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 10:10:11 -0300 perf top:

Re: [PATCH v2] kselftests/bpf: use ping6 as the default ipv6 ping binary if it exists

2018-10-31 Thread Daniel Borkmann
On 10/30/2018 07:35 PM, Song Liu wrote: > On Mon, Oct 29, 2018 at 7:35 PM Li Zhijian wrote: >> >> ping binary on some distros doesn't support "ping -6" anymore. >> >> Signed-off-by: Li Zhijian > > I think this should go bpf-next. Please resubmit when the bpf-next tree is > open > (after the

Re: [PATCH v2] kselftests/bpf: use ping6 as the default ipv6 ping binary if it exists

2018-10-31 Thread Daniel Borkmann
On 10/30/2018 07:35 PM, Song Liu wrote: > On Mon, Oct 29, 2018 at 7:35 PM Li Zhijian wrote: >> >> ping binary on some distros doesn't support "ping -6" anymore. >> >> Signed-off-by: Li Zhijian > > I think this should go bpf-next. Please resubmit when the bpf-next tree is > open > (after the

[tip:perf/urgent] tools headers uapi: Update linux/if_link.h header copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 76b0b801782b34b3028dcef3de36cb634e3908a8 Gitweb: https://git.kernel.org/tip/76b0b801782b34b3028dcef3de36cb634e3908a8 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:06:57 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:54 -0300

[tip:perf/urgent] tools headers uapi: Update linux/if_link.h header copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 76b0b801782b34b3028dcef3de36cb634e3908a8 Gitweb: https://git.kernel.org/tip/76b0b801782b34b3028dcef3de36cb634e3908a8 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:06:57 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:54 -0300

[tip:perf/urgent] tools headers uapi: Update linux/netlink.h header copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: d45a57fff0a657045a77b395ae713ffae0cb4e46 Gitweb: https://git.kernel.org/tip/d45a57fff0a657045a77b395ae713ffae0cb4e46 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:04:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:54 -0300

[tip:perf/urgent] tools headers uapi: Update linux/netlink.h header copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: d45a57fff0a657045a77b395ae713ffae0cb4e46 Gitweb: https://git.kernel.org/tip/d45a57fff0a657045a77b395ae713ffae0cb4e46 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:04:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:54 -0300

[tip:perf/urgent] tools headers: Sync the various kvm.h header copies

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 827758129a0f84fbd0b2dda15e14a77a7604803d Gitweb: https://git.kernel.org/tip/827758129a0f84fbd0b2dda15e14a77a7604803d Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:01:46 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] tools headers: Sync the various kvm.h header copies

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 827758129a0f84fbd0b2dda15e14a77a7604803d Gitweb: https://git.kernel.org/tip/827758129a0f84fbd0b2dda15e14a77a7604803d Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 17:01:46 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] tools include uapi: Update linux/mmap.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 685626dc26bd9cead850d06520708acbd16bcfda Gitweb: https://git.kernel.org/tip/685626dc26bd9cead850d06520708acbd16bcfda Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:50:08 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] tools include uapi: Update linux/mmap.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 685626dc26bd9cead850d06520708acbd16bcfda Gitweb: https://git.kernel.org/tip/685626dc26bd9cead850d06520708acbd16bcfda Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:50:08 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] perf trace beauty: Use the mmap flags table generated from headers

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 2f967f1dbbc1f746ad0deda8352bcf563d59e1c7 Gitweb: https://git.kernel.org/tip/2f967f1dbbc1f746ad0deda8352bcf563d59e1c7 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:30:38 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] perf trace beauty: Use the mmap flags table generated from headers

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 2f967f1dbbc1f746ad0deda8352bcf563d59e1c7 Gitweb: https://git.kernel.org/tip/2f967f1dbbc1f746ad0deda8352bcf563d59e1c7 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:30:38 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:53 -0300

[tip:perf/urgent] perf beauty: Wire up the mmap flags table generator to the Makefile

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: fbd7458db75790e37903c75be68513a4c087737c Gitweb: https://git.kernel.org/tip/fbd7458db75790e37903c75be68513a4c087737c Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:11:59 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

Re: remove exofs and the T10 OSD code V2

2018-10-31 Thread Finn Thain
On Wed, 31 Oct 2018, Boaz Harrosh wrote: > > [...] All changes made by other kernel developers than you are the > > result of tree-wide refactoring, compiler warning fixes, fixes for > > issues detected by static source code analyzers or spelling fixes. > > Hence my question: how big is the

[tip:perf/urgent] perf beauty: Wire up the mmap flags table generator to the Makefile

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: fbd7458db75790e37903c75be68513a4c087737c Gitweb: https://git.kernel.org/tip/fbd7458db75790e37903c75be68513a4c087737c Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 16:11:59 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

Re: remove exofs and the T10 OSD code V2

2018-10-31 Thread Finn Thain
On Wed, 31 Oct 2018, Boaz Harrosh wrote: > > [...] All changes made by other kernel developers than you are the > > result of tree-wide refactoring, compiler warning fixes, fixes for > > issues detected by static source code analyzers or spelling fixes. > > Hence my question: how big is the

[tip:perf/urgent] perf beauty: Add a generator for MAP_ mmap's flag constants

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 80ee5668b8a755039ca6180c6272a6e8efee5aad Gitweb: https://git.kernel.org/tip/80ee5668b8a755039ca6180c6272a6e8efee5aad Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 15:26:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

[tip:perf/urgent] perf beauty: Add a generator for MAP_ mmap's flag constants

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 80ee5668b8a755039ca6180c6272a6e8efee5aad Gitweb: https://git.kernel.org/tip/80ee5668b8a755039ca6180c6272a6e8efee5aad Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 15:26:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

[tip:perf/urgent] tools include uapi: Update asound.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 89eb1f3b7f2a9156ce6f78713d7924c1bb2fab9f Gitweb: https://git.kernel.org/tip/89eb1f3b7f2a9156ce6f78713d7924c1bb2fab9f Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 14:20:07 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

[tip:perf/urgent] tools include uapi: Update asound.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 89eb1f3b7f2a9156ce6f78713d7924c1bb2fab9f Gitweb: https://git.kernel.org/tip/89eb1f3b7f2a9156ce6f78713d7924c1bb2fab9f Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 14:20:07 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:52 -0300

[tip:perf/urgent] tools arch uapi: Update asm-generic/unistd.h and arm64 unistd.h copies

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 8dd4c0f68c0db4c0f01af60a99a7ed34fd3dee2b Gitweb: https://git.kernel.org/tip/8dd4c0f68c0db4c0f01af60a99a7ed34fd3dee2b Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 13:10:50 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300

[tip:perf/urgent] tools arch uapi: Update asm-generic/unistd.h and arm64 unistd.h copies

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 8dd4c0f68c0db4c0f01af60a99a7ed34fd3dee2b Gitweb: https://git.kernel.org/tip/8dd4c0f68c0db4c0f01af60a99a7ed34fd3dee2b Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 13:10:50 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300

[tip:perf/urgent] tools include uapi: Update linux/fs.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 733ac4f9935c4b257aff2ec476e6c20665daf6c2 Gitweb: https://git.kernel.org/tip/733ac4f9935c4b257aff2ec476e6c20665daf6c2 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 12:27:37 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300

[tip:perf/urgent] tools include uapi: Update linux/fs.h copy

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 733ac4f9935c4b257aff2ec476e6c20665daf6c2 Gitweb: https://git.kernel.org/tip/733ac4f9935c4b257aff2ec476e6c20665daf6c2 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 30 Oct 2018 12:27:37 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300

[tip:perf/urgent] perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc}

2018-10-31 Thread tip-bot for David S. Miller
Commit-ID: e9024d519d892b38176cafd46f68a7c77412 Gitweb: https://git.kernel.org/tip/e9024d519d892b38176cafd46f68a7c77412 Author: David S. Miller AuthorDate: Tue, 30 Oct 2018 12:12:26 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300 perf

[tip:perf/urgent] perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc}

2018-10-31 Thread tip-bot for David S. Miller
Commit-ID: e9024d519d892b38176cafd46f68a7c77412 Gitweb: https://git.kernel.org/tip/e9024d519d892b38176cafd46f68a7c77412 Author: David S. Miller AuthorDate: Tue, 30 Oct 2018 12:12:26 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:51 -0300 perf

[tip:perf/urgent] perf cs-etm: Correct CPU mode for samples

2018-10-31 Thread tip-bot for Leo Yan
Commit-ID: d6c9c05fe1eb4b213b183d8a1e79416256dc833a Gitweb: https://git.kernel.org/tip/d6c9c05fe1eb4b213b183d8a1e79416256dc833a Author: Leo Yan AuthorDate: Tue, 30 Oct 2018 15:18:28 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:50 -0300 perf cs-etm:

[tip:perf/urgent] perf cs-etm: Correct CPU mode for samples

2018-10-31 Thread tip-bot for Leo Yan
Commit-ID: d6c9c05fe1eb4b213b183d8a1e79416256dc833a Gitweb: https://git.kernel.org/tip/d6c9c05fe1eb4b213b183d8a1e79416256dc833a Author: Leo Yan AuthorDate: Tue, 30 Oct 2018 15:18:28 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:50 -0300 perf cs-etm:

[tip:perf/urgent] perf unwind: Take pgoff into account when reporting elf to libdwfl

2018-10-31 Thread tip-bot for Milian Wolff
Commit-ID: 1fe627da30331024f453faef04d500079b901107 Gitweb: https://git.kernel.org/tip/1fe627da30331024f453faef04d500079b901107 Author: Milian Wolff AuthorDate: Mon, 29 Oct 2018 15:16:44 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:50 -0300 perf unwind:

[tip:perf/urgent] perf unwind: Take pgoff into account when reporting elf to libdwfl

2018-10-31 Thread tip-bot for Milian Wolff
Commit-ID: 1fe627da30331024f453faef04d500079b901107 Gitweb: https://git.kernel.org/tip/1fe627da30331024f453faef04d500079b901107 Author: Milian Wolff AuthorDate: Mon, 29 Oct 2018 15:16:44 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:50 -0300 perf unwind:

[tip:perf/urgent] perf top: Do not use overwrite mode by default

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 218d61110f69632974034b6e27686ce482a1c455 Gitweb: https://git.kernel.org/tip/218d61110f69632974034b6e27686ce482a1c455 Author: Arnaldo Carvalho de Melo AuthorDate: Mon, 29 Oct 2018 09:47:00 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:31 -0300

[tip:perf/urgent] perf top: Allow disabling the overwrite mode

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 4e303fbe2d95806c875f5ebfcb3d980e20b4bd83 Gitweb: https://git.kernel.org/tip/4e303fbe2d95806c875f5ebfcb3d980e20b4bd83 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 15:55:23 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf top: Do not use overwrite mode by default

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 218d61110f69632974034b6e27686ce482a1c455 Gitweb: https://git.kernel.org/tip/218d61110f69632974034b6e27686ce482a1c455 Author: Arnaldo Carvalho de Melo AuthorDate: Mon, 29 Oct 2018 09:47:00 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 31 Oct 2018 09:57:31 -0300

[tip:perf/urgent] perf top: Allow disabling the overwrite mode

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 4e303fbe2d95806c875f5ebfcb3d980e20b4bd83 Gitweb: https://git.kernel.org/tip/4e303fbe2d95806c875f5ebfcb3d980e20b4bd83 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 15:55:23 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Beautify mount's first pathname arg

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 23c07a23cbed389d0b9c7a06486574621df8d1a4 Gitweb: https://git.kernel.org/tip/23c07a23cbed389d0b9c7a06486574621df8d1a4 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 13:51:45 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Beautify mount's first pathname arg

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 23c07a23cbed389d0b9c7a06486574621df8d1a4 Gitweb: https://git.kernel.org/tip/23c07a23cbed389d0b9c7a06486574621df8d1a4 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 13:51:45 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Beautify the umount's 'name' argument

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 476c92cacf383c83584ba02d06c88cf18f062afb Gitweb: https://git.kernel.org/tip/476c92cacf383c83584ba02d06c88cf18f062afb Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 13:23:25 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Beautify the umount's 'name' argument

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 476c92cacf383c83584ba02d06c88cf18f062afb Gitweb: https://git.kernel.org/tip/476c92cacf383c83584ba02d06c88cf18f062afb Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 26 Oct 2018 13:23:25 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace beauty: Beautify mount/umount's 'flags' argument

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 73d141adcea66de656d0c8336811f2b0bbd9700c Gitweb: https://git.kernel.org/tip/73d141adcea66de656d0c8336811f2b0bbd9700c Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 15:18:06 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace beauty: Beautify mount/umount's 'flags' argument

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 73d141adcea66de656d0c8336811f2b0bbd9700c Gitweb: https://git.kernel.org/tip/73d141adcea66de656d0c8336811f2b0bbd9700c Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 15:18:06 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Consider syscall aliases too

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: f932184e282f574cfd34afee917a10b782fd3e76 Gitweb: https://git.kernel.org/tip/f932184e282f574cfd34afee917a10b782fd3e76 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 17:24:45 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace: Consider syscall aliases too

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: f932184e282f574cfd34afee917a10b782fd3e76 Gitweb: https://git.kernel.org/tip/f932184e282f574cfd34afee917a10b782fd3e76 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 17:24:45 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace beauty: Allow syscalls to mask an argument before considering it

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 496fd346b71ffa0ff35623e9ec79df0bad47bd66 Gitweb: https://git.kernel.org/tip/496fd346b71ffa0ff35623e9ec79df0bad47bd66 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 16:09:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf trace beauty: Allow syscalls to mask an argument before considering it

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 496fd346b71ffa0ff35623e9ec79df0bad47bd66 Gitweb: https://git.kernel.org/tip/496fd346b71ffa0ff35623e9ec79df0bad47bd66 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 16:09:47 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf beauty: Introduce strarray__scnprintf_flags()

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 579e5ff629b17744f62473f314768de8b6f1e66c Gitweb: https://git.kernel.org/tip/579e5ff629b17744f62473f314768de8b6f1e66c Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 14:21:31 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf beauty: Introduce strarray__scnprintf_flags()

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 579e5ff629b17744f62473f314768de8b6f1e66c Gitweb: https://git.kernel.org/tip/579e5ff629b17744f62473f314768de8b6f1e66c Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 25 Oct 2018 14:21:31 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf beauty: Switch from GPL v2.0 to LGPL v2.1

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 794f594e0c3be6199e0b3e2324280e8785806fb6 Gitweb: https://git.kernel.org/tip/794f594e0c3be6199e0b3e2324280e8785806fb6 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 15:54:23 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

Re: [PATCH v2] arm64: dts: qcom: sdm845: Add reserve-memory nodes

2018-10-31 Thread Doug Anderson
Hi, On Tue, Oct 30, 2018 at 11:09 PM Sibi Sankar wrote: > > Add reserve-memory nodes for mpss and mba required for > remoteproc mss pil. > > Reviewed-by: Bjorn Andersson > Signed-off-by: Sibi Sankar > --- > arch/arm64/boot/dts/qcom/sdm845.dtsi | 10 ++ > 1 file changed, 10

[tip:perf/urgent] perf beauty: Switch from GPL v2.0 to LGPL v2.1

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 794f594e0c3be6199e0b3e2324280e8785806fb6 Gitweb: https://git.kernel.org/tip/794f594e0c3be6199e0b3e2324280e8785806fb6 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 15:54:23 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

Re: [PATCH v2] arm64: dts: qcom: sdm845: Add reserve-memory nodes

2018-10-31 Thread Doug Anderson
Hi, On Tue, Oct 30, 2018 at 11:09 PM Sibi Sankar wrote: > > Add reserve-memory nodes for mpss and mba required for > remoteproc mss pil. > > Reviewed-by: Bjorn Andersson > Signed-off-by: Sibi Sankar > --- > arch/arm64/boot/dts/qcom/sdm845.dtsi | 10 ++ > 1 file changed, 10

[tip:perf/urgent] perf beauty: Add a generator for MS_ mount/umount's flag constants

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: ceaf8e5b49ce18e9e58d292130e92150d01a34e6 Gitweb: https://git.kernel.org/tip/ceaf8e5b49ce18e9e58d292130e92150d01a34e6 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 14:54:55 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] perf beauty: Add a generator for MS_ mount/umount's flag constants

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: ceaf8e5b49ce18e9e58d292130e92150d01a34e6 Gitweb: https://git.kernel.org/tip/ceaf8e5b49ce18e9e58d292130e92150d01a34e6 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 14:54:55 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:23 -0300

[tip:perf/urgent] tools include uapi: Grab a copy of linux/fs.h

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: f443f38c5789ece6ebe59ae21c27bf861e61c4e2 Gitweb: https://git.kernel.org/tip/f443f38c5789ece6ebe59ae21c27bf861e61c4e2 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 14:31:12 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:22 -0300

[tip:perf/urgent] tools include uapi: Grab a copy of linux/fs.h

2018-10-31 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: f443f38c5789ece6ebe59ae21c27bf861e61c4e2 Gitweb: https://git.kernel.org/tip/f443f38c5789ece6ebe59ae21c27bf861e61c4e2 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 24 Oct 2018 14:31:12 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 30 Oct 2018 11:46:22 -0300

Re: [GIT PULL 00/24] perf/urgent improvements and fixes

2018-10-31 Thread Ingo Molnar
t/acme/linux.git > tags/perf-urgent-for-mingo-4.20-20181031 > > for you to fetch changes up to 5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5: > > perf intel-pt/bts: Calculate cpumode for synthesized samples (2018-10-31 > 12:56:26 -0300) > > --

Re: [GIT PULL 00/24] perf/urgent improvements and fixes

2018-10-31 Thread Ingo Molnar
t/acme/linux.git > tags/perf-urgent-for-mingo-4.20-20181031 > > for you to fetch changes up to 5d4f0edaa3ac4f1844ed7c64cd2bae6f1912bac5: > > perf intel-pt/bts: Calculate cpumode for synthesized samples (2018-10-31 > 12:56:26 -0300) > > --

Re: [GIT PULL] fuse update for 4.20

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 1:31 PM Miklos Szeredi wrote: > > As well as the usual bug fixes, this adds the following new features: > [...] Pulled, Linus

Re: [GIT PULL] fuse update for 4.20

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 1:31 PM Miklos Szeredi wrote: > > As well as the usual bug fixes, this adds the following new features: > [...] Pulled, Linus

Re: 4.18: early boot crash in thermal_cooling_device_destroy_sysfs

2018-10-31 Thread Randy Dunlap
On 10/30/18 10:47 PM, Randy Dunlap wrote: > On 10/30/18 6:07 PM, Zhang Rui wrote: >> Hi, Randy, >> >> On 五, 2018-10-26 at 20:35 -0700, Randy Dunlap wrote: >>> On 10/26/18 2:14 AM, Rafael J. Wysocki wrote: On Monday, October 22, 2018 8:37:25 PM CEST Randy Dunlap wrote: > > >

Re: 4.18: early boot crash in thermal_cooling_device_destroy_sysfs

2018-10-31 Thread Randy Dunlap
On 10/30/18 10:47 PM, Randy Dunlap wrote: > On 10/30/18 6:07 PM, Zhang Rui wrote: >> Hi, Randy, >> >> On 五, 2018-10-26 at 20:35 -0700, Randy Dunlap wrote: >>> On 10/26/18 2:14 AM, Rafael J. Wysocki wrote: On Monday, October 22, 2018 8:37:25 PM CEST Randy Dunlap wrote: > > >

Re: [PATCH v2] Implement /proc/pid/kill

2018-10-31 Thread Joel Fernandes
On Thu, Nov 01, 2018 at 04:33:53AM +1100, Aleksa Sarai wrote: > On 2018-10-31, Joel Fernandes wrote: > > I suggest to maintainers we take this in as an intermediate solution > > since we don't have anything close to it and this is a real issue, and > > the fix proposed is simple. > > I would

Re: [PATCH v2] Implement /proc/pid/kill

2018-10-31 Thread Joel Fernandes
On Thu, Nov 01, 2018 at 04:33:53AM +1100, Aleksa Sarai wrote: > On 2018-10-31, Joel Fernandes wrote: > > I suggest to maintainers we take this in as an intermediate solution > > since we don't have anything close to it and this is a real issue, and > > the fix proposed is simple. > > I would

Re: linux-next: Tree for Oct 31 (vboxguest)

2018-10-31 Thread Randy Dunlap
On 10/31/18 2:41 PM, Arnd Bergmann wrote: > On 10/31/18, Randy Dunlap wrote: >> On 10/30/18 8:59 PM, Stephen Rothwell wrote: >>> Hi all, >>> >>> Please do not add any v4.21/v5.1 code to your linux-next included trees >>> until after the merge window closes. >>> >>> Changes since 20181030: >>> >>

Re: linux-next: Tree for Oct 31 (vboxguest)

2018-10-31 Thread Randy Dunlap
On 10/31/18 2:41 PM, Arnd Bergmann wrote: > On 10/31/18, Randy Dunlap wrote: >> On 10/30/18 8:59 PM, Stephen Rothwell wrote: >>> Hi all, >>> >>> Please do not add any v4.21/v5.1 code to your linux-next included trees >>> until after the merge window closes. >>> >>> Changes since 20181030: >>> >>

Re: [GIT PULL] Ceph updates for 4.20-rc1

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 10:44 AM Ilya Dryomov wrote: > > - a series that fixes some old memory allocation issues in libceph > (myself). We no longer allocate memory in places where allocation > failures cannot be handled and BUG when the allocation fails. > > - support for copy_file_range()

Re: [GIT PULL] Ceph updates for 4.20-rc1

2018-10-31 Thread Linus Torvalds
On Wed, Oct 31, 2018 at 10:44 AM Ilya Dryomov wrote: > > - a series that fixes some old memory allocation issues in libceph > (myself). We no longer allocate memory in places where allocation > failures cannot be handled and BUG when the allocation fails. > > - support for copy_file_range()

Re: [PATCH] memory_hotplug: cond_resched in __remove_pages

2018-10-31 Thread Michal Hocko
On Wed 31-10-18 12:15:50, Andrew Morton wrote: > On Wed, 31 Oct 2018 13:58:40 +0100 Michal Hocko wrote: > > > From: Michal Hocko > > > > We have received a bug report that unbinding a large pmem (>1TB) > > can result in a soft lockup: > > > > ... > > > > It has been reported on an older

Re: [PATCH] memory_hotplug: cond_resched in __remove_pages

2018-10-31 Thread Michal Hocko
On Wed 31-10-18 12:15:50, Andrew Morton wrote: > On Wed, 31 Oct 2018 13:58:40 +0100 Michal Hocko wrote: > > > From: Michal Hocko > > > > We have received a bug report that unbinding a large pmem (>1TB) > > can result in a soft lockup: > > > > ... > > > > It has been reported on an older

Re: linux-next: Tree for Oct 31 (vboxguest)

2018-10-31 Thread Arnd Bergmann
On 10/31/18, Randy Dunlap wrote: > On 10/30/18 8:59 PM, Stephen Rothwell wrote: >> Hi all, >> >> Please do not add any v4.21/v5.1 code to your linux-next included trees >> until after the merge window closes. >> >> Changes since 20181030: >> > > > on i386: > > ld:

Re: linux-next: Tree for Oct 31 (vboxguest)

2018-10-31 Thread Arnd Bergmann
On 10/31/18, Randy Dunlap wrote: > On 10/30/18 8:59 PM, Stephen Rothwell wrote: >> Hi all, >> >> Please do not add any v4.21/v5.1 code to your linux-next included trees >> until after the merge window closes. >> >> Changes since 20181030: >> > > > on i386: > > ld:

Re: [PATCH v3 3/3] pinctrl: upboard: Add UP2 pinctrl and gpio driver

2018-10-31 Thread Dan O'Donovan
On 10/31/2018 09:30 PM, Linus Walleij wrote: > Hi Dan, > > On Wed, Oct 31, 2018 at 9:45 PM Dan O'Donovan wrote: > >> The UP2 board features a Raspberry Pi compatible pin header (HAT) and a >> board-specific expansion connector (EXHAT). Both expose assorted >> functions from either the SoC (such

Re: [PATCH v3 3/3] pinctrl: upboard: Add UP2 pinctrl and gpio driver

2018-10-31 Thread Dan O'Donovan
On 10/31/2018 09:30 PM, Linus Walleij wrote: > Hi Dan, > > On Wed, Oct 31, 2018 at 9:45 PM Dan O'Donovan wrote: > >> The UP2 board features a Raspberry Pi compatible pin header (HAT) and a >> board-specific expansion connector (EXHAT). Both expose assorted >> functions from either the SoC (such

<    7   8   9   10   11   12   13   14   15   16   >