Page MenuHomeFreeBSD

bhyve: Drop volatile qualifiers from xhci hw struct fields
ClosedPublic

Authored by markj on Nov 6 2022, 7:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jan 24, 5:25 PM
Unknown Object (File)
Thu, Jan 23, 6:51 PM
Unknown Object (File)
Thu, Jan 23, 1:01 PM
Unknown Object (File)
Sat, Jan 18, 9:47 PM
Unknown Object (File)
Jan 14 2025, 8:48 AM
Unknown Object (File)
Jan 10 2025, 1:55 AM
Unknown Object (File)
Jan 4 2025, 12:32 AM
Unknown Object (File)
Jan 3 2025, 11:50 PM
Subscribers

Details

Summary

This fixes a warning raised by the removal of the volatile qualifier
from &trb->qwTrb0 in the following snippet:

xfer_block = usb_data_xfer_append(xfer,

	     (void *)(trbflags & XHCI_TRB_3_IDT_BIT ?
		 &trb->qwTrb0 : XHCI_GADDR(sc, trb->qwTrb0)),
	     trb->dwTrb2 & 0x1FFFF, (void *)addr, ccs);

The use of volatile appears to be inherited from the kernel driver's
definitions of the same structures. It makes some sense, since USB TRBs
and related structures live in guest memory, but bhyve device models
generally don't volatile-qualify accesses to guest memory and I can't
see how they are required for correctness here. Moreover, XHCI_GADDR
does not return volatile pointers so we're already being inconsistent.
So just drop the qualifiers to address the warning.

Diff Detail

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