Module Name: src Committed By: msaitoh Date: Tue Nov 14 03:03:18 UTC 2023
Modified Files: src/sys/dev/pci/ixgbe: ix_txrx.c Log Message: ixgbe(4): Modify comment. No functional change. ixgbe_tx_ctx_setup() may or may not consume one TX descriptor. To generate a diff of this commit: cvs rdiff -u -r1.106 -r1.107 src/sys/dev/pci/ixgbe/ix_txrx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/ixgbe/ix_txrx.c diff -u src/sys/dev/pci/ixgbe/ix_txrx.c:1.106 src/sys/dev/pci/ixgbe/ix_txrx.c:1.107 --- src/sys/dev/pci/ixgbe/ix_txrx.c:1.106 Tue Nov 14 02:31:46 2023 +++ src/sys/dev/pci/ixgbe/ix_txrx.c Tue Nov 14 03:03:18 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: ix_txrx.c,v 1.106 2023/11/14 02:31:46 msaitoh Exp $ */ +/* $NetBSD: ix_txrx.c,v 1.107 2023/11/14 03:03:18 msaitoh Exp $ */ /****************************************************************************** @@ -64,7 +64,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ix_txrx.c,v 1.106 2023/11/14 02:31:46 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ix_txrx.c,v 1.107 2023/11/14 03:03:18 msaitoh Exp $"); #include "opt_inet.h" #include "opt_inet6.h" @@ -487,8 +487,8 @@ retry: } /* - * Set up the appropriate offload context - * this will consume the first descriptor + * Set up the appropriate offload context if requested, + * this may consume one TX descriptor. */ error = ixgbe_tx_ctx_setup(txr, m_head, &cmd_type_len, &olinfo_status); if (__predict_false(error)) {