svn commit: r360781 - stable/12/sys/net

Mark Johnston markj at FreeBSD.org
Thu May 7 14:49:18 UTC 2020


Author: markj
Date: Thu May  7 14:49:17 2020
New Revision: 360781
URL: https://svnweb.freebsd.org/changeset/base/360781

Log:
  MFC r360498:
  Increase the iflib txq callout mutex name length to 32 bytes.
  
  PR:	245712

Modified:
  stable/12/sys/net/iflib.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/net/iflib.c
==============================================================================
--- stable/12/sys/net/iflib.c	Thu May  7 14:20:52 2020	(r360780)
+++ stable/12/sys/net/iflib.c	Thu May  7 14:49:17 2020	(r360781)
@@ -359,7 +359,7 @@ struct iflib_txq {
 	bus_dma_tag_t	ift_buf_tag;
 	bus_dma_tag_t	ift_tso_buf_tag;
 	iflib_dma_info_t	ift_ifdi;
-#define MTX_NAME_LEN 16
+#define	MTX_NAME_LEN	32
 	char                    ift_mtx_name[MTX_NAME_LEN];
 	bus_dma_segment_t	ift_segs[IFLIB_MAX_TX_SEGS]  __aligned(CACHE_LINE_SIZE);
 #ifdef IFLIB_DIAGNOSTICS


More information about the svn-src-all mailing list