Re: [PATCH nf v2] netfilter: conntrack: connection timeout after re-register

2020-10-08 Thread Jozsef Kadlecsik
Hi Francesco, On Thu, 8 Oct 2020, Francesco Ruggeri wrote: > On Wed, Oct 7, 2020 at 12:32 PM Francesco Ruggeri wrote: > > > > If the first packet conntrack sees after a re-register is an outgoing > > keepalive packet with no data (SEG.SEQ = SND.NXT-1), td_end is set to > > SND.NXT-1. When the

Re: [GIT PULL memory-model] LKMM commits for v5.10

2020-10-08 Thread Ingo Molnar
* Paul E. McKenney wrote: > Hello, Ingo! > > This pull request contains Linux-Kernel Memory-Model commits for v5.10. > These have been subjected to LKML review: > > https://lore.kernel.org/lkml/20200831182012.GA1965@paulmck-ThinkPad-P72 > > All of these have also been subjected to the

Re: [PATCH v4 4/4] mmc: sdhci-of-arasan: Enable UHS-1 support for Keem Bay SOC

2020-10-08 Thread Ulf Hansson
On Thu, 8 Oct 2020 at 19:21, Zulkifli, Muhammad Husaini wrote: > > Hi, > > >-Original Message- > >From: Ulf Hansson > >Sent: Thursday, October 8, 2020 11:19 PM > >To: Zulkifli, Muhammad Husaini > >Cc: Hunter, Adrian ; Michal Simek > >; Shevchenko, Andriy > >; linux-...@vger.kernel.org; L

Re: [PATCH] MAINTAINERS: Update entry for st7703 driver after the rename

2020-10-08 Thread Daniel Vetter
atches F: > drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c > > This patch cleanly applies on next-20201008 and resolves the issue above. Generally after 2-3 weeks a patch is lost and unfortunately needs to be resend. Please do that next time around instead of waiting. Patch que

Re: [PATCH 5/5] i2c: geni: sdm845: dont perform DMA for the oneplus6

2020-10-08 Thread Mukesh, Savaliya
On 10/8/2020 3:33 PM, Wolfram Sang wrote: On Wed, Oct 07, 2020 at 05:49:35PM +, Caleb Connolly wrote: The OnePlus 6/T has the same issues as the c630 causing a crash when DMA is used for i2c, so disable it. https://patchwork.kernel.org/patch/11133827/ Signed-off-by: Caleb Connolly Revie

Re: linux-next: build failure after merge of the tip tree

2020-10-08 Thread Vasily Gorbik
On Fri, Oct 09, 2020 at 03:28:46PM +1100, Stephen Rothwell wrote: > Hi all, > > After merging the tip tree, today's linux-next build (perf) failed > like this: > > In file included from tools/include/linux/build_bug.h:5, > from tools/include/linux/kernel.h:8, > f

[PATCH 1/1] perf build: Allow nested externs to enable BUILD_BUG() usage

2020-10-08 Thread Vasily Gorbik
Currently BUILD_BUG() macro is expanded to smth like the following: do { extern void __compiletime_assert_0(void) __attribute__((error("BUILD_BUG failed"))); if (!(!(1))) __compiletime_assert_0(); } while (0); If used in a function

[PATCH] perf trace: Segfault when trying to trace events by cgroup

2020-10-08 Thread Stanislav Ivanichkin
# ./perf trace -e sched:sched_switch -G test -a sleep 1 perf: Segmentation fault Obtained 11 stack frames. ./perf(sighandler_dump_stack+0x43) [0x55cfdc636db3] /lib/x86_64-linux-gnu/libc.so.6(+0x3efcf) [0x7fd23eecafcf] ./perf(parse_cgroups+0x36) [0x55cfdc673f36] ./perf(+0x3186ed) [0x55cfdc70d

Re: [GIT PULL kcsan] KCSAN commits for v5.10

2020-10-08 Thread Ingo Molnar
* Paul E. McKenney wrote: > Hello, Ingo! > > This pull request contains KCSAN updates for v5.10. These have been > subjected to LKML review, most recently here: > > https://lore.kernel.org/lkml/20200831181715.GA1530@paulmck-ThinkPad-P72 > > All of these have also been subjected to the

[GIT PULL] MMC fixes for v5.9-rc9 (final)

2020-10-08 Thread Ulf Hansson
Hi Linus, Here's a PR with an MMC fix intended for v5.9-rc9 (final). Details about the highlights are as usual found in the signed tag. Note that, this fix didn't get the time to cook in linux next. Although, the patch is trivial and also well tested by the people being involved. Please pull thi

Re: [PATCH v39 11/24] x86/sgx: Add SGX enclave driver

2020-10-08 Thread Jarkko Sakkinen
On Wed, Oct 07, 2020 at 09:26:55PM +0200, Greg KH wrote: > On Wed, Oct 07, 2020 at 01:09:01PM -0500, Haitao Huang wrote: > > > > > There is a patch that adds "sgx/provision". > > > > > > > > What number in this series? > > > > > > It's 15/24. > > > > > > > Don't know if this is critical. I'd pr

[PATCH v6 1/2] PCI: dwc: Skip PCIE_MSI_INTR0* programming if MSI is disabled

