svn commit: r310917 - stable/11/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sat Dec 31 10:59:24 UTC 2016


Author: arybchik
Date: Sat Dec 31 10:59:22 2016
New Revision: 310917
URL: https://svnweb.freebsd.org/changeset/base/310917

Log:
  MFC r310683
  
  sfxge(4): cleanup: pointer symbol should go together with struct member name
  
  Found by DPDK checkpatch.sh
  
  Sponsored by:   Solarflare Communications, Inc.

Modified:
  stable/11/sys/dev/sfxge/common/ef10_impl.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/sfxge/common/ef10_impl.h
==============================================================================
--- stable/11/sys/dev/sfxge/common/ef10_impl.h	Sat Dec 31 10:57:24 2016	(r310916)
+++ stable/11/sys/dev/sfxge/common/ef10_impl.h	Sat Dec 31 10:59:22 2016	(r310917)
@@ -950,7 +950,7 @@ typedef struct ef10_filter_entry_s {
 
 typedef struct ef10_filter_table_s {
 	ef10_filter_entry_t	eft_entry[EFX_EF10_FILTER_TBL_ROWS];
-	efx_rxq_t *		eft_default_rxq;
+	efx_rxq_t		*eft_default_rxq;
 	boolean_t		eft_using_rss;
 	uint32_t		eft_unicst_filter_indexes[
 	    EFX_EF10_FILTER_UNICAST_FILTERS_MAX];


More information about the svn-src-stable-11 mailing list