All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/tdx: Fix crash on kexec
@ 2024-06-29 13:06 Kirill A. Shutemov
  2024-06-29 13:59 ` Borislav Petkov
  0 siblings, 1 reply; 13+ messages in thread
From: Kirill A. Shutemov @ 2024-06-29 13:06 UTC (permalink / raw)
  To: Kirill A. Shutemov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, x86, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang
  Cc: Rick Edgecombe, Dexuan Cui, linux-coco, linux-kernel

The function tdx_enc_status_changed() was modified to handle vmalloc()
mappings. It now utilizes slow_virt_to_phys() to determine the physical
address of the page by walking page tables and looking for the physical
address in the page table entry.

However, this adjustment conflicted with the enabling of kexec. The
function tdx_kexec_finish() clears the page table entry before calling
tdx_enc_status_changed(), causing a BUG_ON() error in
slow_virt_to_phys().

To address this issue, tdx_enc_status_change() should use __pa() to
obtain physical addresses whenever possible. The virt_addr_valid() check
will handle such cases, while any other scenarios, including vmalloc()
mappings, will resort to slow_virt_to_phys().

Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Fixes: e1b8ac3aae58 ("x86/tdx: Support vmalloc() for tdx_enc_status_changed()")
---
 arch/x86/coco/tdx/tdx.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/arch/x86/coco/tdx/tdx.c b/arch/x86/coco/tdx/tdx.c
index ef8ec2425998..8f471260924f 100644
--- a/arch/x86/coco/tdx/tdx.c
+++ b/arch/x86/coco/tdx/tdx.c
@@ -813,8 +813,16 @@ static bool tdx_enc_status_changed(unsigned long vaddr, int numpages, bool enc)
 		step = PAGE_SIZE;
 
 	for (addr = start; addr < end; addr += step) {
-		phys_addr_t start_pa = slow_virt_to_phys((void *)addr);
-		phys_addr_t end_pa   = start_pa + step;
+		phys_addr_t start_pa;
+		phys_addr_t end_pa;
+
+		/* The check fails on vmalloc() mappings */
+		if (virt_addr_valid(addr))
+			start_pa = __pa(addr);
+		else
+			start_pa = slow_virt_to_phys((void *)addr);
+
+		end_pa = start_pa + step;
 
 		if (!tdx_enc_status_changed_phys(start_pa, end_pa, enc))
 			return false;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-06-29 13:06 [PATCH] x86/tdx: Fix crash on kexec Kirill A. Shutemov
@ 2024-06-29 13:59 ` Borislav Petkov
  2024-06-29 14:04   ` Kirill A. Shutemov
  0 siblings, 1 reply; 13+ messages in thread
From: Borislav Petkov @ 2024-06-29 13:59 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Dave Hansen, Thomas Gleixner, Ingo Molnar, x86, H. Peter Anvin,
	Michael Kelley, Kuppuswamy Sathyanarayanan, Kai Huang,
	Rick Edgecombe, Dexuan Cui, linux-coco, linux-kernel

On Sat, Jun 29, 2024 at 04:06:20PM +0300, Kirill A. Shutemov wrote:
> The function tdx_enc_status_changed() was modified to handle vmalloc()
> mappings. It now utilizes slow_virt_to_phys() to determine the physical
> address of the page by walking page tables and looking for the physical
> address in the page table entry.
> 
> However, this adjustment conflicted with the enabling of kexec. The
> function tdx_kexec_finish() clears the page table entry before calling
> tdx_enc_status_changed(), causing a BUG_ON() error in
> slow_virt_to_phys().
> 
> To address this issue, tdx_enc_status_change() should use __pa() to
> obtain physical addresses whenever possible. The virt_addr_valid() check
> will handle such cases, while any other scenarios, including vmalloc()
> mappings, will resort to slow_virt_to_phys().
> 
> Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> Fixes: e1b8ac3aae58 ("x86/tdx: Support vmalloc() for tdx_enc_status_changed()")

I'm going to zap this one from x86/urgent and give you guys ample time to test
thus stuff better and longer.

Also, what is this e1b8ac3aae58 fixing and why is it urgent?

AFAICT, it can go through the normal merge window...

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-06-29 13:59 ` Borislav Petkov
@ 2024-06-29 14:04   ` Kirill A. Shutemov
  2024-06-29 19:27     ` Dexuan Cui
  0 siblings, 1 reply; 13+ messages in thread
