All of lore.kernel.org
 help / color / mirror / Atom feed
* [virtio] [PATCH v2] introduction: document #define syntax
@ 2021-03-18 18:23 Michael S. Tsirkin
  2021-03-19 12:30 ` Cornelia Huck
  2021-04-08 20:18 ` [virtio] Re: [virtio-comment] " Halil Pasic
  0 siblings, 2 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2021-03-18 18:23 UTC (permalink / raw)
  To: virtio-comment, virtio-dev; +Cc: virtio

We use the C #define syntax to refer to numeric values.
Let's document that.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---

changes from v1:
address Cornelia's comments


 introduction.tex | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/introduction.tex b/introduction.tex
index cc38e29..47bebf5 100644
--- a/introduction.tex
+++ b/introduction.tex
@@ -210,6 +210,29 @@ \section{Structure Specifications}
 \begin{lstlisting}
 CPU_TO_BE16(B << 15 | A)
 \end{lstlisting}
+\section{Constant Specifications}
+
+In many cases, numeric values used in the interface between the device
+and the driver are documented using the C #define and /* */
+comment syntax. Multiple related values are grouped together with
+a common name as a prefix, using _ as a separator.
+Using _XXX as a suffix refers to all values in a group.
+For example:
+
+\begin{lstlisting}
+/* Field Fld value A description */
+#define VIRTIO_FLD_A        (1 << 0)
+/* Field Fld value B description */
+#define VIRTIO_FLD_B        (1 << 1)
+\end{lstlisting}
+documents two numeric values for a field \field{Fld}, with
+\field{Fld} having value 1 referring to \field{A} and \field{Fld}
+having value 2 referring to \field{B}.
+Note that $<<$ refers to the shift-left operation.
+
+Further, in this case VIRTIO_FLD_A and VIRTIO_FLD_B
+refer to values 1 and 2 of Fld respectively. Further, VIRTIO_FLD_XXX refers to
+either VIRTIO_FLD_A or VIRTIO_FLD_B.
 
 \newpage
 
-- 
MST


---------------------------------------------------------------------
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 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [virtio] [PATCH v2] introduction: document #define syntax
  2021-03-18 18:23 [virtio] [PATCH v2] introduction: document #define syntax Michael S. Tsirkin
@ 2021-03-19 12:30 ` Cornelia Huck
  2021-04-08 20:18 ` [virtio] Re: [virtio-comment] " Halil Pasic
  1 sibling, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2021-03-19 12:30 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: virtio-comment, virtio-dev, virtio

On Thu, 18 Mar 2021 14:23:33 -0400
"Michael S. Tsirkin" <mst@redhat.com> wrote:

> We use the C #define syntax to refer to numeric values.
> Let's document that.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> 
> changes from v1:
> address Cornelia's comments
> 
> 
>  introduction.tex | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/introduction.tex b/introduction.tex
> index cc38e29..47bebf5 100644
> --- a/introduction.tex
> +++ b/introduction.tex
> @@ -210,6 +210,29 @@ \section{Structure Specifications}
>  \begin{lstlisting}
>  CPU_TO_BE16(B << 15 | A)
>  \end{lstlisting}
> +\section{Constant Specifications}
> +
> +In many cases, numeric values used in the interface between the device
> +and the driver are documented using the C #define and /* */
> +comment syntax. Multiple related values are grouped together with
> +a common name as a prefix, using _ as a separator.
> +Using _XXX as a suffix refers to all values in a group.
> +For example:
> +
> +\begin{lstlisting}
> +/* Field Fld value A description */
> +#define VIRTIO_FLD_A        (1 << 0)
> +/* Field Fld value B description */
> +#define VIRTIO_FLD_B        (1 << 1)
> +\end{lstlisting}
> +documents two numeric values for a field \field{Fld}, with
> +\field{Fld} having value 1 referring to \field{A} and \field{Fld}
> +having value 2 referring to \field{B}.

The reader may infer a general Fld <-> FLD matching requirement here;
but OTOH, this is only an example. I don't have an idea how to make
that more explicit without being overly verbose, anyway.

> +Note that $<<$ refers to the shift-left operation.
> +
> +Further, in this case VIRTIO_FLD_A and VIRTIO_FLD_B
> +refer to values 1 and 2 of Fld respectively. Further, VIRTIO_FLD_XXX refers to
> +either VIRTIO_FLD_A or VIRTIO_FLD_B.
>  
>  \newpage
>  

Reviewed-by: Cornelia Huck <cohuck@redhat.com>