2020-10-08 Thread Jisheng Zhang
If MSI is disabled, there's no need to program PCIE_MSI_INTR0_MASK and PCIE_MSI_INTR0_ENABLE registers. Signed-off-by: Jisheng Zhang Reviewed-by: Rob Herring Acked-by: Gustavo Pimentel --- drivers/pci/controller/dwc/pcie-designware-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[PATCH v6 2/2] PCI: dwc: Fix MSI page leakage in suspend/resume

2020-10-08 Thread Jisheng Zhang
Currently, dw_pcie_msi_init() allocates and maps page for msi, then program the PCIE_MSI_ADDR_LO and PCIE_MSI_ADDR_HI. The Root Complex may lose power during suspend-to-RAM, so when we resume, we want to redo the latter but not the former. If designware based driver (for example, pcie-tegra194.c) c

[PATCH v6 0/2] PCI: dwc: fix two MSI issues

2020-10-08 Thread Jisheng Zhang
Fix two MSI issues. One to skip PCIE_MSI_INTR0* programming if MSI is disabled, another to use an address in the driver data for MSI address, to fix the MSI page leakage during suspend/resume. Since v5: - rebase on pci/dwc branch - add Acked-by tag Since v4: - fix pci-dra7xx.c Since v3:

Question regarding ext4_journalled_aops: lack of migrate_page

2020-10-08 Thread Chris Goldsworthy
Hi there, ext4_aops and ext4_da_aops both have a migratepage callback, whereas ext4_journalled_aops lacks such a callback. Why is this so? I’m asking this due to the following: when a page containing EXT4 journal buffer heads ends up being migrated, fallback_migrate_page() is used, which ev

linux-next: manual merge of the kspp tree with Linus' tree

2020-10-08 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the kspp tree got a conflict in: lib/random32.c between commit: 09a6b0bc3be7 ("random32: Restore __latent_entropy attribute on net_rand_state") from Linus' tree and commit: 2ce6b0d4293b ("random32: Restore __latent_entropy attribute on net_rand_stat

Re: [PATCH v3 1/5] fpga: dfl: rename the bus type "dfl" to "fpga-dfl"

2020-10-08 Thread Greg KH
On Fri, Oct 09, 2020 at 02:20:59PM +0800, Xu Yilun wrote: > Hi Greg: > > On Mon, Sep 28, 2020 at 09:19:00PM -0700, Moritz Fischer wrote: > > Hi Xu, > > > > On Tue, Sep 29, 2020 at 09:23:23AM +0800, Xu Yilun wrote: > > > Hi moritz: > > > > > > On Sun, Sep 27, 2020 at 04:36:47PM +0800, Xu Yilun wr

[tip: core/rcu] rcu/segcblist: Prevent useless GP start if no CBs to accelerate

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 53922270d21de707a1a0ffaf1e07644e77fcb8db Gitweb: https://git.kernel.org/tip/53922270d21de707a1a0ffaf1e07644e77fcb8db Author:Joel Fernandes (Google) AuthorDate:Thu, 18 Jun 2020 16:29:49 -04:00

[tip: core/rcu] rcutorture: Allow pointer leaks to test diagnostic code

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d685514260e21aabd65a9aa8be045766bdaa0549 Gitweb: https://git.kernel.org/tip/d685514260e21aabd65a9aa8be045766bdaa0549 Author:Paul E. McKenney AuthorDate:Tue, 11 Aug 2020 10:33:39 -07:00 Committ

[tip: core/rcu] torture: Update initrd documentation

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 33595581f53011d1f0ba64a9a2f76d6fa5528f7f Gitweb: https://git.kernel.org/tip/33595581f53011d1f0ba64a9a2f76d6fa5528f7f Author:Paul E. McKenney AuthorDate:Mon, 13 Jul 2020 14:18:33 -07:00 Committ

[tip: core/rcu] torture: Add kvm.sh --help and update help message

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 5461808889405de254ab3370aa7f07ac0b6cb938 Gitweb: https://git.kernel.org/tip/5461808889405de254ab3370aa7f07ac0b6cb938 Author:Paul E. McKenney AuthorDate:Sun, 19 Jul 2020 12:17:53 -07:00 Committ

Re: [PATCH] mm: mmap: Fix general protection fault in unlink_file_vma()

2020-10-08 Thread linmiaohe
Andrew Morton wrote: > On Thu, 8 Oct 2020 07:17:18 + linmiaohe wrote: > >> Andrew Morton wrote: >> > On Wed, 16 Sep 2020 05:07:33 -0400 Miaohe Lin wrote: >> > >> >> The syzbot reported the below general protection fault: >> >> > >> >is this using the correct file? I think it is, but please

[tip: core/rcu] rcutorture: Replace HTTP links with HTTPS ones

2020-10-08 Thread tip-bot2 for Alexander A. Klimov
The following commit has been merged into the core/rcu branch of tip: Commit-ID: afcdf2319d11e0d68e45babd5df65f79771074b5 Gitweb: https://git.kernel.org/tip/afcdf2319d11e0d68e45babd5df65f79771074b5 Author:Alexander A. Klimov AuthorDate:Mon, 13 Jul 2020 21:37:06 +02:00 Comm

