Discussion of the implementations of VIRTIO specification
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Cornelia Huck <cohuck@redhat.com>
Cc: virtio@lists.oasis-open.org, virtio-dev@lists.oasis-open.org
Subject: [virtio] Re: [PATCH] introduction: document bitfield notation
Date: Mon, 5 Mar 2018 16:26:11 +0200	[thread overview]
Message-ID: <20180305162220-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20180305152035.6a64b499.cohuck@redhat.com>

On Mon, Mar 05, 2018 at 03:20:35PM +0100, Cornelia Huck wrote:
> On Wed, 28 Feb 2018 21:16:32 +0200
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > Bitfields are a useful and familiar way to specify sub-byte structure
> > layout. The only issue is that bitfield order isn't portable across
> > architectures.  Document that we list bitfields from least to
> > most significant one, and warn about portability issues.
> > 
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> >  introduction.tex | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> > 
> > diff --git a/introduction.tex b/introduction.tex
> > index 979881e..3cb7a70 100644
> > --- a/introduction.tex
> > +++ b/introduction.tex
> > @@ -157,5 +157,23 @@ in little-endian byte order.
> >  in big-endian byte order.
> >  \end{description}
> >  
> > +When documenting sub-byte data fields, C-like bitfield notation
> > +is used. Fields within an integer are always listed in order,
> > +from the least significant to the most significant bit.
> > +
> > +For example:
> > +\begin{lstlisting}
> > +be16 A : 15;
> > +be16 B : 1;
> > +\end{lstlisting}
> > +documents the value A stored in the low 15 bit of a 16 bit
> > +integer and the value B stored in the high bit of the 16 bit
> > +integer, the integer in turn using the big-endian byte order.
> > +
> > +Note that this notation typically matches the way bitfields are
> > +packed by C compilers on little-endian architectures but not the
> > +way bitfields are packed by C compilers on big-endian
> > +architectures.
> > +
> >  \newpage
> >  
> 
> I must admit that this explanation confuses me a bit.

What it is saying is that this is equivalent to

CPU_TO_BE16(B << 15 | A)

Maybe adding this part will clarify things?


> Would some kind
> of graphic representation be more helpful?

I'm not good at graphics :)

> For example, on s390 I would expect the structure to look like the
> following:
> 
> |0  ..  14 | 15 |
> |    A     |  B |
> 
> If you included another example for little-endian byte order, this
> would clear up things more, I think.


It's BE so I think it's

| 15 |14  ..  0 |
| B  |    A     |




---------------------------------------------------------------------
To unsubscribe from this mail list, you must leave the OASIS TC that 
generates this mail.  Follow this link to all your TCs in OASIS at:
https://www.oasis-open.org/apps/org/workgroup/portal/my_workgroups.php 


  reply	other threads:[~2018-03-05 14:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-28 19:16 [virtio] [PATCH] introduction: document bitfield notation Michael S. Tsirkin
2018-03-05 11:14 ` Stefan Hajnoczi
2018-03-05 14:20 ` [virtio] " Cornelia Huck
2018-03-05 14:26   ` Michael S. Tsirkin [this message]
2018-03-05 16:04     ` Cornelia Huck
2018-03-05 21:11       ` Michael S. Tsirkin
2018-03-06  8:21         ` Cornelia Huck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180305162220-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=virtio-dev@lists.oasis-open.org \
    --cc=virtio@lists.oasis-open.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox