ARM guest is considered as HVM in Freebsd but they only support PV disk
(no emulation available).
Submitted by: Elliott Mitchell <ehem+freebsd@m5p.com>
Original implementation: Julien Grall <julien@xen.org>, 2015-10-16 11:18:21
Differential D29403
xen: introduce xen_pv_disks_disabled() ehem_freebsd_m5p.com on Mar 23 2021, 10:03 PM. Authored by Tags None Referenced Files
Subscribers
Details
ARM guest is considered as HVM in Freebsd but they only support PV disk Submitted by: Elliott Mitchell <ehem+freebsd@m5p.com>
Diff Detail
Event TimelineComment Actions Forgot to ask on the previous patch, but I guess the tunable won't be available to Arm guests anyway, in which case it might be easier to just force xen_disable_pv_disks to false for Arm: #define xen_disable_pv_disks false in the Arm xen-os.h header? Comment Actions That is pretty well what the series does. Introduces sys/arm64/include/xen/xen-os.h with xen_pv_disks_disabled() as a static inline which returns false. The real question is whether to adjust history by introducing all of these at the same time as the function is introduced generally. I suspect that is likely better, I think this may be better via e-mail. Comment Actions My point is that maybe instead of an inline function you can introduce a define instead, ie: #define xen_disable_pv_disks false For Arm, and leave the x86 as-is, just moving the extern declaration into the arch specific xen-os.h. Comment Actions Did you misread the commit or make a mistake when reading the Phabricator file list? Whether or not that approach is used, sys/xen/xen-os.h still needs to be modified to remove xen_disable_pv_disks from there. No definition or declaration is added for ARM in this commit. The commits for sys/arm64/include/xen/xen-os.h aren't yet present. Comment Actions Never mind, I see that part of the point is to also place the xen_hvm_domain() check as arch-specific. |