Page MenuHomeFreeBSD

virtio: Silence a -Wunused warning
ClosedPublic

Authored by markj on Nov 6 2022, 10:49 PM.
Tags
None
Referenced Files
F164592485: D37298.diff
Sun, Aug 2, 6:07 AM
Unknown Object (File)
Sat, Aug 1, 1:04 AM
Unknown Object (File)
Thu, Jul 30, 6:44 AM
Unknown Object (File)
Sun, Jul 26, 12:07 AM
Unknown Object (File)
Wed, Jul 22, 8:12 PM
Unknown Object (File)
Wed, Jul 22, 9:24 AM
Unknown Object (File)
Sat, Jul 18, 11:22 AM
Unknown Object (File)
Jun 24 2026, 1:19 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.