From: Kirill A. Shutemov @ 2024-06-29 14:04 UTC (permalink / raw)
  To: Borislav Petkov, Dexuan Cui
  Cc: Dave Hansen, Thomas Gleixner, Ingo Molnar, x86, H. Peter Anvin,
	Michael Kelley, Kuppuswamy Sathyanarayanan, Kai Huang,
	Rick Edgecombe, linux-coco, linux-kernel

On Sat, Jun 29, 2024 at 03:59:33PM +0200, Borislav Petkov wrote:
> On Sat, Jun 29, 2024 at 04:06:20PM +0300, Kirill A. Shutemov wrote:
> > The function tdx_enc_status_changed() was modified to handle vmalloc()
> > mappings. It now utilizes slow_virt_to_phys() to determine the physical
> > address of the page by walking page tables and looking for the physical
> > address in the page table entry.
> > 
> > However, this adjustment conflicted with the enabling of kexec. The
> > function tdx_kexec_finish() clears the page table entry before calling
> > tdx_enc_status_changed(), causing a BUG_ON() error in
> > slow_virt_to_phys().
> > 
> > To address this issue, tdx_enc_status_change() should use __pa() to
> > obtain physical addresses whenever possible. The virt_addr_valid() check
> > will handle such cases, while any other scenarios, including vmalloc()
> > mappings, will resort to slow_virt_to_phys().
> > 
> > Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> > Fixes: e1b8ac3aae58 ("x86/tdx: Support vmalloc() for tdx_enc_status_changed()")
> 
> I'm going to zap this one from x86/urgent and give you guys ample time to test
> thus stuff better and longer.
> 
> Also, what is this e1b8ac3aae58 fixing and why is it urgent?

Daxuan, how urgent is this fix for you?

-- 
  Kiryl Shutsemau / Kirill A. Shutemov

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] x86/tdx: Fix crash on kexec
  2024-06-29 14:04   ` Kirill A. Shutemov
@ 2024-06-29 19:27     ` Dexuan Cui
  2024-06-29 19:41       ` Borislav Petkov
  0 siblings, 1 reply; 13+ messages in thread
From: Dexuan Cui @ 2024-06-29 19:27 UTC (permalink / raw)
  To: Kirill A. Shutemov, Borislav Petkov
  Cc: Dave Hansen, Thomas Gleixner, Ingo Molnar, x86@kernel.org,
	H. Peter Anvin, Michael Kelley, Kuppuswamy Sathyanarayanan,
	Kai Huang, Rick Edgecombe, linux-coco@lists.linux.dev,
	linux-kernel@vger.kernel.org

> From: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> Sent: Saturday, June 29, 2024 7:04 AM
> 
> On Sat, Jun 29, 2024 at 03:59:33PM +0200, Borislav Petkov wrote:
> > On Sat, Jun 29, 2024 at 04:06:20PM +0300, Kirill A. Shutemov wrote:
> > > The function tdx_enc_status_changed() was modified to handle vmalloc()
> > > mappings. It now utilizes slow_virt_to_phys() to determine the physical
> > > address of the page by walking page tables and looking for the physical
> > > address in the page table entry.
> > >
> > > However, this adjustment conflicted with the enabling of kexec. The
> > > function tdx_kexec_finish() clears the page table entry before calling
> > > tdx_enc_status_changed(), causing a BUG_ON() error in
> > > slow_virt_to_phys().
> > >
> > > To address this issue, tdx_enc_status_change() should use __pa() to
> > > obtain physical addresses whenever possible. The virt_addr_valid() check
> > > will handle such cases, while any other scenarios, including vmalloc()
> > > mappings, will resort to slow_virt_to_phys().
> > >
> > > Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> > > Fixes: e1b8ac3aae58 ("x86/tdx: Support vmalloc() for
> tdx_enc_status_changed()")
> >
> > I'm going to zap this one from x86/urgent and give you guys ample time to
> >  test
> > thus stuff better and longer.
> >
> > Also, what is this e1b8ac3aae58 fixing and why is it urgent?
> 
> Daxuan, how urgent is this fix for you?
> 
> --
>   Kiryl Shutsemau / Kirill A. Shutemov

Hi Kirill, Boris,
IMO e1b8ac3aae58  is not urgent and can go through the normal merge window.
It would be great to add e1b8ac3aae58 to the branch x86/tdx.

Thanks,
Dexuan

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-06-29 19:27     ` Dexuan Cui
@ 2024-06-29 19:41       ` Borislav Petkov
  2024-07-03 19:16         ` Dexuan Cui
  0 siblings, 1 reply; 13+ messages in thread
