Details
Details
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
This fixes the amount of memory displayed in the UiApp to be the same as passed on the bhyve command line. Otherwise, 8GB gets displayed as 4, 32GB as 28 etc.
usr.sbin/bhyve/smbiostbl.c | ||
---|---|---|
760 ↗ | (On Diff #79922) | Isnt this tied to the xsaddr setting in the preceding line, such that this should more correctly be written: type19->xeaddr = guest_himem + type19->xsaddr; |
usr.sbin/bhyve/smbiostbl.c | ||
---|---|---|
760 ↗ | (On Diff #79922) | Perhaps, though that's relatively minor (and it won't ever move). The other nitpick one could observe is to perhaps order it as 'start + size' instead of 'size + start', i.e. xsaddr + guest_himem, but any of the variants is fine with me TBH. |