svn commit: r311051 - stable/10/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Mon Jan 2 08:53:55 UTC 2017


Author: arybchik
Date: Mon Jan  2 08:53:53 2017
New Revision: 311051
URL: https://svnweb.freebsd.org/changeset/base/311051

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/10/sys/dev/sfxge/common/ef10_impl.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/ef10_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_impl.h	Mon Jan  2 08:51:28 2017	(r311050)
+++ stable/10/sys/dev/sfxge/common/ef10_impl.h	Mon Jan  2 08:53:53 2017	(r311051)
@@ -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-all mailing list