svn commit: r346299 - head/share/man/man9

Ed Maste emaste at FreeBSD.org
Tue Sep 3 14:07:51 UTC 2019


Author: emaste
Date: Tue Apr 16 20:41:04 2019
New Revision: 346299
URL: https://svnweb.freebsd.org/changeset/base/346299

Log:
  iflibtxrx.9: update function descriptions to match implementation
  
  isc_rxd_refill, isc_rxd_flush return nothing, not void *.
  
  isc_txd_credits_update, isc_rxd_available return int, not int *.
  
  isc_txd_credits_update has a bool as final argument, not a uint32_t.
  Prior to r315217 it took four arguments; the final two were
  uint32_t, bool.
  
  Reported by:	Gerald Aryeetey <aryeeteygerald_rogers.com>
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/man/man9/iflibtxrx.9

Modified: head/share/man/man9/iflibtxrx.9
==============================================================================
--- head/share/man/man9/iflibtxrx.9	Tue Apr 16 20:08:19 2019	(r346298)
+++ head/share/man/man9/iflibtxrx.9	Tue Apr 16 20:41:04 2019	(r346299)
@@ -1,5 +1,5 @@
 .\" $FreeBSD$
-.Dd March 23, 2017
+.Dd April 16, 2019
 .Dt IFLIBTXTX 9
 .Os
 .Sh NAME
@@ -19,19 +19,19 @@
 .Fa "uint16_t qid"
 .Fa "uint32_t _pidx_or_credits_"
 .Fc
-.Ft int *
+.Ft int
 .Fo isc_txd_credits_update
 .Fa "void *sc"
 .Fa "uint16_t qid"
-.Fa "uint32_t credits"
+.Fa "bool clear"
 .Fc
-.Ft int *
+.Ft int
 .Fo isc_rxd_available
 .Fa "void *sc"
 .Fa "uint16_t qsid"
 .Fa "uint32_t cidx"
 .Fc
-.Ft void *
+.Ft void
 .Fo isc_rxd_refill
 .Fa "void *sc"
 .Fa "uint16_t qsid"
@@ -41,7 +41,7 @@
 .Fa "caddr_t *vaddrs"
 .Fa "uint16_t count"
 .Fc
-.Ft void *
+.Ft void
 .Fo isc_rxd_flush
 .Fa "void *sc"
 .Fa "uint16_t qsid"




More information about the svn-src-all mailing list