Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Mar 2020 15:28:52 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r358810 - stable/12/share/man/man9
Message-ID:  <202003091528.029FSqQl080768@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Mar  9 15:28:52 2020
New Revision: 358810
URL: https://svnweb.freebsd.org/changeset/base/358810

Log:
  MFC r346299: 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>
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/share/man/man9/iflibtxrx.9
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/share/man/man9/iflibtxrx.9
==============================================================================
--- stable/12/share/man/man9/iflibtxrx.9	Mon Mar  9 14:13:40 2020	(r358809)
+++ stable/12/share/man/man9/iflibtxrx.9	Mon Mar  9 15:28:52 2020	(r358810)
@@ -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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003091528.029FSqQl080768>