From: Borislav Petkov @ 2024-06-29 19:41 UTC (permalink / raw)
  To: Dexuan Cui
  Cc: Kirill A. Shutemov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Sat, Jun 29, 2024 at 07:27:57PM +0000, Dexuan Cui wrote:
> It would be great to add e1b8ac3aae58 to the branch x86/tdx.

Sure we will, once it is properly tested. This very thread says otherwise.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] x86/tdx: Fix crash on kexec
  2024-06-29 19:41       ` Borislav Petkov
@ 2024-07-03 19:16         ` Dexuan Cui
  2024-07-04 14:28           ` Kirill A. Shutemov
  0 siblings, 1 reply; 13+ messages in thread
From: Dexuan Cui @ 2024-07-03 19:16 UTC (permalink / raw)
  To: Borislav Petkov, Kirill A. Shutemov, Dave Hansen
  Cc: Thomas Gleixner, Ingo Molnar, x86@kernel.org, H. Peter Anvin,
	Michael Kelley, Kuppuswamy Sathyanarayanan, Kai Huang,
	Rick Edgecombe, linux-coco@lists.linux.dev,
	linux-kernel@vger.kernel.org

> -----Original Message-----
> From: Borislav Petkov <bp@alien8.de>
> Sent: Saturday, June 29, 2024 12:41 PM
> To: Dexuan Cui <decui@microsoft.com>
> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>; Dave Hansen
> <dave.hansen@linux.intel.com>; Thomas Gleixner <tglx@linutronix.de>;
> Ingo Molnar <mingo@redhat.com>; x86@kernel.org; H. Peter Anvin
> <hpa@zytor.com>; Michael Kelley <mikelley@microsoft.com>;
> Kuppuswamy Sathyanarayanan
> <sathyanarayanan.kuppuswamy@linux.intel.com>; Kai Huang
> <kai.huang@intel.com>; Rick Edgecombe <rick.p.edgecombe@intel.com>;
> linux-coco@lists.linux.dev; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH] x86/tdx: Fix crash on kexec
> 
> On Sat, Jun 29, 2024 at 07:27:57PM +0000, Dexuan Cui wrote:
> > It would be great to add e1b8ac3aae58 to the branch x86/tdx.
> 
> Sure we will, once it is properly tested. This very thread says otherwise.
> --
> Regards/Gruss,
>     Boris.

Hi Kirill, Dave,
Do you think if it's a good idea if I post a new patch that combines
    e1b8ac3aae58 ("x86/tdx: Support vmalloc() for tdx_enc_status_changed()")
and
    your patch "[PATCH] x86/tdx: Fix crash on kexec"?
 
Or, maybe Dave can help combine the two patches into one?

Just wanted to make sure e1b8ac3aae58 won't get lost.

Thanks,
Dexuan

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-03 19:16         ` Dexuan Cui
@ 2024-07-04 14:28           ` Kirill A. Shutemov
  2024-07-04 14:48             ` Dexuan Cui
  0 siblings, 1 reply; 13+ messages in thread
From: Kirill A. Shutemov @ 2024-07-04 14:28 UTC (permalink / raw)
  To: Dexuan Cui
  Cc: Borislav Petkov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Wed, Jul 03, 2024 at 07:16:47PM +0000, Dexuan Cui wrote:
