Re: [PATCH 0/5] Handle set_memory_XXcrypted() errors in Hyper-V

2024-04-10 Thread Wei Liu
On Mon, Mar 11, 2024 at 09:15:53AM -0700, mhkelle...@gmail.com wrote: > From: Michael Kelley > > Shared (decrypted) pages should never be returned to the page allocator, > lest future usage of the pages store data that should not be exposed to > the host. They may also cause the guest to crash if

Re: [PATCH v2] Drivers: hv: Cosmetic changes for hv.c and balloon.c

2024-04-10 Thread Wei Liu
On Mon, Apr 01, 2024 at 09:06:21PM -0700, Aditya Nagesh wrote: > Fix issues reported by checkpatch.pl script in hv.c and > balloon.c > - Remove unnecessary parentheses > - Remove extra newlines > - Remove extra spaces > - Add spaces between comparison operators > - Remove comparison with NULL

Re: [PATCH v5] hv/hv_kvp_daemon: Handle IPv4 and Ipv6 combination for keyfile format

2024-04-10 Thread Wei Liu
On Fri, Mar 22, 2024 at 06:46:02AM -0700, Shradha Gupta wrote: > If the network configuration strings are passed as a combination of IPv4 > and IPv6 addresses, the current KVP daemon does not handle processing for > the keyfile configuration format. > With these changes, the keyfile config generati

Re: [PATCH] hv: vmbus: Convert sprintf() family to sysfs_emit() family

2024-04-10 Thread Wei Liu
On Mon, Mar 25, 2024 at 05:49:47PM +, Wei Liu wrote: > On Mon, Mar 25, 2024 at 09:39:52AM +, Zhijian Li (Fujitsu) wrote: > > > > > > On 23/03/2024 07:37, Wei Liu wrote: > > > Hi Zhijian, > > > > > > On Tue, Mar 19, 2024 at 11:43:50AM +0800, Li Zhijian wrote: > > >> Per filesystems/sysfs.

RE: [PATCH v2 1/2] hyperv: Convert from tasklet to BH workqueue

2024-04-10 Thread Michael Kelley
From: Allen Pais Sent: Wednesday, April 3, 2024 9:56 AM > > The only generic interface to execute asynchronously in the BH context is > tasklet; however, it's marked deprecated and has some design flaws. To > replace tasklets, BH workqueue support was recently added. A BH workqueue > behaves sim