On Mon, Mar 22, 2021 at 09:34:58AM -0400, Michael S. Tsirkin wrote: > On Mon, Mar 22, 2021 at 11:52:22AM +0000, Stefan Hajnoczi wrote: > > On Mon, Mar 22, 2021 at 09:37:59AM +0300, Arseny Krasnov wrote: > > > @@ -227,6 +226,11 @@ \subsubsection{Stream Sockets}\label{sec:Device Types / Socket Device / Device O > > > hints are permanent once sent and successive packets with bits clear do not > > > reset them. > > > > > > +\begin{lstlisting} > > > +#define VIRTIO_VSOCK_SHUTDOWN_RECEIVE_BIT 0 > > > +#define VIRTIO_VSOCK_SHUTDOWN_SEND_BIT 1 > > > +\end{lstlisting} > > > > The spec has no other _BIT constants. > > True. Sometimes there's an _F_ somewhere there instead. You're right, I missed the virtio-net bit constants: #define VIRTIO_NET_F_GUEST_TSO4 7 Compared to: #define VIRTQ_DESC_F_AVAIL (1 << 7) or #define VIRTQ_DESC_F_WRITE 2 It's an inconsistent mix :). Hard to tell them apart when they aren't bitmask constants with '<<'. Can we use '<<' for clarity on new constants?
Attachment:
signature.asc
Description: PGP signature
_______________________________________________ Virtualization mailing list Virtualization@xxxxxxxxxxxxxxxxxxxxxxxxxx https://lists.linuxfoundation.org/mailman/listinfo/virtualization