[tip: perf/urgent] perf/x86/intel: Fix a warning on x86_pmu_stop() with large PEBS

2020-12-03 Thread tip-bot2 for Namhyung Kim
The following commit has been merged into the perf/urgent branch of tip: Commit-ID: 5debf02131227d39988e44adf5090fb796fa8466 Gitweb: https://git.kernel.org/tip/5debf02131227d39988e44adf5090fb796fa8466 Author:Namhyung Kim AuthorDate:Thu, 26 Nov 2020 20:09:21 +09:00

[tip: locking/urgent] intel_idle: Build fix

2020-12-03 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the locking/urgent branch of tip: Commit-ID: 4d916140bf28ff027997144ea1bb4299e1536f87 Gitweb: https://git.kernel.org/tip/4d916140bf28ff027997144ea1bb4299e1536f87 Author:Peter Zijlstra AuthorDate:Mon, 30 Nov 2020 12:54:34 +01:00

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Heiko Carstens
On Wed, Dec 02, 2020 at 11:16:05AM +, Mark Rutland wrote: > On Wed, Dec 02, 2020 at 11:56:49AM +0100, Heiko Carstens wrote: > > From 7bd86fb3eb039a4163281472ca79b9158e726526 Mon Sep 17 00:00:00 2001 > > From: Heiko Carstens > > Date: Wed, 2 Dec 2020 11:46:01 +0100 > > Subject: [PATCH] s390:

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Peter Zijlstra
On Wed, Dec 02, 2020 at 11:56:49AM +0100, Heiko Carstens wrote: > From 7bd86fb3eb039a4163281472ca79b9158e726526 Mon Sep 17 00:00:00 2001 > From: Heiko Carstens > Date: Wed, 2 Dec 2020 11:46:01 +0100 > Subject: [PATCH] s390: fix irq state tracing > > With commit 58c644ba512c ("sched/idle: Fix

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Mark Rutland
On Wed, Dec 02, 2020 at 11:56:49AM +0100, Heiko Carstens wrote: > From 7bd86fb3eb039a4163281472ca79b9158e726526 Mon Sep 17 00:00:00 2001 > From: Heiko Carstens > Date: Wed, 2 Dec 2020 11:46:01 +0100 > Subject: [PATCH] s390: fix irq state tracing > > With commit 58c644ba512c ("sched/idle: Fix

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Heiko Carstens
On Wed, Dec 02, 2020 at 10:21:16AM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 08:18:56PM +0100, Heiko Carstens wrote: > OK, so with a little help from s390/PoO and Sven, the code removed skips > the TRACE_IRQS_OFF when IRQs were enabled in the old PSW (the previous > context). > >

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Heiko Carstens
On Wed, Dec 02, 2020 at 10:38:05AM +0100, Peter Zijlstra wrote: > On Wed, Dec 02, 2020 at 08:54:27AM +0100, Heiko Carstens wrote: > > > > But but but... > > > > > > > > do_idle() # IRQs on > > > > local_irq_disable();# IRQs off > > > > defaul_idle_call() #

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Peter Zijlstra
On Wed, Dec 02, 2020 at 08:54:27AM +0100, Heiko Carstens wrote: > > > But but but... > > > > > > do_idle() # IRQs on > > > local_irq_disable(); # IRQs off > > > defaul_idle_call()# IRQs off > > lockdep_hardirqs_on(); # IRQs off, but lockdep things they're

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-02 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 08:18:56PM +0100, Heiko Carstens wrote: > Is there a reason why this should be considered broken? AFAICT this is good. > diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S > index 26bb0603c5a1..92beb1444644 100644 > --- a/arch/s390/kernel/entry.S > +++

[tip:x86/urgent] BUILD SUCCESS fae3a13d2a3d49a89391889808428cf1e72afbd7

2020-12-02 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: fae3a13d2a3d49a89391889808428cf1e72afbd7 x86/resctrl: Fix AMD L3 QOS CDP enable/disable elapsed time: 723m configs tested: 124 configs skipped: 62 The following configs have been built

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Heiko Carstens
> > But but but... > > > > do_idle() # IRQs on > > local_irq_disable();# IRQs off > > defaul_idle_call() # IRQs off > lockdep_hardirqs_on(); # IRQs off, but lockdep things they're on > > arch_cpu_idle() # IRQs off > >

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 11:45:25AM -0800, Linus Torvalds wrote: > On Mon, Nov 30, 2020 at 11:56 PM Peter Zijlstra wrote: > > > > So even if an architecture needs to enable interrupts on idle, we need > > it disabled again when coming out. So we might as well have the arch > > idle routine then

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Linus Torvalds
On Mon, Nov 30, 2020 at 11:56 PM Peter Zijlstra wrote: > > So even if an architecture needs to enable interrupts on idle, we need > it disabled again when coming out. So we might as well have the arch > idle routine then be: STI; HLT; CLI; because then architectures than can > idle with

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Heiko Carstens
On Tue, Dec 01, 2020 at 08:14:41PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 06:57:37PM +, Mark Rutland wrote: > > On Tue, Dec 01, 2020 at 07:15:06PM +0100, Peter Zijlstra wrote: > > > On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > > > > On Tue, Dec 01, 2020 at

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 06:57:37PM +, Mark Rutland wrote: > On Tue, Dec 01, 2020 at 07:15:06PM +0100, Peter Zijlstra wrote: > > On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > > > On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > > > > > > > So after

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Mark Rutland
On Tue, Dec 01, 2020 at 07:15:06PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > > On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > > > > > So after having talked to Sven a bit, the thing that is happening, is > > > > that

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 07:15:06PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > > On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > > > > > So after having talked to Sven a bit, the thing that is happening, is > > > > that

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > > > So after having talked to Sven a bit, the thing that is happening, is > > > that this is the one place where we take interrupts with RCU being > > >

[tip: x86/urgent] x86/resctrl: Fix AMD L3 QOS CDP enable/disable

2020-12-01 Thread tip-bot2 for Babu Moger
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: fae3a13d2a3d49a89391889808428cf1e72afbd7 Gitweb: https://git.kernel.org/tip/fae3a13d2a3d49a89391889808428cf1e72afbd7 Author:Babu Moger AuthorDate:Mon, 30 Nov 2020 09:57:20 -06:00 Committer

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Paul E. McKenney
On Tue, Dec 01, 2020 at 03:55:19PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > > > So after having talked to Sven a bit, the thing that is happening, is > > > that this is the one place where we take interrupts with RCU being > > >

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 06:46:44AM -0800, Paul E. McKenney wrote: > > So after having talked to Sven a bit, the thing that is happening, is > > that this is the one place where we take interrupts with RCU being > > disabled. Normally RCU is watching and all is well, except during idle. > > Isn't

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Paul E. McKenney
On Tue, Dec 01, 2020 at 12:07:24PM +0100, Peter Zijlstra wrote: > On Tue, Dec 01, 2020 at 09:07:34AM +0100, Peter Zijlstra wrote: > > On Mon, Nov 30, 2020 at 08:31:32PM +0100, Christian Borntraeger wrote: > > > On 30.11.20 19:04, Linus Torvalds wrote: > > > > On Mon, Nov 30, 2020 at 5:03 AM Peter

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 09:07:34AM +0100, Peter Zijlstra wrote: > On Mon, Nov 30, 2020 at 08:31:32PM +0100, Christian Borntraeger wrote: > > On 30.11.20 19:04, Linus Torvalds wrote: > > > On Mon, Nov 30, 2020 at 5:03 AM Peter Zijlstra > > > wrote: > > >> > > >>> But but but... > > >>> > > >>>

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-12-01 Thread Peter Zijlstra
On Mon, Nov 30, 2020 at 08:31:32PM +0100, Christian Borntraeger wrote: > On 30.11.20 19:04, Linus Torvalds wrote: > > On Mon, Nov 30, 2020 at 5:03 AM Peter Zijlstra wrote: > >> > >>> But but but... > >>> > >>> do_idle() # IRQs on > >>> local_irq_disable(); # IRQs off

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Peter Zijlstra
On Tue, Dec 01, 2020 at 08:39:06AM +0100, Peter Zijlstra wrote: > On Mon, Nov 30, 2020 at 09:55:44AM -0800, Linus Torvalds wrote: > > > Yes, yes, I can very well imagine some hardware doing a "idle until > > you sense an interrupt, but don't actually take it". It's not > > _impossible_. But it's

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Sven Schnelle
Hi Peter, Peter Zijlstra writes: > On Mon, Nov 30, 2020 at 01:52:11PM +0100, Peter Zijlstra wrote: >> On Mon, Nov 30, 2020 at 01:31:33PM +0100, Sven Schnelle wrote: >> > [0.670280] [ cut here ] >> > [0.670288] WARNING: CPU: 1 PID: 0 at kernel/rcu/tree.c:1054 >>

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Peter Zijlstra
On Mon, Nov 30, 2020 at 09:55:44AM -0800, Linus Torvalds wrote: > Yes, yes, I can very well imagine some hardware doing a "idle until > you sense an interrupt, but don't actually take it". It's not > _impossible_. But it's certainly not normal. A lot of hardware actually does that, including

[tip:irq/urgent] BUILD SUCCESS 9ea69a55b3b9a71cded9726af591949c1138f235

2020-11-30 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git irq/urgent branch HEAD: 9ea69a55b3b9a71cded9726af591949c1138f235 powerpc/pseries: Pass MSI affinity to irq_create_mapping() elapsed time: 722m configs tested: 161 configs skipped: 4 The following configs have been

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Christian Borntraeger
On 30.11.20 19:04, Linus Torvalds wrote: > On Mon, Nov 30, 2020 at 5:03 AM Peter Zijlstra wrote: >> >>> But but but... >>> >>> do_idle() # IRQs on >>> local_irq_disable(); # IRQs off >>> defaul_idle_call()# IRQs off >> lockdep_hardirqs_on(); #

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Linus Torvalds
On Mon, Nov 30, 2020 at 5:03 AM Peter Zijlstra wrote: > > > But but but... > > > > do_idle() # IRQs on > > local_irq_disable(); # IRQs off > > defaul_idle_call()# IRQs off > lockdep_hardirqs_on(); # IRQs off, but lockdep things they're on > >

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Linus Torvalds
On Sun, Nov 29, 2020 at 11:57 PM Peter Zijlstra wrote: > > The idea was to flip all of arch_cpu_idle() to not enable interrupts. I don't think that's realistic. > This is suboptimal for things like x86 where arch_cpu_idle() is > basically STI;HLT, but x86 isn't likely to actually use this code

URGENT RESPONSE NEEDED...

2020-11-30 Thread Adams Elena
has already donated a lot in this country, so you have to make sure that you use this donation fund as I have directed so that the name of the Almighty God will be glorify forever. Your urgent response is required in this matter due to my present critical condition of my health, it was a Sister

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Peter Zijlstra
On Mon, Nov 30, 2020 at 01:52:11PM +0100, Peter Zijlstra wrote: > On Mon, Nov 30, 2020 at 01:31:33PM +0100, Sven Schnelle wrote: > > [0.670280] [ cut here ] > > [0.670288] WARNING: CPU: 1 PID: 0 at kernel/rcu/tree.c:1054 > > rcu_irq_enter+0x7e/0xa8 > > [

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Peter Zijlstra
On Mon, Nov 30, 2020 at 01:31:33PM +0100, Sven Schnelle wrote: > [0.670280] [ cut here ] > [0.670288] WARNING: CPU: 1 PID: 0 at kernel/rcu/tree.c:1054 > rcu_irq_enter+0x7e/0xa8 > [0.670293] Modules linked in: > [0.670299] CPU: 1 PID: 0 Comm: swapper/1

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Sven Schnelle
Hi, Sven Schnelle writes: > Hi Peter, > > Peter Zijlstra writes: > >> On Sun, Nov 29, 2020 at 11:31:41AM -0800, Linus Torvalds wrote: >>> On Sun, Nov 29, 2020 at 5:38 AM Thomas Gleixner wrote: >>> > >>> > Yet two more places which invoke tracing from RCU disabled regions in the >>> > idle

[tip: irq/urgent] powerpc/pseries: Pass MSI affinity to irq_create_mapping()

2020-11-30 Thread tip-bot2 for Laurent Vivier
The following commit has been merged into the irq/urgent branch of tip: Commit-ID: 9ea69a55b3b9a71cded9726af591949c1138f235 Gitweb: https://git.kernel.org/tip/9ea69a55b3b9a71cded9726af591949c1138f235 Author:Laurent Vivier AuthorDate:Thu, 26 Nov 2020 09:28:52 +01:00

[tip: irq/urgent] genirq/irqdomain: Add an irq_create_mapping_affinity() function

2020-11-30 Thread tip-bot2 for Laurent Vivier
The following commit has been merged into the irq/urgent branch of tip: Commit-ID: bb4c6910c8b41623104c2e64a30615682689a54d Gitweb: https://git.kernel.org/tip/bb4c6910c8b41623104c2e64a30615682689a54d Author:Laurent Vivier AuthorDate:Thu, 26 Nov 2020 09:28:51 +01:00

[tip: irq/urgent] MAINTAINERS: Move Jason Cooper to CREDITS

2020-11-30 Thread tip-bot2 for Marc Zyngier
The following commit has been merged into the irq/urgent branch of tip: Commit-ID: 509920aee72ae23235615a009c5148cdb38794c3 Gitweb: https://git.kernel.org/tip/509920aee72ae23235615a009c5148cdb38794c3 Author:Marc Zyngier AuthorDate:Sat, 28 Nov 2020 10:37:07 Committer

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Peter Zijlstra
On Mon, Nov 30, 2020 at 08:56:51AM +0100, Peter Zijlstra wrote: > The idea was to flip all of arch_cpu_idle() to not enable interrupts. > > This is suboptimal for things like x86 where arch_cpu_idle() is > basically STI;HLT, but x86 isn't likely to actually use this code path > anyway, given all

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-30 Thread Sven Schnelle
Hi Peter, Peter Zijlstra writes: > On Sun, Nov 29, 2020 at 11:31:41AM -0800, Linus Torvalds wrote: >> On Sun, Nov 29, 2020 at 5:38 AM Thomas Gleixner wrote: >> > >> > Yet two more places which invoke tracing from RCU disabled regions in the >> > idle path. Similar to the entry path the low

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-29 Thread Peter Zijlstra
On Sun, Nov 29, 2020 at 11:31:41AM -0800, Linus Torvalds wrote: > On Sun, Nov 29, 2020 at 5:38 AM Thomas Gleixner wrote: > > > > Yet two more places which invoke tracing from RCU disabled regions in the > > idle path. Similar to the entry path the low level idle functions have to > > be

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-29 Thread Paul E. McKenney
On Sun, Nov 29, 2020 at 11:31:41AM -0800, Linus Torvalds wrote: > On Sun, Nov 29, 2020 at 5:38 AM Thomas Gleixner wrote: > > > > Yet two more places which invoke tracing from RCU disabled regions in the > > idle path. Similar to the entry path the low level idle functions have to > > be

Re: [GIT pull] irq/urgent for v5.10-rc6

2020-11-29 Thread pr-tracker-bot
The pull request you sent on Sun, 29 Nov 2020 13:37:59 -: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > irq-urgent-2020-11-29 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/8b7a51ba2637ee53ce90624f5f98aaf8ec9b2bcc Thank you! -- Deet-doot-

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-29 Thread pr-tracker-bot
The pull request you sent on Sun, 29 Nov 2020 13:38:00 -: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > locking-urgent-2020-11-29 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/f91a3aa6bce480fe6e08df540129f4a923222419 Thank you! -- Dee

Re: [GIT PULL] efi/urgent for v5.10-rc6

2020-11-29 Thread pr-tracker-bot
The pull request you sent on Sun, 29 Nov 2020 11:42:09 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > tags/efi-urgent-for-v5.10-rc5 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/1214917e008bb8989747b8bf9a721f7a6db8f8d7 Thank you! --

Re: [GIT PULL] x86/urgent for v5.10-rc6

2020-11-29 Thread pr-tracker-bot
The pull request you sent on Sun, 29 Nov 2020 11:38:44 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > tags/x86_urgent_for_v5.10-rc6 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/7255a39d24a7960da3a55e840ca5cbed5fcb476f Thank you! --

Re: [GIT pull] locking/urgent for v5.10-rc6

2020-11-29 Thread Linus Torvalds
On Sun, Nov 29, 2020 at 5:38 AM Thomas Gleixner wrote: > > Yet two more places which invoke tracing from RCU disabled regions in the > idle path. Similar to the entry path the low level idle functions have to > be non-instrumentable. This really seems less than optimal. In particular, lookie

Re: [GIT PULL] efi/urgent for v5.10-rc6

2020-11-29 Thread Borislav Petkov
On Sun, Nov 29, 2020 at 10:32:31AM -0800, Linus Torvalds wrote: > This is not a problem, it's just a note for people to try to avoid > surprising me.. Oh, sorry, forgot to mention: he surprised me too and I asked. He said he's updated his subkeys, yeah, perhaps because they're about to expire and

Re: [GIT PULL] efi/urgent for v5.10-rc6

2020-11-29 Thread Linus Torvalds
On Sun, Nov 29, 2020 at 2:42 AM Borislav Petkov wrote: > > please pull more forwarded EFI urgent fixes. Ard seems to be using almost random signing of his tags. Last time it was signed with subkey 9CD2A0DA, this time it's subkey FBD9627C. I see that it's all the same primary key, and I'm

[GIT pull] locking/urgent for v5.10-rc6

2020-11-29 Thread Thomas Gleixner
Linus, please pull the latest locking/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-urgent-2020-11-29 up to: 6e1d2bc675bd: intel_idle: Fix intel_idle() vs tracing Yet two more places which invoke tracing from RCU disabled regions in the idle path

[GIT pull] irq/urgent for v5.10-rc6

2020-11-29 Thread Thomas Gleixner
Linus, please pull the latest irq/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq-urgent-2020-11-29 up to: 7032908cd584: Merge tag 'irqchip-fixes-5.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent Two fixes

[GIT PULL] efi/urgent for v5.10-rc6

2020-11-29 Thread Borislav Petkov
Hi Linus, please pull more forwarded EFI urgent fixes. Thx. --- The following changes since commit c2fe61d8be491ff8188edaf22e838f81146b: efi/x86: Free efi_pgd with free_pages() (2020-11-10 19:18:11 +0100) are available in the Git repository at: git://git.kernel.org/pub/scm/linux

[GIT PULL] x86/urgent for v5.10-rc6

2020-11-29 Thread Borislav Petkov
Hi Linus, please pull a couple of urgent fixes which accumulated this last week. Thx. --- The following changes since commit 418baf2c28f3473039f2f7377760bd8f6897ae18: Linux 5.10-rc5 (2020-11-22 15:36:08 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux

[tip: efi/urgent] efi/efivars: Set generic ops before loading SSDT

2020-11-27 Thread tip-bot2 for Amadeusz Sławiński
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: 50bdcf047503e30126327d0be4f0ad7337106d68 Gitweb: https://git.kernel.org/tip/50bdcf047503e30126327d0be4f0ad7337106d68 Author:Amadeusz Sławiński AuthorDate:Mon, 23 Nov 2020 12:28:17 -05:00

[tip: efi/urgent] efivarfs: revert "fix memory leak in efivarfs_create()"

2020-11-27 Thread tip-bot2 for Ard Biesheuvel
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: ff04f3b6f2e27f8ae28a498416af2a8dd5072b43 Gitweb: https://git.kernel.org/tip/ff04f3b6f2e27f8ae28a498416af2a8dd5072b43 Author:Ard Biesheuvel AuthorDate:Wed, 25 Nov 2020 08:45:55 +01:00

[tip: efi/urgent] efi: EFI_EARLYCON should depend on EFI

2020-11-27 Thread tip-bot2 for Geert Uytterhoeven
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: 36a237526cd81ff4b6829e6ebd60921c6f976e3b Gitweb: https://git.kernel.org/tip/36a237526cd81ff4b6829e6ebd60921c6f976e3b Author:Geert Uytterhoeven AuthorDate:Tue, 24 Nov 2020 20:16:46 +01:00

[tip: x86/urgent] x86/mce: Do not overwrite no_way_out if mce_end() fails

2020-11-27 Thread tip-bot2 for Gabriele Paoloni
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 25bc65d8ddfc17cc1d7a45bd48e9bdc0e729ced3 Gitweb: https://git.kernel.org/tip/25bc65d8ddfc17cc1d7a45bd48e9bdc0e729ced3 Author:Gabriele Paoloni AuthorDate:Fri, 27 Nov 2020 16:18:15 Committer

[tip:x86/urgent] BUILD SUCCESS 33fc379df76b4991e5ae312f07bcd6820811971e

2020-11-25 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 33fc379df76b4991e5ae312f07bcd6820811971e x86/speculation: Fix prctl() when spectre_v2_user={seccomp,prctl},ibpb elapsed time: 722m configs tested: 91 configs skipped: 53 The following configs

[tip: x86/urgent] x86/speculation: Fix prctl() when spectre_v2_user={seccomp,prctl},ibpb

2020-11-25 Thread tip-bot2 for Anand K Mistry
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 33fc379df76b4991e5ae312f07bcd6820811971e Gitweb: https://git.kernel.org/tip/33fc379df76b4991e5ae312f07bcd6820811971e Author:Anand K Mistry AuthorDate:Tue, 10 Nov 2020 12:33:53 +11:00

[tip: locking/urgent] sched/idle: Fix arch_cpu_idle() vs tracing

2020-11-25 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the locking/urgent branch of tip: Commit-ID: 58c644ba512cfbc2e39b758dd979edd1d6d00e27 Gitweb: https://git.kernel.org/tip/58c644ba512cfbc2e39b758dd979edd1d6d00e27 Author:Peter Zijlstra AuthorDate:Fri, 20 Nov 2020 11:50:35 +01:00

[tip: locking/urgent] intel_idle: Fix intel_idle() vs tracing

2020-11-25 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the locking/urgent branch of tip: Commit-ID: 6e1d2bc675bd57640f5658a4a657ae488db4c204 Gitweb: https://git.kernel.org/tip/6e1d2bc675bd57640f5658a4a657ae488db4c204 Author:Peter Zijlstra AuthorDate:Fri, 20 Nov 2020 11:28:35 +01:00

[tip:irq/urgent] BUILD SUCCESS 7032908cd5842af9710de4815a456241b5e6d2d1

2020-11-25 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/urgent branch HEAD: 7032908cd5842af9710de4815a456241b5e6d2d1 Merge tag 'irqchip-fixes-5.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent elapsed time: 722m configs tested

[tip: irq/urgent] Merge tag 'irqchip-fixes-5.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent

2020-11-24 Thread tip-bot2 for Thomas Gleixner
The following commit has been merged into the irq/urgent branch of tip: Commit-ID: 7032908cd5842af9710de4815a456241b5e6d2d1 Gitweb: https://git.kernel.org/tip/7032908cd5842af9710de4815a456241b5e6d2d1 Author:Thomas Gleixner AuthorDate:Wed, 25 Nov 2020 00:56:28 +01:00

[tip:x86/urgent] BUILD SUCCESS 758999246965eeb8b253d47e72f7bfe508804b16

2020-11-24 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 758999246965eeb8b253d47e72f7bfe508804b16 x86/resctrl: Add necessary kernfs_put() calls to prevent refcount leak elapsed time: 730m configs tested: 128 configs skipped: 79 The following configs

[tip: x86/urgent] x86/resctrl: Remove superfluous kernfs_get() calls to prevent refcount leak

2020-11-24 Thread tip-bot2 for Xiaochen Shen
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: fd8d9db3559a29fd737bcdb7c4fcbe1940caae34 Gitweb: https://git.kernel.org/tip/fd8d9db3559a29fd737bcdb7c4fcbe1940caae34 Author:Xiaochen Shen AuthorDate:Sat, 31 Oct 2020 03:10:53 +08:00

[tip: x86/urgent] x86/resctrl: Add necessary kernfs_put() calls to prevent refcount leak

2020-11-24 Thread tip-bot2 for Xiaochen Shen
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 758999246965eeb8b253d47e72f7bfe508804b16 Gitweb: https://git.kernel.org/tip/758999246965eeb8b253d47e72f7bfe508804b16 Author:Xiaochen Shen AuthorDate:Sat, 31 Oct 2020 03:11:28 +08:00

Re: [GIT pull] perf/urgent for v5.10-rc5

2020-11-22 Thread pr-tracker-bot
The pull request you sent on Sun, 22 Nov 2020 14:47:24 -: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > perf-urgent-2020-11-22 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/48da33058975f3a3084390dbef6aecd9bda7db62 Thank you! -- Deet-do

Re: [GIT pull] sched/urgent for v5.10-rc5

2020-11-22 Thread pr-tracker-bot
The pull request you sent on Sun, 22 Nov 2020 14:47:25 -: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > sched-urgent-2020-11-22 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/f4b936f5d6fd0625a78a7b4b92e98739a2bdb6f7 Thank you! -- Deet-do

Re: [GIT pull] locking/urgent for v5.10-rc5

2020-11-22 Thread pr-tracker-bot
The pull request you sent on Sun, 22 Nov 2020 14:47:23 -: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > locking-urgent-2020-11-22 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/855cf1ee4726bfa2077b2226bff507babe1c8dff Thank you! -- Dee

Re: [GIT PULL] efi/urgent for v5.10-rc5

2020-11-22 Thread pr-tracker-bot
The pull request you sent on Sun, 22 Nov 2020 12:01:55 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > tags/efi-urgent-for-v5.10-rc3 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/68d3fa235fd83ab0fd36c367c0530d16c764051b Thank you! --

Re: [GIT PULL] x86/urgent for v5.10-rc5

2020-11-22 Thread pr-tracker-bot
The pull request you sent on Sun, 22 Nov 2020 11:54:05 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git > tags/x86_urgent_for_v5.10-rc5 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/7d53be55c9d78feb38b29fbcaf77af1343549cf1 Thank you! --

[GIT pull] sched/urgent for v5.10-rc5

2020-11-22 Thread Thomas Gleixner
Linus, please pull the latest sched/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched-urgent-2020-11-22 up to: 2279f540ea7d: sched/deadline: Fix priority inheritance with multiple scheduling classes A couple of scheduler fixes: - Make the conditional

[GIT pull] perf/urgent for v5.10-rc5

2020-11-22 Thread Thomas Gleixner
Linus, please pull the latest perf/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-urgent-2020-11-22 up to: ebd19fc372e3: perf/x86: fix sysfs type mismatches A single fix for the x86 perf sysfs interfaces which used kobject attributes instead of device

[GIT pull] locking/urgent for v5.10-rc5

2020-11-22 Thread Thomas Gleixner
Linus, please pull the latest locking/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-urgent-2020-11-22 up to: 43be4388e94b: lockdep: Put graph lock/unlock under lock_recursion protection A single fix for lockdep which makes the recursion protection

[GIT PULL] efi/urgent for v5.10-rc5

2020-11-22 Thread Borislav Petkov
Hi Linus, please pull the (forwarded) EFI urgent fixes for -rc5. Thx. -- The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec: Linux 5.10-rc1 (2020-10-25 15:14:11 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tip

[GIT PULL] x86/urgent for v5.10-rc5

2020-11-22 Thread Borislav Petkov
Hi Linus, please pull the x86/urgent pile for -rc5. Thx. --- The following changes since commit 09162bc32c880a791c6c0668ce0745cf7958f576: Linux 5.10-rc4 (2020-11-15 16:44:31 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git tags

I NEED YOUR URGENT RESPOND.

2020-11-21 Thread omra musa
you for the mutual benefit of you and I. This fund was deposited in our bank by Mr. Kattan Azmal from Jordan who died in a plane crash in 2000 Tbm 700 aircraft on 31st July with his wife and the whole crew on board. I need your urgent assistance in transferring the sum of ($15) million USD into y

[tip:x86/urgent] BUILD SUCCESS 01cf158e48d2b5ce947430de5896c10f4f7c1822

2020-11-19 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 01cf158e48d2b5ce947430de5896c10f4f7c1822 Revert "iommu/vt-d: Take CONFIG_PCI_ATS into account" elapsed time: 720m configs tested: 133 configs skipped: 3 The following configs have

[tip: x86/urgent] Revert "iommu/vt-d: Take CONFIG_PCI_ATS into account"

2020-11-19 Thread tip-bot2 for Thomas Gleixner
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 01cf158e48d2b5ce947430de5896c10f4f7c1822 Gitweb: https://git.kernel.org/tip/01cf158e48d2b5ce947430de5896c10f4f7c1822 Author:Thomas Gleixner AuthorDate:Thu, 19 Nov 2020 15:07:19 +01:00

[tip: sched/urgent] sched: Fix data-race in wakeup

2020-11-19 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the sched/urgent branch of tip: Commit-ID: f97bb5272d9e95d400d6c8643ebb146b3e3e7842 Gitweb: https://git.kernel.org/tip/f97bb5272d9e95d400d6c8643ebb146b3e3e7842 Author:Peter Zijlstra AuthorDate:Tue, 17 Nov 2020 09:08:41 +01:00

[tip: sched/urgent] sched: Fix rq->nr_iowait ordering

2020-11-19 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the sched/urgent branch of tip: Commit-ID: ec618b84f6e15281cc3660664d34cd0dd2f2579e Gitweb: https://git.kernel.org/tip/ec618b84f6e15281cc3660664d34cd0dd2f2579e Author:Peter Zijlstra AuthorDate:Thu, 24 Sep 2020 13:50:42 +02:00

[tip: sched/urgent] sched/fair: Fix overutilized update in enqueue_task_fair()

2020-11-19 Thread tip-bot2 for Quentin Perret
The following commit has been merged into the sched/urgent branch of tip: Commit-ID: 8e1ac4299a6e8726de42310d9c1379f188140c71 Gitweb: https://git.kernel.org/tip/8e1ac4299a6e8726de42310d9c1379f188140c71 Author:Quentin Perret AuthorDate:Thu, 12 Nov 2020 11:12:01 Committer

[tip: sched/urgent] sched/deadline: Fix priority inheritance with multiple scheduling classes

2020-11-19 Thread tip-bot2 for Juri Lelli
The following commit has been merged into the sched/urgent branch of tip: Commit-ID: 2279f540ea7d05f22d2f0c4224319330228586bc Gitweb: https://git.kernel.org/tip/2279f540ea7d05f22d2f0c4224319330228586bc Author:Juri Lelli AuthorDate:Tue, 17 Nov 2020 07:14:32 +01:00

[tip: perf/urgent] perf/x86: fix sysfs type mismatches

2020-11-19 Thread tip-bot2 for Sami Tolvanen
The following commit has been merged into the perf/urgent branch of tip: Commit-ID: ebd19fc372e3e78bf165f230e7c084e304441c08 Gitweb: https://git.kernel.org/tip/ebd19fc372e3e78bf165f230e7c084e304441c08 Author:Sami Tolvanen AuthorDate:Fri, 13 Nov 2020 10:31:26 -08:00

[tip: locking/urgent] lockdep: Put graph lock/unlock under lock_recursion protection

2020-11-19 Thread tip-bot2 for Boqun Feng
The following commit has been merged into the locking/urgent branch of tip: Commit-ID: 43be4388e94b915799a24f0eaf664bf95b85231f Gitweb: https://git.kernel.org/tip/43be4388e94b915799a24f0eaf664bf95b85231f Author:Boqun Feng AuthorDate:Fri, 13 Nov 2020 19:05:03 +08:00

[tip:x86/urgent] BUILD SUCCESS 860aaabac8235cfde10fe556aa82abbbe3117888

2020-11-18 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 860aaabac8235cfde10fe556aa82abbbe3117888 x86/dumpstack: Do not try to access user space code of other tasks elapsed time: 723m configs tested: 162 configs skipped: 2 The following configs have

[tip: x86/urgent] x86/dumpstack: Do not try to access user space code of other tasks

2020-11-18 Thread tip-bot2 for Thomas Gleixner
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 860aaabac8235cfde10fe556aa82abbbe3117888 Gitweb: https://git.kernel.org/tip/860aaabac8235cfde10fe556aa82abbbe3117888 Author:Thomas Gleixner AuthorDate:Tue, 17 Nov 2020 21:23:34 +01:00

[tip:x86/urgent] BUILD SUCCESS 1a371e67dc77125736cc56d3a0893f06b75855b6

2020-11-17 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 1a371e67dc77125736cc56d3a0893f06b75855b6 x86/microcode/intel: Check patch signature before saving microcode for early loading elapsed time: 723m configs tested: 201 configs skipped: 2

Re: [GIT RFC PULL rcu/urgent] Fix lockdep issue in rcu_print_task_stall()

2020-11-17 Thread pr-tracker-bot
The pull request you sent on Mon, 16 Nov 2020 14:01:53 -0800: > git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git > urgent-fixes has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/9dacf44c3837b7f1cf460de904f352714e7cd107 Thank you! -- Deet-do

VERY VERY URGENT,

2020-11-17 Thread Mr.Basham Zebdani
FROM MR.BASHAM ZEBDANI AUDIT& ACCOUNT MANAGER BANK OF AFRICA (B.O.A) OUAGADOUGOU BURKINA FASO WEST AFRICA. Dear Friend, With due respect, I have decided to contact you on abusiness transaction that will be beneficial to both of us. At the bank last account and auditing evaluation, my staffs

[tip: efi/urgent] efi/arm: set HSCTLR Thumb2 bit correctly for HVC calls from HYP

2020-11-17 Thread tip-bot2 for Ard Biesheuvel
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: fbc81ec5b85d43a4b22e49ec0e643fa7dec2ea40 Gitweb: https://git.kernel.org/tip/fbc81ec5b85d43a4b22e49ec0e643fa7dec2ea40 Author:Ard Biesheuvel AuthorDate:Sat, 03 Oct 2020 17:28:27 +02:00

[tip: efi/urgent] efi/x86: Free efi_pgd with free_pages()

2020-11-17 Thread tip-bot2 for Arvind Sankar
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: c2fe61d8be491ff8188edaf22e838f81146b Gitweb: https://git.kernel.org/tip/c2fe61d8be491ff8188edaf22e838f81146b Author:Arvind Sankar AuthorDate:Tue, 10 Nov 2020 11:39:19 -05:00

[tip: efi/urgent] efivarfs: fix memory leak in efivarfs_create()

2020-11-17 Thread tip-bot2 for Vamshi K Sthambamkadi
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: fe5186cf12e30facfe261e9be6c7904a170bd822 Gitweb: https://git.kernel.org/tip/fe5186cf12e30facfe261e9be6c7904a170bd822 Author:Vamshi K Sthambamkadi AuthorDate:Fri, 23 Oct 2020 17:24:39 +05:30

[tip: x86/urgent] x86/microcode/intel: Check patch signature before saving microcode for early loading

2020-11-17 Thread tip-bot2 for Chen Yu
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 1a371e67dc77125736cc56d3a0893f06b75855b6 Gitweb: https://git.kernel.org/tip/1a371e67dc77125736cc56d3a0893f06b75855b6 Author:Chen Yu AuthorDate:Fri, 13 Nov 2020 09:59:23 +08:00 Committer

[tip:x86/urgent] BUILD SUCCESS 8986f223bd777a73119f5d593c15b4d630ff49bb

2020-11-16 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: 8986f223bd777a73119f5d593c15b4d630ff49bb iommu/vt-d: Take CONFIG_PCI_ATS into account elapsed time: 724m configs tested: 185 configs skipped: 2 The following configs have been built successfully

[GIT RFC PULL rcu/urgent] Fix lockdep issue in rcu_print_task_stall()

2020-11-16 Thread Paul E. McKenney
3650b228f83adda7e5ee532e2b90429c03f7b9ec: Linux 5.10-rc1 (2020-10-25 15:14:11 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git urgent-fixes for you to fetch changes up to c583bcb8f5edd48c1798798e341f78afb9bf4f6f: rcu: Don't invoke

[tip: x86/urgent] iommu/vt-d: Take CONFIG_PCI_ATS into account

2020-11-16 Thread tip-bot2 for Thomas Gleixner
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 8986f223bd777a73119f5d593c15b4d630ff49bb Gitweb: https://git.kernel.org/tip/8986f223bd777a73119f5d593c15b4d630ff49bb Author:Thomas Gleixner AuthorDate:Mon, 16 Nov 2020 13:52:47 +01:00

Re: [git pull] drm nouveau urgent fixes for 5.10-rc4

2020-11-15 Thread Linus Torvalds
On Sun, Nov 15, 2020 at 12:41 PM Dave Airlie wrote: > > As mentioned I did have a fixes pull from Ben from after I'd sent you > out stuff, it contains the fix for the regression reported in the rc1 > thread along with two others. Thanks, pulled, Linus

Re: [git pull] drm nouveau urgent fixes for 5.10-rc4

2020-11-15 Thread pr-tracker-bot
The pull request you sent on Mon, 16 Nov 2020 06:41:34 +1000: > git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-11-16 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/a6af8718b98e1cd37a9ea9a02269c79577fc9138 Thank you! -- Deet-doot-dot, I am a bot.

[git pull] drm nouveau urgent fixes for 5.10-rc4

2020-11-15 Thread Dave Airlie
Hi Linus, As mentioned I did have a fixes pull from Ben from after I'd sent you out stuff, it contains the fix for the regression reported in the rc1 thread along with two others. Dave. drm-fixes-2020-11-16: drm nouveau fixes for 5.10-rc4 nouveau: - atomic modesetting regression fix - ttm

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