Page MenuHomeFreeBSD

hyperv storvsc: Don't abuse struct sglist to hold virtual addresses.
ClosedPublic

Authored by jhb on Sep 13 2021, 6:09 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 14 2024, 4:55 AM
Unknown Object (File)
Feb 4 2024, 3:15 AM
Unknown Object (File)
Dec 27 2023, 2:26 AM
Unknown Object (File)
Dec 20 2023, 4:00 AM
Unknown Object (File)
Nov 30 2023, 11:21 PM
Unknown Object (File)
Nov 3 2023, 10:28 PM
Unknown Object (File)
Oct 23 2023, 2:52 PM
Unknown Object (File)
Aug 28 2023, 10:16 AM
Subscribers

Details

Summary

struct sglist is intended for holding S/G lists of physical address
ranges, not virtual address ranges. GCC 9.x issues several warnings
due to casts between pointers and integers of different sizes as a
result (vm_paddr_t is 64-bits on i386). Instead, add a local 'struct
hv_sglist' which uses an array of 'struct iovec' to hold the S/G list
of virtual address ranges.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 41487
Build 38376: arc lint + arc unit

Event Timeline

jhb requested review of this revision.Sep 13 2021, 6:09 PM

This looks reasonable to me but I will defer to @whu for detailed review.

Please give me a few days to review. I am tied up with other issues right now. Thanks!

This revision was not accepted when it landed; it landed in state Needs Review.Feb 1 2022, 1:13 AM
This revision was automatically updated to reflect the committed changes.