On Mon, Aug 25, 2025 at 11:22:08AM +0530, Naman Jain wrote: > With commit 0e20f1f4c2cb ("x86/hyperv: Clean up hv_do_hypercall()"), > config checks were added to conditionally restrict export > of hv_hypercall_pg symbol at the same time when a usage of that symbol > was added in mshv_vtl_main.c driver. This results in missing symbol > warning when mshv_vtl_main is compiled. Change the logic to > export it unconditionally.
Note that exporting variables like this always is a bad idea only used as a last resort. It would be much better to just build a proper API for using it instead.