From 936f91c62f4dcb2be8c16e16495aee7223fc8b6b Mon Sep 17 00:00:00 2001 From: jan Date: Fri, 20 Oct 2023 07:31:12 +0000 Subject: [PATCH] Improve bad comment. pointed out by kn@ ok kn@ --- sys/dev/pci/if_ix.c | 6 +++--- sys/dev/pci/if_ixl.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/dev/pci/if_ix.c b/sys/dev/pci/if_ix.c index a832a9a4207..157a5da0ac8 100644 --- a/sys/dev/pci/if_ix.c +++ b/sys/dev/pci/if_ix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ix.c,v 1.204 2023/08/21 21:45:18 bluhm Exp $ */ +/* $OpenBSD: if_ix.c,v 1.205 2023/10/20 07:31:12 jan Exp $ */ /****************************************************************************** @@ -38,8 +38,8 @@ #include /* - * Our TCP/IP Stack could not handle packets greater than MAXMCLBYTES. - * This interface could not handle packets greater than IXGBE_TSO_SIZE. + * Our TCP/IP Stack is unable to handle packets greater than MAXMCLBYTES. + * This interface is unable to handle packets greater than IXGBE_TSO_SIZE. */ CTASSERT(MAXMCLBYTES <= IXGBE_TSO_SIZE); diff --git a/sys/dev/pci/if_ixl.c b/sys/dev/pci/if_ixl.c index 07eb9db2f26..f928cec2413 100644 --- a/sys/dev/pci/if_ixl.c +++ b/sys/dev/pci/if_ixl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ixl.c,v 1.90 2023/10/19 16:28:02 jan Exp $ */ +/* $OpenBSD: if_ixl.c,v 1.91 2023/10/20 07:31:12 jan Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -909,8 +909,8 @@ struct ixl_rx_wb_desc_32 { #define IXL_MAX_DMA_SEG_SIZE ((16 * 1024) - 1) /* - * Our TCP/IP Stack could not handle packets greater than MAXMCLBYTES. - * This interface could not handle packets greater than IXL_TSO_SIZE. + * Our TCP/IP Stack is unable handle packets greater than MAXMCLBYTES. + * This interface is unable handle packets greater than IXL_TSO_SIZE. */ CTASSERT(MAXMCLBYTES < IXL_TSO_SIZE); -- 2.20.1