Improve bad comment.
authorjan <jan@openbsd.org>
Fri, 20 Oct 2023 07:31:12 +0000 (07:31 +0000)
committerjan <jan@openbsd.org>
Fri, 20 Oct 2023 07:31:12 +0000 (07:31 +0000)
pointed out by kn@

ok kn@

sys/dev/pci/if_ix.c
sys/dev/pci/if_ixl.c

index a832a9a..157a5da 100644 (file)
@@ -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 <dev/pci/ixgbe_type.h>
 
 /*
- * 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);
 
index 07eb9db..f928cec 100644 (file)
@@ -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);