RE: [PATCH 3/5] X86: Hyper-V: Enhanced IPI enlightenment

From: Michael Kelley (EOSG)
Date: Thu Apr 26 2018 - 19:25:42 EST


On Wed, 25 Apr 2018, KY Srinivasan <kys@xxxxxxxxxxxxx> wrote:
>
> +struct ipi_arg_ex {
> + u32 vector;
> + u32 reserved;
> + struct hv_vpset vp_set;
> +};

Again, suggest moving to hyperv-tlfs.h. And the 5.0b version
of the TLFS has:

u32 vector;
u8 targetvtl;
u8 reserved[3];
struct hv_vpset vp_set;

....

>
> +struct hv_vpset {
> + u64 format;
> + u64 valid_bank_mask;
> + u64 bank_contents[];
> +};

And this as well.

Michael