[tip: core/rcu] rcutorture: Add CONFIG_PROVE_RCU_LIST to TREE05

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: fc848cf4face352dce663c1fcc73717fba2d4557 Gitweb: https://git.kernel.org/tip/fc848cf4face352dce663c1fcc73717fba2d4557 Author:Paul E. McKenney AuthorDate:Tue, 14 Jul 2020 11:02:15 -07:00 Committ

[tip: core/rcu] kernel/smp: Provide CSD lock timeout diagnostics

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 35feb60474bf4f7fa7840e14fc7fd344996b919d Gitweb: https://git.kernel.org/tip/35feb60474bf4f7fa7840e14fc7fd344996b919d Author:Paul E. McKenney AuthorDate:Tue, 30 Jun 2020 13:22:54 -07:00 Committ

[tip: core/rcu] locktorture: Make function torture_percpu_rwsem_init() static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d49bed9abc3454bd123cbe974ecbeae119701b92 Gitweb: https://git.kernel.org/tip/d49bed9abc3454bd123cbe974ecbeae119701b92 Author:Wei Yongjun AuthorDate:Fri, 03 Jul 2020 13:05:27 +08:00 Committer:

[tip: core/rcu] rcu: Reduce leaf fanout for strict RCU grace periods

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: dc1269186bed3afc5a2018527516be84fe55d3e0 Gitweb: https://git.kernel.org/tip/dc1269186bed3afc5a2018527516be84fe55d3e0 Author:Paul E. McKenney AuthorDate:Wed, 05 Aug 2020 16:52:17 -07:00 Committ

[tip: core/rcu] rcu: Attempt QS when CPU discovers GP for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 1a2f5d57a33f7b9189b6b3e997eb858301482d79 Gitweb: https://git.kernel.org/tip/1a2f5d57a33f7b9189b6b3e997eb858301482d79 Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 16:35:08 -07:00 Committ

[tip: core/rcu] rcutorture: Output number of elapsed grace periods

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 959954df0ca7da2111c3fb67a81798d15b9d Gitweb: https://git.kernel.org/tip/959954df0ca7da2111c3fb67a81798d15b9d Author:Joel Fernandes (Google) AuthorDate:Thu, 18 Jun 2020 16:29:55 -04:00

[tip: core/rcu] torture: document --allcpus argument added to the kvm.sh script

2020-10-08 Thread tip-bot2 for Paul Gortmaker
The following commit has been merged into the core/rcu branch of tip: Commit-ID: fbb9f8531a0d6693189783d295114db4c30624ca Gitweb: https://git.kernel.org/tip/fbb9f8531a0d6693189783d295114db4c30624ca Author:Paul Gortmaker AuthorDate:Thu, 02 Jul 2020 15:59:05 -07:00 Committer

[tip: core/rcu] rcu: Force DEFAULT_RCU_BLIMIT to 1000 for strict RCU GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 29fc5f93320cb447f83baedfe103ed784cadb073 Gitweb: https://git.kernel.org/tip/29fc5f93320cb447f83baedfe103ed784cadb073 Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 06:39:30 -07:00 Committ

[tip: core/rcu] rcu: Restrict default jiffies_till_first_fqs for strict RCU GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: aecd34b9765de3b58c98a1d75b982fc64becd1e9 Gitweb: https://git.kernel.org/tip/aecd34b9765de3b58c98a1d75b982fc64becd1e9 Author:Paul E. McKenney AuthorDate:Wed, 05 Aug 2020 17:25:23 -07:00 Committ

[tip: core/rcu] rcu: Always set .need_qs from __rcu_read_lock() for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: f19920e412fdeed1e15691bcee5b40e18b8e96ff Gitweb: https://git.kernel.org/tip/f19920e412fdeed1e15691bcee5b40e18b8e96ff Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 09:40:18 -07:00 Committ

[tip: core/rcu] rcu: Execute RCU reader shortly after rcu_core for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a657f2617010ae237db5693f875968c28e8f732f Gitweb: https://git.kernel.org/tip/a657f2617010ae237db5693f875968c28e8f732f Author:Paul E. McKenney AuthorDate:Sat, 08 Aug 2020 07:56:31 -07:00 Committ

[tip: core/rcu] rcu: Provide optional RCU-reader exit delay for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 3d29aaf1ef992b5b4612fe32b9e6f517f7bba904 Gitweb: https://git.kernel.org/tip/3d29aaf1ef992b5b4612fe32b9e6f517f7bba904 Author:Paul E. McKenney AuthorDate:Fri, 07 Aug 2020 13:44:10 -07:00 Committ

[tip: core/rcu] rcutorture: Remove KCSAN stubs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 83224afd11d71e0d6effb86fe1ab5725d5415251 Gitweb: https://git.kernel.org/tip/83224afd11d71e0d6effb86fe1ab5725d5415251 Author:Paul E. McKenney AuthorDate:Wed, 17 Jun 2020 13:22:17 -07:00 Committ

[tip: core/rcu] rcu: IPI all CPUs at GP end for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 4e025f52a1e0e8ff4e303fa0a80e2061ccfa27d6 Gitweb: https://git.kernel.org/tip/4e025f52a1e0e8ff4e303fa0a80e2061ccfa27d6 Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 19:42:47 -07:00 Committ

