Module Name: src
Committed By: msaitoh
Date: Tue Oct 25 00:20:36 UTC 2022
Modified Files:
src/share/man/man9: altq.9
Log Message:
ifq_drops was changed to use uint64_t.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/share/man/man9/altq.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/altq.9
diff -u src/share/man/man9/altq.9:1.18 src/share/man/man9/altq.9:1.19
--- src/share/man/man9/altq.9:1.18 Thu May 26 14:39:30 2022
+++ src/share/man/man9/altq.9 Tue Oct 25 00:20:36 2022
@@ -1,4 +1,4 @@
-.\" $NetBSD: altq.9,v 1.18 2022/05/26 14:39:30 rillig Exp $
+.\" $NetBSD: altq.9,v 1.19 2022/10/25 00:20:36 msaitoh Exp $
.\" $OpenBSD: altq.9,v 1.4 2001/07/12 12:41:42 itojun Exp $
.\"
.\" Copyright (C) 2001
@@ -25,7 +25,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd May 26, 2022
+.Dd October 24, 2022
.Dt ALTQ 9
.Os
.\"
@@ -169,7 +169,7 @@ these fields.)
struct mbuf *ifq_tail; | struct mbuf *ifq_tail;
int ifq_len; | int ifq_len;
int ifq_maxlen; | int ifq_maxlen;
- int ifq_drops; | int ifq_drops;
+ uint64_t ifq_drops; | uint64_t ifq_drops;
}; | /* altq related fields */
| ......
| };