summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorKevin Traynor <ktraynor@redhat.com>2022-04-12 15:20:18 +0100
committerIlya Maximets <i.maximets@ovn.org>2022-05-04 21:47:18 +0200
commit9dd3031d2e0e9597449e95428320ccaaff7d8b3d (patch)
treec8597431451141b98d318bf09602e24bdf155754 /Documentation
parent6c50462096056826b504850ad2c23b997a5227d7 (diff)
downloadopenvswitch-9dd3031d2e0e9597449e95428320ccaaff7d8b3d.tar.gz
Documentation: Fix use of rst verbatim code chunk syntax.
In some places it is using Markdown syntax and in others it is not needed as there is already a code block. Signed-off-by: Kevin Traynor <ktraynor@redhat.com> Reviewed-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/howto/vtep.rst1
-rw-r--r--Documentation/internals/contributing/coding-style.rst2
-rw-r--r--Documentation/topics/dpdk/memory.rst2
-rw-r--r--Documentation/topics/dpdk/vhost-user.rst2
4 files changed, 2 insertions, 5 deletions
diff --git a/Documentation/howto/vtep.rst b/Documentation/howto/vtep.rst
index 6a5202423..302894ff1 100644
--- a/Documentation/howto/vtep.rst
+++ b/Documentation/howto/vtep.rst
@@ -118,7 +118,6 @@ using the debian packages as mentioned in step 2 of the "Requirements" section.
$ ovsdb-tool create /etc/openvswitch/ovs.db vswitchd/vswitch.ovsschema
$ ovsdb-tool create /etc/openvswitch/vtep.db vtep/vtep.ovsschema
- ```
2. Start ovsdb-server and have it handle both databases:
diff --git a/Documentation/internals/contributing/coding-style.rst b/Documentation/internals/contributing/coding-style.rst
index 7fc320080..eef984e87 100644
--- a/Documentation/internals/contributing/coding-style.rst
+++ b/Documentation/internals/contributing/coding-style.rst
@@ -189,7 +189,6 @@ Example:
::
- ```
/* Stores the features supported by 'netdev' into each of '*current',
* '*advertised', '*supported', and '*peer' that are non-null. Each value
* is a bitmap of "enum ofp_port_features" bits, in host byte order.
@@ -202,7 +201,6 @@ Example:
{
...
}
- ```
Functions that destroy an instance of a dynamically-allocated type should
accept and ignore a null pointer argument. Code that calls such a function
diff --git a/Documentation/topics/dpdk/memory.rst b/Documentation/topics/dpdk/memory.rst
index 7a9d02c18..8b7758e6e 100644
--- a/Documentation/topics/dpdk/memory.rst
+++ b/Documentation/topics/dpdk/memory.rst
@@ -52,7 +52,7 @@ be aware of the memory requirements for their deployment before using this
model and allocate the required hugepage memory.
Per port mempool support may be enabled via a global config value,
-```per-port-memory```. Setting this to true enables the per port memory
+``per-port-memory``. Setting this to true enables the per port memory
model for all DPDK devices in OVS::
$ ovs-vsctl set Open_vSwitch . other_config:per-port-memory=true
diff --git a/Documentation/topics/dpdk/vhost-user.rst b/Documentation/topics/dpdk/vhost-user.rst
index 5d97495da..8c233c1d3 100644
--- a/Documentation/topics/dpdk/vhost-user.rst
+++ b/Documentation/topics/dpdk/vhost-user.rst
@@ -282,7 +282,7 @@ can access, and as such is useful in deployments in which security is a
concern.
IOMMU support may be enabled via a global config value,
-```vhost-iommu-support```. Setting this to true enables vhost IOMMU support for
+``vhost-iommu-support``. Setting this to true enables vhost IOMMU support for
all vhost ports when/where available::
$ ovs-vsctl set Open_vSwitch . other_config:vhost-iommu-support=true