[tip: core/rcu] rcu: Remove unused "cpu" parameter from rcu_report_qs_rdp()

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: cfeac3977ab4b6222a01f79997739d2367a8cc94 Gitweb: https://git.kernel.org/tip/cfeac3977ab4b6222a01f79997739d2367a8cc94 Author:Paul E. McKenney AuthorDate:Thu, 20 Aug 2020 11:26:14 -07:00 Committ

[tip: core/rcu] rcu: Report QS for outermost PREEMPT=n rcu_read_unlock() for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: aa40c138cc8f36e2f5c721fd1bdb823a1ef1a237 Gitweb: https://git.kernel.org/tip/aa40c138cc8f36e2f5c721fd1bdb823a1ef1a237 Author:Paul E. McKenney AuthorDate:Mon, 10 Aug 2020 09:58:03 -07:00 Committ

[tip: core/rcu] rcu: IPI all CPUs at GP start for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 933ada2c3310aa88807e65c8d498b74a2159a9a2 Gitweb: https://git.kernel.org/tip/933ada2c3310aa88807e65c8d498b74a2159a9a2 Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 19:21:48 -07:00 Committ

[tip: core/rcu] rcu: Do full report for .need_qs for strict GPs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 44bad5b3cca2d452d17ef82841b20b42a2cf11a0 Gitweb: https://git.kernel.org/tip/44bad5b3cca2d452d17ef82841b20b42a2cf11a0 Author:Paul E. McKenney AuthorDate:Thu, 06 Aug 2020 15:12:50 -07:00 Committ

[tip: core/rcu] scftorture: Add smp_call_function_single() memory-ordering checks

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: b93e21a51e1c8ed3816da888d34f88193ad1b917 Gitweb: https://git.kernel.org/tip/b93e21a51e1c8ed3816da888d34f88193ad1b917 Author:Paul E. McKenney AuthorDate:Tue, 30 Jun 2020 20:49:50 -07:00 Committ

[tip: core/rcu] rcuperf: Change rcuperf to rcuscale

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 4e88ec4a9eb17527e640b063f79e5b875733eb53 Gitweb: https://git.kernel.org/tip/4e88ec4a9eb17527e640b063f79e5b875733eb53 Author:Paul E. McKenney AuthorDate:Tue, 11 Aug 2020 21:18:12 -07:00 Committ

[tip: core/rcu] scftorture: Consolidate scftorture_invoke_one() check and kfree()

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 676e5469643e716df7f39ef77ba8f09c85b0c4f8 Gitweb: https://git.kernel.org/tip/676e5469643e716df7f39ef77ba8f09c85b0c4f8 Author:Paul E. McKenney AuthorDate:Wed, 01 Jul 2020 14:13:02 -07:00 Committ

[tip: core/rcu] scftorture: Add smp_call_function() memory-ordering checks

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 34e8c4837adb579962e528a4f7dd1f75cb120be4 Gitweb: https://git.kernel.org/tip/34e8c4837adb579962e528a4f7dd1f75cb120be4 Author:Paul E. McKenney AuthorDate:Wed, 01 Jul 2020 13:49:06 -07:00 Committ

[tip: core/rcu] tick-sched: Clarify "NOHZ: local_softirq_pending" warning

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: bca37119c57bdc2c68c84b313a5118005e8693cf Gitweb: https://git.kernel.org/tip/bca37119c57bdc2c68c84b313a5118005e8693cf Author:Paul E. McKenney AuthorDate:Fri, 26 Jun 2020 13:39:41 -07:00 Committ

[tip: core/rcu] torture: Declare parse-console.sh independence from rcutorture

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 687d4775db56d24c81b4704056186d6c506de30d Gitweb: https://git.kernel.org/tip/687d4775db56d24c81b4704056186d6c506de30d Author:Paul E. McKenney AuthorDate:Tue, 30 Jun 2020 13:37:22 -07:00 Committ

[tip: core/rcu] scftorture: Implement weighted primitive selection

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 5022b8ac608f8b80b042a8041fe2738c4b9ea8cf Gitweb: https://git.kernel.org/tip/5022b8ac608f8b80b042a8041fe2738c4b9ea8cf Author:Paul E. McKenney AuthorDate:Thu, 25 Jun 2020 17:05:58 -07:00 Committ

[tip: core/rcu] scftorture: Add smp_call_function_many() memory-ordering checks

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 980205ee8489d53c4380f7762debac87312b0fb3 Gitweb: https://git.kernel.org/tip/980205ee8489d53c4380f7762debac87312b0fb3 Author:Paul E. McKenney AuthorDate:Wed, 01 Jul 2020 12:30:02 -07:00 Committ

[tip: core/rcu] scftorture: Consolidate scftorture_invoke_one() scf_check initialization

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 4df55bddc1a360e94c86e227fe417ac9422cb615 Gitweb: https://git.kernel.org/tip/4df55bddc1a360e94c86e227fe417ac9422cb615 Author:Paul E. McKenney AuthorDate:Thu, 09 Jul 2020 13:58:32 -07:00 Committ

