Re: [PATCH net-next v2 0/2] Add sysfs attributes for MANA

2024-05-03 Thread Shradha Gupta
On Mon, Apr 29, 2024 at 10:31:38PM -0700, Shradha Gupta wrote: > On Wed, Apr 24, 2024 at 04:48:06PM +0200, Jiri Pirko wrote: > > Wed, Apr 24, 2024 at 12:32:54PM CEST, shradhagu...@linux.microsoft.com > > wrote: > > >These patches include adding sysfs attributes for improving > > >debuggability on

Re: Early kernel panic in dmi_decode when running 32-bit kernel on Hyper-V on Windows 11

2024-05-03 Thread Jean DELVARE
Hi Michael, On Thu, 2024-05-02 at 17:02 +, Michael Kelley wrote: > From: Michael Schierl Sent: Friday, April 19, 2024 1:47 PM > > > > > Regardless of the 32-bit vs. 64-bit behavior, the DMI blob is malformed, > > > almost certainly as created by Hyper-V.  I'll see if I can bring this to > >

[PATCH v3 1/2] hv_balloon: Use kernel macros to simplify open coded sequences

2024-05-03 Thread mhkelley58
From: Michael Kelley Code sequences equivalent to ALIGN(), ALIGN_DOWN(), and umin() are currently open coded. Change these to use the kernel macro to improve code clarity. ALIGN() and ALIGN_DOWN() require the alignment value to be a power of 2, which is the case here. Reviewed-by: David Hildenbr

[PATCH v3 2/2] hv_balloon: Enable hot-add for memblock sizes > 128 MiB

2024-05-03 Thread mhkelley58
From: Michael Kelley The Hyper-V balloon driver supports hot-add of memory in addition to ballooning. Current code hot-adds in fixed size chunks of 128 MiB (fixed constant HA_CHUNK in the code). While this works in Hyper-V VMs with 64 GiB or less or memory where the Linux memblock size is 128 MiB