> > -----Original Message-----
> > From: Borislav Petkov <bp@alien8.de>
> > Sent: Saturday, June 29, 2024 12:41 PM
> > To: Dexuan Cui <decui@microsoft.com>
> > Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>; Dave Hansen
> > <dave.hansen@linux.intel.com>; Thomas Gleixner <tglx@linutronix.de>;
> > Ingo Molnar <mingo@redhat.com>; x86@kernel.org; H. Peter Anvin
> > <hpa@zytor.com>; Michael Kelley <mikelley@microsoft.com>;
> > Kuppuswamy Sathyanarayanan
> > <sathyanarayanan.kuppuswamy@linux.intel.com>; Kai Huang
> > <kai.huang@intel.com>; Rick Edgecombe <rick.p.edgecombe@intel.com>;
> > linux-coco@lists.linux.dev; linux-kernel@vger.kernel.org
> > Subject: Re: [PATCH] x86/tdx: Fix crash on kexec
> > 
> > On Sat, Jun 29, 2024 at 07:27:57PM +0000, Dexuan Cui wrote:
> > > It would be great to add e1b8ac3aae58 to the branch x86/tdx.
> > 
> > Sure we will, once it is properly tested. This very thread says otherwise.
> > --
> > Regards/Gruss,
> >     Boris.
> 
> Hi Kirill, Dave,
> Do you think if it's a good idea if I post a new patch that combines
>     e1b8ac3aae58 ("x86/tdx: Support vmalloc() for tdx_enc_status_changed()")
> and
>     your patch "[PATCH] x86/tdx: Fix crash on kexec"?

Yeah, IIUC, that's what Borislav wanted. After proper testing.

-- 
  Kiryl Shutsemau / Kirill A. Shutemov

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-04 14:28           ` Kirill A. Shutemov
@ 2024-07-04 14:48             ` Dexuan Cui
  2024-07-08 12:34               ` Kirill A. Shutemov
  0 siblings, 1 reply; 13+ messages in thread
From: Dexuan Cui @ 2024-07-04 14:48 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Borislav Petkov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

> From: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> > [...]
> > Hi Kirill, Dave,
> > Do you think if it's a good idea if I post a new patch that combines
> >     e1b8ac3aae58 ("x86/tdx: Support vmalloc() for
> > tdx_enc_status_changed()")
> > and
> >     your patch "[PATCH] x86/tdx: Fix crash on kexec"?
> 
> Yeah, IIUC, that's what Borislav wanted. After proper testing.
> 
> --
>   Kiryl Shutsemau / Kirill A. Shutemov

Hi Kirill,  
I tested the 2 patches for a Linux VM on Hyper-V and all worked fine.

When you finish testing, please let me know so that I can post
a combined patch; alternatively, it would be better if you can help post
a combined patch.

Thanks,
Dexuan

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-04 14:48             ` Dexuan Cui
@ 2024-07-08 12:34               ` Kirill A. Shutemov
  2024-07-08 13:32                 ` Borislav Petkov
  2024-07-08 18:43                 ` Dexuan Cui
  0 siblings, 2 replies; 13+ messages in thread
From: Kirill A. Shutemov @ 2024-07-08 12:34 UTC (permalink / raw)
  To: Dexuan Cui
  Cc: Borislav Petkov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Thu, Jul 04, 2024 at 02:48:49PM +0000, Dexuan Cui wrote:
> > From: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> > > [...]
> > > Hi Kirill, Dave,
> > > Do you think if it's a good idea if I post a new patch that combines
> > >     e1b8ac3aae58 ("x86/tdx: Support vmalloc() for
> > > tdx_enc_status_changed()")
> > > and
> > >     your patch "[PATCH] x86/tdx: Fix crash on kexec"?
> > 
> > Yeah, IIUC, that's what Borislav wanted. After proper testing.
> > 
> > --
> >   Kiryl Shutsemau / Kirill A. Shutemov
> 
> Hi Kirill,  
> I tested the 2 patches for a Linux VM on Hyper-V and all worked fine.
> 
> When you finish testing, please let me know so that I can post
> a combined patch; alternatively, it would be better if you can help post
> a combined patch.

Go ahead, post the new version.

Borislav, could you drop the original patch from tip tree?

-- 
  Kiryl Shutsemau / Kirill A. Shutemov

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-08 12:34               ` Kirill A. Shutemov
@ 2024-07-08 13:32                 ` Borislav Petkov
  2024-07-08 13:51                   ` Kirill A. Shutemov
  2024-07-08 18:43                 ` Dexuan Cui
  1 sibling, 1 reply; 13+ messages in thread
From: Borislav Petkov @ 2024-07-08 13:32 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Dexuan Cui, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Mon, Jul 08, 2024 at 03:34:34PM +0300, Kirill A. Shutemov wrote:
> Borislav, could you drop the original patch from tip tree?

Long gone already.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-08 13:32                 ` Borislav Petkov
@ 2024-07-08 13:51                   ` Kirill A. Shutemov
  2024-07-08 15:57                     ` Borislav Petkov
  0 siblings, 1 reply; 13+ messages in thread