[tip: core/rcu] scftorture: Flag errors in torture-compatible manner

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: dbf83b655a7853bc430af10e9a3e7eb1f4c90f86 Gitweb: https://git.kernel.org/tip/dbf83b655a7853bc430af10e9a3e7eb1f4c90f86 Author:Paul E. McKenney AuthorDate:Wed, 01 Jul 2020 16:06:22 -07:00 Committ

[tip: core/rcu] rcu: Add Kconfig option for strict RCU grace periods

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 8cbd0e38a9f2de38e8991c5c1c6f9024b2731d17 Gitweb: https://git.kernel.org/tip/8cbd0e38a9f2de38e8991c5c1c6f9024b2731d17 Author:Paul E. McKenney AuthorDate:Wed, 05 Aug 2020 15:51:20 -07:00 Committ

[tip: core/rcu] rcu: Move rcu_cpu_started per-CPU variable to rcu_data

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: c0f97f20e5d97a1358ade650fcf6a322c0c9bc72 Gitweb: https://git.kernel.org/tip/c0f97f20e5d97a1358ade650fcf6a322c0c9bc72 Author:Paul E. McKenney AuthorDate:Fri, 24 Jul 2020 20:22:05 -07:00 Committ

[tip: core/rcu] torture: Add scftorture to the rcutorture scripting

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 80c9476e683ec37ba45fd8e6a5c5081bea207e1a Gitweb: https://git.kernel.org/tip/80c9476e683ec37ba45fd8e6a5c5081bea207e1a Author:Paul E. McKenney AuthorDate:Wed, 24 Jun 2020 17:57:07 -07:00 Committ

[tip: core/rcu] kvm: mmu: page_track: Fix RCU list API usage

2020-10-08 Thread tip-bot2 for Madhuparna Bhowmik
The following commit has been merged into the core/rcu branch of tip: Commit-ID: df9a30fd1f70a757df193acd7396622eee23e527 Gitweb: https://git.kernel.org/tip/df9a30fd1f70a757df193acd7396622eee23e527 Author:Madhuparna Bhowmik AuthorDate:Sun, 12 Jul 2020 18:40:03 +05:30 Commi

[tip: core/rcu] rcu/nocb: Add a warning for non-GP kthread running GP code

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 4569c5ee95d5695bfd794ae968c2d59b3e69129a Gitweb: https://git.kernel.org/tip/4569c5ee95d5695bfd794ae968c2d59b3e69129a Author:Paul E. McKenney AuthorDate:Wed, 05 Aug 2020 10:35:16 -07:00 Committ

[tip: core/rcu] scftorture: Summarize per-thread statistics

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: dba3142b37f343734bf61dbce2914acb76e69fb6 Gitweb: https://git.kernel.org/tip/dba3142b37f343734bf61dbce2914acb76e69fb6 Author:Paul E. McKenney AuthorDate:Tue, 30 Jun 2020 16:13:37 -07:00 Committ

[tip: core/rcu] scftorture: Add smp_call_function() torture test

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: e9d338a0b1799c988b678e8ccb66a442272e6aa3 Gitweb: https://git.kernel.org/tip/e9d338a0b1799c988b678e8ccb66a442272e6aa3 Author:Paul E. McKenney AuthorDate:Wed, 24 Jun 2020 15:59:59 -07:00 Committ

[tip: core/rcu] scftorture: Add cond_resched() to test loop

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 65bd77f554336407f5fd7ced7a6df686767fba21 Gitweb: https://git.kernel.org/tip/65bd77f554336407f5fd7ced7a6df686767fba21 Author:Paul E. McKenney AuthorDate:Thu, 23 Jul 2020 15:53:02 -07:00 Committ

[tip: core/rcu] rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_cpu_stall_ftrace_dump

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 1ef5a442a113d140580b3b8bbd6f50c9f7746397 Gitweb: https://git.kernel.org/tip/1ef5a442a113d140580b3b8bbd6f50c9f7746397 Author:Paul E. McKenney AuthorDate:Tue, 23 Jun 2020 20:57:59 -07:00 Committ

[tip: core/rcu] rcu: Initialize at declaration time in rcu_exp_handler()

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 7487ea07dfa9bd782a13469cab18973ea0ab8c57 Gitweb: https://git.kernel.org/tip/7487ea07dfa9bd782a13469cab18973ea0ab8c57 Author:Paul E. McKenney AuthorDate:Thu, 18 Jun 2020 09:51:12 -07:00 Committ

[tip: core/rcu] rcu/tree: Remove CONFIG_PREMPT_RCU check in force_qs_rnp()

2020-10-08 Thread tip-bot2 for Neeraj Upadhyay
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9b1ce0acb5e65e9ea1e6b322562d072f9f7d1f6e Gitweb: https://git.kernel.org/tip/9b1ce0acb5e65e9ea1e6b322562d072f9f7d1f6e Author:Neeraj Upadhyay AuthorDate:Mon, 22 Jun 2020 23:37:03 +05:30 Committe

[tip: core/rcu] rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_divisor

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: b5374b2df0ac1c78895b8eb8d9582a7bdc67257d Gitweb: https://git.kernel.org/tip/b5374b2df0ac1c78895b8eb8d9582a7bdc67257d Author:Paul E. McKenney AuthorDate:Tue, 23 Jun 2020 17:09:27 -07:00 Committ

