[libvirt] [PATCH] virNetworkGetDHCPLeases: fix docstring format

Ilias Stamatis posted 1 patch 4 years, 10 months ago
Test syntax-check passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20190618142157.19689-1-stamatis.iliass@gmail.com
src/libvirt-network.c | 42 ++++++++++++++++++++++--------------------
1 file changed, 22 insertions(+), 20 deletions(-)
[libvirt] [PATCH] virNetworkGetDHCPLeases: fix docstring format
Posted by Ilias Stamatis 4 years, 10 months ago
The docstring of virNetworkGetDHCPLeases is not correctly formatted and
as a result the example code snippet appears as normal text under the
"Returns:" section. This patch fixes the problem.

Signed-off-by: Ilias Stamatis <stamatis.iliass@gmail.com>
---
 src/libvirt-network.c | 42 ++++++++++++++++++++++--------------------
 1 file changed, 22 insertions(+), 20 deletions(-)

diff --git a/src/libvirt-network.c b/src/libvirt-network.c
index 6ed32c8ba2..2d7a68eaa1 100644
--- a/src/libvirt-network.c
+++ b/src/libvirt-network.c
@@ -1156,8 +1156,7 @@ virConnectNetworkEventDeregisterAny(virConnectPtr conn,
  * lease info about a specific guest interface with @mac. There can be
  * multiple leases for a single @mac because this API supports DHCPv6 too.
  *
- * Returns the number of leases found or -1 and sets @leases to NULL in
- * case of error. On success, the array stored into @leases is guaranteed to
+ * On success, the array stored into @leases is guaranteed to
  * have an extra allocated element set to NULL but not included in the return
  * count, to make iteration easier. The caller is responsible for calling
  * virNetworkDHCPLeaseFree() on each array element, then calling free() on @leases.
@@ -1167,30 +1166,33 @@ virConnectNetworkEventDeregisterAny(virConnectPtr conn,
  *
  * Example of usage:
  *
- * virNetworkDHCPLeasePtr *leases = NULL;
- * virNetworkPtr network = ... obtain a network pointer here ...;
- * size_t i;
- * int nleases;
- * unsigned int flags = 0;
+ *   virNetworkDHCPLeasePtr *leases = NULL;
+ *   virNetworkPtr network = ... obtain a network pointer here ...;
+ *   size_t i;
+ *   int nleases;
+ *   unsigned int flags = 0;
+ *
+ *   nleases = virNetworkGetDHCPLeases(network, NULL, &leases, flags);
+ *   if (nleases < 0)
+ *       error();
  *
- * nleases = virNetworkGetDHCPLeases(network, NULL, &leases, flags);
- * if (nleases < 0)
- *     error();
+ *   ... do something with returned values, for example:
  *
- * ... do something with returned values, for example:
+ *   for (i = 0; i < nleases; i++) {
+ *       virNetworkDHCPLeasePtr lease = leases[i];
  *
- * for (i = 0; i < nleases; i++) {
- *     virNetworkDHCPLeasePtr lease = leases[i];
+ *       printf("Time(epoch): %lu, MAC address: %s, "
+ *              "IP address: %s, Hostname: %s, ClientID: %s\n",
+ *              lease->expirytime, lease->mac, lease->ipaddr,
+ *              lease->hostname, lease->clientid);
  *
- *     printf("Time(epoch): %lu, MAC address: %s, "
- *            "IP address: %s, Hostname: %s, ClientID: %s\n",
- *            lease->expirytime, lease->mac, lease->ipaddr,
- *            lease->hostname, lease->clientid);
+ *              virNetworkDHCPLeaseFree(leases[i]);
+ *   }
  *
- *            virNetworkDHCPLeaseFree(leases[i]);
- * }
+ *   free(leases);
  *
- * free(leases);
+ * Returns the number of leases found or -1 and sets @leases to NULL in
+ * case of error.
  *
  */
 int
--
2.22.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH] virNetworkGetDHCPLeases: fix docstring format
Posted by Michal Privoznik 4 years, 10 months ago
On 6/18/19 4:21 PM, Ilias Stamatis wrote:
> The docstring of virNetworkGetDHCPLeases is not correctly formatted and
> as a result the example code snippet appears as normal text under the
> "Returns:" section. This patch fixes the problem.
> 
> Signed-off-by: Ilias Stamatis <stamatis.iliass@gmail.com>
> ---
>   src/libvirt-network.c | 42 ++++++++++++++++++++++--------------------
>   1 file changed, 22 insertions(+), 20 deletions(-)

Very nice catch!

ACKed and pushed.

Michal

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list