Page MenuHomeFreeBSD

virtio: Silence a -Wunused warning
ClosedPublic

Authored by markj on Nov 6 2022, 10:49 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Jun 24, 5:13 PM
Unknown Object (File)
May 8 2024, 10:14 AM
Unknown Object (File)
May 8 2024, 10:08 AM
Unknown Object (File)
May 8 2024, 10:08 AM
Unknown Object (File)
May 8 2024, 10:08 AM
Unknown Object (File)
May 8 2024, 8:08 AM
Unknown Object (File)
Apr 24 2024, 12:16 PM
Unknown Object (File)
Apr 24 2024, 12: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.