[tip: core/rcu] rcu/trace: Use gp_seq_req in acceleration's rcu_grace_period tracepoint

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a7886e899fd8334a03d37e66ad10295d175725ea Gitweb: https://git.kernel.org/tip/a7886e899fd8334a03d37e66ad10295d175725ea Author:Joel Fernandes (Google) AuthorDate:Thu, 18 Jun 2020 21:36:40 -04:00

[tip: core/rcu] rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_kick_kthreads

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: fe63b723cc7ca3a91ea91274e0f2cba29452b3fa Gitweb: https://git.kernel.org/tip/fe63b723cc7ca3a91ea91274e0f2cba29452b3fa Author:Paul E. McKenney AuthorDate:Tue, 23 Jun 2020 18:04:45 -07:00 Committ

[tip: core/rcu] rcu/trace: Print negative GP numbers correctly

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: c30068f41a0e899f870e0158a2c69c68d738bf96 Gitweb: https://git.kernel.org/tip/c30068f41a0e899f870e0158a2c69c68d738bf96 Author:Joel Fernandes (Google) AuthorDate:Thu, 18 Jun 2020 21:36:39 -04:00

[tip: core/rcu] rcu: Remove KCSAN stubs from update.c

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: beb27bd649a08655b6e15b71265fccad9c00bd2c Gitweb: https://git.kernel.org/tip/beb27bd649a08655b6e15b71265fccad9c00bd2c Author:Paul E. McKenney AuthorDate:Wed, 17 Jun 2020 13:26:20 -07:00 Committ

[tip: core/rcu] rcu: Remove KCSAN stubs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ebc3505d507cf0aafdc31e4b2359c9b22b3927c8 Gitweb: https://git.kernel.org/tip/ebc3505d507cf0aafdc31e4b2359c9b22b3927c8 Author:Paul E. McKenney AuthorDate:Wed, 17 Jun 2020 13:25:26 -07:00 Committ

[tip: core/rcu] rcu: Fix kerneldoc comments in rcupdate.h

2020-10-08 Thread tip-bot2 for Tobias Klauser
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 000601bb62330f18dc8f5d2d0b82e9aec3e207c4 Gitweb: https://git.kernel.org/tip/000601bb62330f18dc8f5d2d0b82e9aec3e207c4 Author:Tobias Klauser AuthorDate:Thu, 09 Jul 2020 15:05:59 +02:00 Committer

[tip: core/rcu] rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_resched_ns

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a2b354b9950bb859d8d959f951dda26725b041fb Gitweb: https://git.kernel.org/tip/a2b354b9950bb859d8d959f951dda26725b041fb Author:Paul E. McKenney AuthorDate:Tue, 23 Jun 2020 17:49:40 -07:00 Committ

[tip: core/rcu] rculist: Introduce list/hlist_for_each_entry_srcu() macros

2020-10-08 Thread tip-bot2 for Madhuparna Bhowmik
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ae2212a7216b674633bdc3bd2e24947a0665efb8 Gitweb: https://git.kernel.org/tip/ae2212a7216b674633bdc3bd2e24947a0665efb8 Author:Madhuparna Bhowmik AuthorDate:Sun, 12 Jul 2020 18:40:02 +05:30 Commi

[tip: core/rcu] nocb: Remove show_rcu_nocb_state() false positive printout

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 2130c6b4f610ea65e9df71dfa79ee08f2fc17743 Gitweb: https://git.kernel.org/tip/2130c6b4f610ea65e9df71dfa79ee08f2fc17743 Author:Paul E. McKenney AuthorDate:Mon, 22 Jun 2020 16:46:43 -07:00 Committ

[tip: core/rcu] scftorture: Check unexpected "switch" statement value

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: de77d4da54d10df97d265e7e99112bfc2fef7d4a Gitweb: https://git.kernel.org/tip/de77d4da54d10df97d265e7e99112bfc2fef7d4a Author:Paul E. McKenney AuthorDate:Thu, 02 Jul 2020 12:15:37 -07:00 Committ

[tip: core/rcu] nocb: Clarify RCU nocb CPU error message

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: e082c7b38185af0f59e55efff840939c35391f85 Gitweb: https://git.kernel.org/tip/e082c7b38185af0f59e55efff840939c35391f85 Author:Paul E. McKenney AuthorDate:Mon, 22 Jun 2020 09:25:34 -07:00 Committ

[tip: core/rcu] srcu: Remove KCSAN stubs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d9b60741318f6f8bcb2adc4beaef724c923fcb93 Gitweb: https://git.kernel.org/tip/d9b60741318f6f8bcb2adc4beaef724c923fcb93 Author:Paul E. McKenney AuthorDate:Wed, 17 Jun 2020 13:24:04 -07:00 Committ

[tip: core/rcu] rcu/tree: Force quiescent state on callback overload

2020-10-08 Thread tip-bot2 for Neeraj Upadhyay
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9c39245382de4d52a122641952900709d4a9950b Gitweb: https://git.kernel.org/tip/9c39245382de4d52a122641952900709d4a9950b Author:Neeraj Upadhyay AuthorDate:Mon, 22 Jun 2020 00:07:27 +05:30 Committe

