OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [OASIS Issue Tracker] Assigned: (VIRTIO-82) 1. Introduction List Style


OASIS Issues Tracker <workgroup_mailer@lists.oasis-open.org> writes:
>      [ http://tools.oasis-open.org/issues/browse/VIRTIO-82?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>> 1. Introduction List Style
>> --------------------------

Subject: [PATCH] Feedback: use proper list in introduction.

Also avoid extra spacing before footnote markers.

Reported-by: Patrick Durusau <patrick@durusau.net>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>

diff --git a/introduction.tex b/introduction.tex
index ba57419..146042d 100644
--- a/introduction.tex
+++ b/introduction.tex
@@ -2,22 +2,22 @@
 
 \input{abstract.tex}
 
-  Straightforward: Virtio devices use normal bus mechanisms of
+\begin{description}
+\item[Straightforward:] Virtio devices use normal bus mechanisms of
   interrupts and DMA which should be familiar to any device driver
   author. There is no exotic page-flipping or COW mechanism: it's just
-  a normal device.
-\footnote{This lack of page-sharing implies that the implementation of the
+  a normal device.\footnote{This lack of page-sharing implies that the implementation of the
 device (e.g. the hypervisor or host) needs full access to the
 guest memory. Communication with untrusted parties (i.e.
 inter-guest communication) requires copying.
 }
 
-  Efficient: Virtio devices consist of rings of descriptors
+\item[Efficient:] Virtio devices consist of rings of descriptors
   for both input and output, which are neatly laid out to avoid cache
   effects from both driver and device writing to the same cache
   lines.
 
-  Standard: Virtio makes no assumptions about the environment in which
+\item[Standard:] Virtio makes no assumptions about the environment in which
   it operates, beyond supporting the bus to which device is attached.
   In this specification, virtio
   devices are implemented over MMIO, Channel I/O and PCI bus transports
@@ -27,11 +27,12 @@ between different transports.
 }, earlier drafts
   have been implemented on other buses not included here.
 
-  Extensible: Virtio devices contain feature bits which are
+\item[Extensible:] Virtio devices contain feature bits which are
   acknowledged by the guest operating system during device setup.
   This allows forwards and backwards compatibility: the device
   offers all the features it knows about, and the driver
   acknowledges those it understands and wishes to use.
+\end{description}
 
 \section{Terminology}\label{Terminology}
 



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]