[BACK]Return to ifiq_input.9 CVS log [TXT][DIR] Up to [local] / src / share / man / man9

File: [local] / src / share / man / man9 / ifiq_input.9 (download)

Revision 1.4, Thu Mar 31 17:27:23 2022 UTC (2 years, 2 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, HEAD
Changes since 1.3: +2 -2 lines

man pages: add missing commas between subordinate and main clauses

jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.

ok jmc@

.\" $OpenBSD: ifiq_input.9,v 1.4 2022/03/31 17:27:23 naddy Exp $
.\"
.\" Copyright (c) 2020 David Gwynne <dlg@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: March 31 2022 $
.Dt IFIQ_INPUT 9
.Os
.Sh NAME
.Nm ifiq_input ,
.Nm ifiq_enqueue
.Nd network interface input queue (ifiqueue) API
.Sh SYNOPSIS
.In net/if_var.h
.Ft int
.Fn ifiq_input "struct ifiqueue *ifiq" "struct mbuf_list *ml"
.Ft void
.Fn ifiq_enqueue "struct ifiqueue *ifiq" "struct mbuf *m"
.Sh DESCRIPTION
The network interface input queue (ifiqueue) API provides functions
for network drivers to queue received packets for processing by the
network stack.
.Bl -tag -width Ds
.It Fn ifiq_input "struct ifiqueue *ifq" "struct mbuf_list *ml"
Enqueue the list of mbufs in
.Fa ml
on the
.Fa ifiq
interface input queue and notify the network stack to process them.
If the queue rejects the packets, they will be freed
and counted as drops.
.It Fn ifiq_enqueue "struct ifiqueue *ifq" "struct mbuf *m"
Enqueue the mbuf
.Fa m
on the
.Fa ifiq
interface input queue and notify the network stack to process it.
.El
.Sh CONTEXT
.Fn ifiq_input
and
.Fn ifiq_enqueue
can be called during autoconf, from process context, or from interrupt context.
.Sh RETURN VALUES
.Fn ifiq_input
returns a non-zero value if mbufs are queued too rapidly for the
stack to process.
If possible, the caller should attempt to reduce the number of mbufs
being generated in the future.
For example, if mbufs are being received from
hardware managed with the interface RX ring API,
.Xr if_rxr_livelocked 9
can be called to indicate to the hardware that backpressure is required.
.Sh SEE ALSO
.Xr if_rxr_livelocked 9