[tip: core/rcu] rcu: Make FQS more aggressive in complaining about offline CPUs

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 666ca2907e6b75960ce2f0fe50afc5d8a46f296d Gitweb: https://git.kernel.org/tip/666ca2907e6b75960ce2f0fe50afc5d8a46f296d Author:Joel Fernandes (Google) AuthorDate:Fri, 07 Aug 2020 13:07:20 -04:00

[tip: core/rcu] refperf: Avoid null pointer dereference when buf fails to allocate

2020-10-08 Thread tip-bot2 for Colin Ian King
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 58db5785b0d76be4582a32a7900acce88e691d36 Gitweb: https://git.kernel.org/tip/58db5785b0d76be4582a32a7900acce88e691d36 Author:Colin Ian King AuthorDate:Thu, 16 Jul 2020 15:38:56 +01:00 Committer

[tip: core/rcu] scftorture: Adapt memory-ordering test to UP operation

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9e66bf03f9c538863e614a72c5799bcd9579630e Gitweb: https://git.kernel.org/tip/9e66bf03f9c538863e614a72c5799bcd9579630e Author:Paul E. McKenney AuthorDate:Fri, 03 Jul 2020 15:23:19 -07:00 Committ

[tip: core/rcu] scftorture: Prevent compiler from reducing race probabilities

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ee7035d29576dcb59b1191e5f609517cacab1e56 Gitweb: https://git.kernel.org/tip/ee7035d29576dcb59b1191e5f609517cacab1e56 Author:Paul E. McKenney AuthorDate:Wed, 01 Jul 2020 16:38:16 -07:00 Committ

[tip: core/rcu] rcutorture: Hoist OOM registry up one level

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 299c7d94f635ab93ffb0468aec6b6e2176ec5cbf Gitweb: https://git.kernel.org/tip/299c7d94f635ab93ffb0468aec6b6e2176ec5cbf Author:Paul E. McKenney AuthorDate:Wed, 22 Jul 2020 10:45:12 -07:00 Committ

[tip: core/rcu] doc: Drop doubled words from RCU Data-Structures.rst

2020-10-08 Thread tip-bot2 for Randy Dunlap
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 1b98b7c5eb2f94eddad541d6fc91f1d1995d644b Gitweb: https://git.kernel.org/tip/1b98b7c5eb2f94eddad541d6fc91f1d1995d644b Author:Randy Dunlap AuthorDate:Fri, 03 Jul 2020 14:33:41 -07:00 Committer:

[tip: core/rcu] rcutorture: Properly synchronize with OOM notifier

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 57f602022e82ee8fa6476d0e16ddbaf3eb86b245 Gitweb: https://git.kernel.org/tip/57f602022e82ee8fa6476d0e16ddbaf3eb86b245 Author:Paul E. McKenney AuthorDate:Mon, 20 Jul 2020 08:34:07 -07:00 Committ

[tip: core/rcu] torture: Add gdb support

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: b67a91703a29b93f5b114052b0b8e0d84e717ad3 Gitweb: https://git.kernel.org/tip/b67a91703a29b93f5b114052b0b8e0d84e717ad3 Author:Paul E. McKenney AuthorDate:Mon, 17 Aug 2020 16:44:48 -07:00 Committ

[tip: core/rcu] scftorture: Block scftorture_invoker() kthreads for offline CPUs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a7c072ef26644b632241d549869f10f8d2dd3b5c Gitweb: https://git.kernel.org/tip/a7c072ef26644b632241d549869f10f8d2dd3b5c Author:Paul E. McKenney AuthorDate:Thu, 02 Jul 2020 14:15:33 -07:00 Committ

[tip: core/rcu] lib: Add backtrace_idle parameter to force backtrace of idle CPUs

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 160c7ba34605d9b59ee406a1b4a61b0f942b1ae9 Gitweb: https://git.kernel.org/tip/160c7ba34605d9b59ee406a1b4a61b0f942b1ae9 Author:Paul E. McKenney AuthorDate:Wed, 08 Jul 2020 16:25:43 -07:00 Committ

[tip: core/rcu] rcu: Remove unused __rcu_is_watching() function

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 7f2a53c231fe5d9522c3b695ab454203904031ac Gitweb: https://git.kernel.org/tip/7f2a53c231fe5d9522c3b695ab454203904031ac Author:Paul E. McKenney AuthorDate:Mon, 17 Aug 2020 10:37:22 -07:00 Committ

[tip: core/rcu] doc: Drop doubled words from RCU requirements documentation

2020-10-08 Thread tip-bot2 for Randy Dunlap
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 7f45d6f8ae383ed01070883b3c74ee51c9740065 Gitweb: https://git.kernel.org/tip/7f45d6f8ae383ed01070883b3c74ee51c9740065 Author:Randy Dunlap AuthorDate:Fri, 03 Jul 2020 14:33:42 -07:00 Committer:

[tip: core/rcu] docs: Fix typo in synchronize_rcu() function name

2020-10-08 Thread tip-bot2 for Tobias Klauser
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 77f808607a62c3685381a5732a88b30bad8893b5 Gitweb: https://git.kernel.org/tip/77f808607a62c3685381a5732a88b30bad8893b5 Author:Tobias Klauser AuthorDate:Thu, 02 Jul 2020 18:28:10 +02:00 Committer