From: Kirill A. Shutemov @ 2024-07-08 13:51 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Dexuan Cui, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Mon, Jul 08, 2024 at 03:32:42PM +0200, Borislav Petkov wrote:
> On Mon, Jul 08, 2024 at 03:34:34PM +0300, Kirill A. Shutemov wrote:
> > Borislav, could you drop the original patch from tip tree?
> 
> Long gone already.

Hm. I still see it in tip/x86/cc branch which is merged in tip/master.

-- 
  Kiryl Shutsemau / Kirill A. Shutemov

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-08 13:51                   ` Kirill A. Shutemov
@ 2024-07-08 15:57                     ` Borislav Petkov
  0 siblings, 0 replies; 13+ messages in thread
From: Borislav Petkov @ 2024-07-08 15:57 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Dexuan Cui, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

On Mon, Jul 08, 2024 at 04:51:12PM +0300, Kirill A. Shutemov wrote:
> On Mon, Jul 08, 2024 at 03:32:42PM +0200, Borislav Petkov wrote:
> > On Mon, Jul 08, 2024 at 03:34:34PM +0300, Kirill A. Shutemov wrote:
> > > Borislav, could you drop the original patch from tip tree?
> > 
> > Long gone already.
> 
> Hm. I still see it in tip/x86/cc branch which is merged in tip/master.

Yeah, it should be gone now.

Thx.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] x86/tdx: Fix crash on kexec
  2024-07-08 12:34               ` Kirill A. Shutemov
  2024-07-08 13:32                 ` Borislav Petkov
@ 2024-07-08 18:43                 ` Dexuan Cui
  1 sibling, 0 replies; 13+ messages in thread
From: Dexuan Cui @ 2024-07-08 18:43 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Borislav Petkov, Dave Hansen, Thomas Gleixner, Ingo Molnar,
	x86@kernel.org, H. Peter Anvin, Michael Kelley,
	Kuppuswamy Sathyanarayanan, Kai Huang, Rick Edgecombe,
	linux-coco@lists.linux.dev, linux-kernel@vger.kernel.org

> From: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> Sent: Monday, July 8, 2024 5:35 AM
> > [...]
> Go ahead, post the new version.

I just posted the new version. 

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-07-08 18:43 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-29 13:06 [PATCH] x86/tdx: Fix crash on kexec Kirill A. Shutemov
2024-06-29 13:59 ` Borislav Petkov
2024-06-29 14:04   ` Kirill A. Shutemov
2024-06-29 19:27     ` Dexuan Cui
2024-06-29 19:41       ` Borislav Petkov
2024-07-03 19:16         ` Dexuan Cui
2024-07-04 14:28           ` Kirill A. Shutemov
2024-07-04 14:48             ` Dexuan Cui
2024-07-08 12:34               ` Kirill A. Shutemov
2024-07-08 13:32                 ` Borislav Petkov
2024-07-08 13:51                   ` Kirill A. Shutemov
2024-07-08 15:57                     ` Borislav Petkov
2024-07-08 18:43                 ` Dexuan Cui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.