---------------------------------------------------------------------
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 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [virtio] Re: [virtio-comment] [PATCH v2] introduction: document #define syntax
  2021-03-18 18:23 [virtio] [PATCH v2] introduction: document #define syntax Michael S. Tsirkin
  2021-03-19 12:30 ` Cornelia Huck
@ 2021-04-08 20:18 ` Halil Pasic
  2021-04-21  8:23   ` Michael S. Tsirkin
  1 sibling, 1 reply; 4+ messages in thread
From: Halil Pasic @ 2021-04-08 20:18 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: virtio-comment, virtio-dev, virtio

On Thu, 18 Mar 2021 14:23:33 -0400
"Michael S. Tsirkin" <mst@redhat.com> wrote:

> We use the C #define syntax to refer to numeric values.
> Let's document that.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> 
> changes from v1:
> address Cornelia's comments
> 
> 
>  introduction.tex | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/introduction.tex b/introduction.tex
> index cc38e29..47bebf5 100644
> --- a/introduction.tex
> +++ b/introduction.tex
> @@ -210,6 +210,29 @@ \section{Structure Specifications}
>  \begin{lstlisting}
>  CPU_TO_BE16(B << 15 | A)
>  \end{lstlisting}
> +\section{Constant Specifications}
> +
> +In many cases, numeric values used in the interface between the device
> +and the driver are documented using the C #define and /* */
> +comment syntax. Multiple related values are grouped together with
> +a common name as a prefix, using _ as a separator.
> +Using _XXX as a suffix refers to all values in a group.
> +For example:
> +
> +\begin{lstlisting}
> +/* Field Fld value A description */
> +#define VIRTIO_FLD_A        (1 << 0)
> +/* Field Fld value B description */
> +#define VIRTIO_FLD_B        (1 << 1)
> +\end{lstlisting}
> +documents two numeric values for a field \field{Fld}, with
> +\field{Fld} having value 1 referring to \field{A} and \field{Fld}
> +having value 2 referring to \field{B}.
> +Note that $<<$ refers to the shift-left operation.
> +
> +Further, in this case VIRTIO_FLD_A and VIRTIO_FLD_B
> +refer to values 1 and 2 of Fld respectively. Further, VIRTIO_FLD_XXX refers to
> +either VIRTIO_FLD_A or VIRTIO_FLD_B.

IMHO we also use the define stuff to do flags, and that does not match
nicely with the above sentence, since VIRTIO_FLD_F_A does not mean that
the FLD_F field has value A if we are trying to specify a flag or a
feature bit. And the left-shift is actually most common in these cases.

I'm not opposed to this change. In the virtio spec we tend to not be
very rigorous about formalism, and I came to accept that as a given.
Just wanted to point it out.

Sorry for not commenting on this sooner.

Regards,
Halil
>  
>  \newpage
>  


---------------------------------------------------------------------
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 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [virtio] Re: [virtio-comment] [PATCH v2] introduction: document #define syntax
  2021-04-08 20:18 ` [virtio] Re: [virtio-comment] " Halil Pasic
@ 2021-04-21  8:23   ` Michael S. Tsirkin
  0 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2021-04-21  8:23 UTC (permalink / raw)
  To: Halil Pasic; +Cc: virtio-comment, virtio-dev, virtio

On Thu, Apr 08, 2021 at 10:18:13PM +0200, Halil Pasic wrote:
> On Thu, 18 Mar 2021 14:23:33 -0400
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > We use the C #define syntax to refer to numeric values.
> > Let's document that.
> > 
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> > 
> > changes from v1:
> > address Cornelia's comments
> > 
> > 
> >  introduction.tex | 23 +++++++++++++++++++++++
> >  1 file changed, 23 insertions(+)
> > 
> > diff --git a/introduction.tex b/introduction.tex
> > index cc38e29..47bebf5 100644
> > --- a/introduction.tex
> > +++ b/introduction.tex
> > @@ -210,6 +210,29 @@ \section{Structure Specifications}
> >  \begin{lstlisting}
> >  CPU_TO_BE16(B << 15 | A)
> >  \end{lstlisting}
> > +\section{Constant Specifications}
> > +
> > +In many cases, numeric values used in the interface between the device
> > +and the driver are documented using the C #define and /* */
> > +comment syntax. Multiple related values are grouped together with
> > +a common name as a prefix, using _ as a separator.
> > +Using _XXX as a suffix refers to all values in a group.
> > +For example:
> > +
> > +\begin{lstlisting}
> > +/* Field Fld value A description */
> > +#define VIRTIO_FLD_A        (1 << 0)
> > +/* Field Fld value B description */
> > +#define VIRTIO_FLD_B        (1 << 1)
> > +\end{lstlisting}
> > +documents two numeric values for a field \field{Fld}, with
> > +\field{Fld} having value 1 referring to \field{A} and \field{Fld}
> > +having value 2 referring to \field{B}.
> > +Note that $<<$ refers to the shift-left operation.
> > +
> > +Further, in this case VIRTIO_FLD_A and VIRTIO_FLD_B
> > +refer to values 1 and 2 of Fld respectively. Further, VIRTIO_FLD_XXX refers to
> > +either VIRTIO_FLD_A or VIRTIO_FLD_B.
> 
> IMHO we also use the define stuff to do flags, and that does not match
> nicely with the above sentence, since VIRTIO_FLD_F_A does not mean that
> the FLD_F field has value A if we are trying to specify a flag or a
> feature bit. And the left-shift is actually most common in these cases.
> 
> I'm not opposed to this change. In the virtio spec we tend to not be
> very rigorous about formalism, and I came to accept that as a given.
> Just wanted to point it out.
> 
> Sorry for not commenting on this sooner.
> 
> Regards,
> Halil


All true. Do you want to propose an enhancement, or just let it be for
now?

> >  
> >  \newpage
> >  
> 
> 
> ---------------------------------------------------------------------
> 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 


---------------------------------------------------------------------
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 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-21  8:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-18 18:23 [virtio] [PATCH v2] introduction: document #define syntax Michael S. Tsirkin
2021-03-19 12:30 ` Cornelia Huck
2021-04-08 20:18 ` [virtio] Re: [virtio-comment] " Halil Pasic
2021-04-21  8:23   ` Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.