Page MenuHomeFreeBSD

virtio: Silence a -Wunused warning
ClosedPublic

Authored by markj on Nov 6 2022, 10:49 PM.
Tags
None
Referenced Files
F152839217: D37298.id.diff
Fri, Apr 17, 10:49 AM
Unknown Object (File)
Thu, Apr 16, 9:16 AM
Unknown Object (File)
Mon, Apr 13, 8:27 PM
Unknown Object (File)
Mon, Apr 13, 3:45 PM
Unknown Object (File)
Wed, Apr 8, 8:59 PM
Unknown Object (File)
Fri, Apr 3, 3:18 AM
Unknown Object (File)
Mar 1 2026, 11:15 AM
Unknown Object (File)
Feb 25 2026, 5:15 PM
Subscribers

Diff Detail

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

Event Timeline

markj requested review of this revision.Nov 6 2022, 10:49 PM
corvink added inline comments.
sys/dev/virtio/virtio_endian.h
44–45

This function looks like a small optimization. I don't think that this optimization makes sense because it makes the code harder to read for no value.
So IMHO, we should drop it. E.g. just use:

static inline uint16_t
virtio_htog16(bool modern, uint16_t val)
{
  if (modern)
    return (htole16(val));
  else
    return (val);
}
jhb added inline comments.
sys/dev/virtio/virtio_endian.h
44–45

I agree with Corvin's suggestion and think it is more readable.

markj marked 2 inline comments as done.

Remove virtio_swap_endian().

This revision is now accepted and ready to land.Nov 14 2022, 6:21 AM
This revision was automatically updated to reflect the committed changes.