svn commit: r301489 - head/sys/modules/sfxge

Andrew Rybchenko arybchik at FreeBSD.org
Mon Jun 6 09:04:22 UTC 2016


Author: arybchik
Date: Mon Jun  6 09:04:20 2016
New Revision: 301489
URL: https://svnweb.freebsd.org/changeset/base/301489

Log:
  sfxge(4): prepare sfxge to be RSS API aware
  
  This change is needed because 'opt_rss.h' is included by multiple source
  files and RSS macro is defined as 1 within the file during build process
  if option RSS is enabled in the kernel.
  
  Submitted by:   Ivan Malov <Ivan.Malov at oktetlabs.ru>
  Reviewed by:    gnn
  Sponsored by:   Solarflare Communications, Inc.
  Differential Revision:  https://reviews.freebsd.org/D6718

Modified:
  head/sys/modules/sfxge/Makefile

Modified: head/sys/modules/sfxge/Makefile
==============================================================================
--- head/sys/modules/sfxge/Makefile	Mon Jun  6 07:39:44 2016	(r301488)
+++ head/sys/modules/sfxge/Makefile	Mon Jun  6 09:04:20 2016	(r301489)
@@ -5,7 +5,7 @@ KMOD=	sfxge
 SFXGE= ${.CURDIR}/../../dev/sfxge
 
 SRCS=	device_if.h bus_if.h pci_if.h
-SRCS+=	opt_inet.h opt_inet6.h opt_sched.h
+SRCS+=	opt_inet.h opt_inet6.h opt_sched.h opt_rss.h
 
 .PATH: ${.CURDIR}/../../dev/sfxge
 SRCS+=	sfxge.c sfxge_dma.c sfxge_ev.c


More information about the svn-src-head mailing list