On Thu, Dec 28, 2023 at 11:24:17AM -0800, Alexey Makhalov wrote: > From: Alexey Makhalov <amakhalov@xxxxxxxxxx> > > Introduce vmware_hypercall family of functions. It is a common > implementation to be used by the VMware guest code and virtual > device drivers in architecture independent manner. > > The API consists of vmware_hypercallX and vmware_hypercall_hb_{out,in} > set of functions by analogy with KVM hypercall API. Architecture > specific implementation is hidden inside. > > It will simplify future enhancements in VMware hypercalls such > as SEV-ES and TDX related changes without needs to modify a > caller in device drivers code. > > Current implementation extends an idea from commit bac7b4e84323 > ("x86/vmware: Update platform detection code for VMCALL/VMMCALL > hypercalls") to have a slow, but safe path in VMWARE_HYPERCALL > earlier during the boot when alternatives are not yet applied. > This logic was inherited from VMWARE_CMD from the commit mentioned > above. Default alternative code was optimized by size to reduce > excessive nop alignment once alternatives are applied. Total > default code size is 26 bytes, in worse case (3 bytes alternative) > remaining 23 bytes will be aligned by only 3 long NOP instructions. > > Signed-off-by: Alexey Makhalov <amakhalov@xxxxxxxxxx> > Reviewed-by: Nadav Amit <namit@xxxxxxxxxx> > Reviewed-by: Jeff Sipek <jsipek@xxxxxxxxxx> Hi Alexey, I'd like to flag that this breaks gcc-13 x86_64 allmodconfig builds of the following files. And although this is resolved by the subsequent 3 patches in this series, it does still break bisection. drivers/gpu/drm/vmwgfx/vmwgfx_msg.c drivers/input/mouse/vmmouse.c drivers/ptp/ptp_vmw.c ...