[tip: core/rcu] rcu: Clarify comments about FQS loop reporting quiescent states

2020-10-08 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: f37599e6f06da47e49c3408afe66c5b6e83a90bd Gitweb: https://git.kernel.org/tip/f37599e6f06da47e49c3408afe66c5b6e83a90bd Author:Joel Fernandes (Google) AuthorDate:Fri, 07 Aug 2020 13:07:19 -04:00

[tip: core/rcu] scftorture: Make symbol 'scf_torture_rand' static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9a52a574676f8d4aa55f69319231ce6c343b00bb Gitweb: https://git.kernel.org/tip/9a52a574676f8d4aa55f69319231ce6c343b00bb Author:Wei Yongjun AuthorDate:Thu, 02 Jul 2020 09:56:50 -07:00 Committer:

[tip: core/rcu] rcutorture: Properly set rcu_fwds for OOM handling

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: c8fa63714763b7795a3f5fb7ed6d000763e6dccc Gitweb: https://git.kernel.org/tip/c8fa63714763b7795a3f5fb7ed6d000763e6dccc Author:Paul E. McKenney AuthorDate:Sun, 19 Jul 2020 14:40:31 -07:00 Committ

[tip: core/rcu] smp: Make symbol 'csd_bug_count' static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 2b722160f1a7929f38dfb648c7bbb45f96e65a5b Gitweb: https://git.kernel.org/tip/2b722160f1a7929f38dfb648c7bbb45f96e65a5b Author:Wei Yongjun AuthorDate:Mon, 06 Jul 2020 21:49:41 +08:00 Committer:

[tip: core/rcu] rcu: Shrink each possible cpu krcp

2020-10-08 Thread tip-bot2 for Zqiang
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 70060b8770d34f83e9fa4c3526db013dd2773611 Gitweb: https://git.kernel.org/tip/70060b8770d34f83e9fa4c3526db013dd2773611 Author:Zqiang AuthorDate:Fri, 14 Aug 2020 14:45:57 +08:00 Committer: Pa

[tip: core/rcu] smp: Add source and destination CPUs to __call_single_data

2020-10-08 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: e48c15b796d412ede883bb2ef7779b2a142f7962 Gitweb: https://git.kernel.org/tip/e48c15b796d412ede883bb2ef7779b2a142f7962 Author:Paul E. McKenney AuthorDate:Mon, 29 Jun 2020 17:21:32 -07:00 Committ

Re: [PATCH v4] mmc: core: don't set limits.discard_granularity as 0

2020-10-08 Thread Ulf Hansson
On Fri, 2 Oct 2020 at 03:39, Coly Li wrote: > > In mmc_queue_setup_discard() the mmc driver queue's discard_granularity > might be set as 0 (when card->pref_erase > max_discard) while the mmc > device still declares to support discard operation. This is buggy and > triggered the following kernel w

Re: [GIT PULL tip/core/rcu] RCU commits for v5.10

2020-10-08 Thread Ingo Molnar
* Paul E. McKenney wrote: > Hello, Ingo! > > This pull request contains the following changes: > > 1.Documentation updates. > > https://lore.kernel.org/lkml/20200831175419.GA31013@paulmck-ThinkPad-P72 > > 2.Miscellaneous fixes. > > https://lore.kernel.org/lkml/202008311

Re: [PATCH v3 1/5] fpga: dfl: rename the bus type "dfl" to "fpga-dfl"

2020-10-08 Thread Xu Yilun
Hi Greg: On Mon, Sep 28, 2020 at 09:19:00PM -0700, Moritz Fischer wrote: > Hi Xu, > > On Tue, Sep 29, 2020 at 09:23:23AM +0800, Xu Yilun wrote: > > Hi moritz: > > > > On Sun, Sep 27, 2020 at 04:36:47PM +0800, Xu Yilun wrote: > > > Hi Greg, > > > > > > On Sun, Sep 27, 2020 at 09:54:01AM +0200, G

Re: [PATCH v2 1/2] dt-bindings: pwm: renesas,tpu-pwm: Document r8a7742 support

2020-10-08 Thread Uwe Kleine-König
On Tue, Oct 06, 2020 at 09:19:09AM +0100, Lad Prabhakar wrote: > Document r8a7742 specific compatible strings. No driver change is > needed as the fallback compatible string "renesas,tpu" activates the > right code in the driver. > > Signed-off-by: Lad Prabhakar > Reviewed-by: Marian-Cristian Rot

[tip: perf/urgent] perf: Fix task_function_call() error handling

2020-10-08 Thread tip-bot2 for Kajol Jain
The following commit has been merged into the perf/urgent branch of tip: Commit-ID: 6d6b8b9f4fceab7266ca03d194f60ec72bd4b654 Gitweb: https://git.kernel.org/tip/6d6b8b9f4fceab7266ca03d194f60ec72bd4b654 Author:Kajol Jain AuthorDate:Thu, 27 Aug 2020 12:17:32 +05:30 Committer:

  1   2   3   4   5   6   7   8   9   10   >