Page MenuHomeFreeBSD

bhyve: add helper to append a basl table without a header
ClosedPublic

Authored by corvink on Nov 16 2022, 12:50 PM.
Tags
None
Referenced Files
F102672089: D37406.diff
Fri, Nov 15, 4:09 PM
Unknown Object (File)
Sat, Oct 26, 9:47 PM
Unknown Object (File)
Sat, Oct 26, 9:46 PM
Unknown Object (File)
Sat, Oct 26, 9:46 PM
Unknown Object (File)
Sat, Oct 26, 8:11 PM
Unknown Object (File)
Oct 9 2024, 4:54 AM
Unknown Object (File)
Oct 4 2024, 2:02 AM
Unknown Object (File)
Oct 1 2024, 3:08 PM
Subscribers

Details

Summary

The common style for build an ACPI table will be:

  1. basl_table_create
  2. basl_table_append_header
  3. setup an ACPI_TABLE_* struct
  4. basl_table_append_bytes (without header)

Add a helper for the last step.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj added inline comments.
usr.sbin/bhyve/basl.c
443

Assert len >= sizeof(ACPI_TABLE_HEADER)?

447

Missing parens around the return value.

usr.sbin/bhyve/basl.h
56
This revision is now accepted and ready to land.Nov 16 2022, 2:25 PM

Agree with @markj's feedback, but like the idea of a helper function for this.