Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Nov 2018 01:27:24 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340473 - head/sys/dev/cxgbe/tom
Message-ID:  <201811160127.wAG1RO3J032013@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Nov 16 01:27:24 2018
New Revision: 340473
URL: https://svnweb.freebsd.org/changeset/base/340473

Log:
  Restore the <sys/vmem.h> header to fix build of cxgbe(4) TOM.
  
  vmem's are not just used for TLS memory in TOM and the #include actually
  predates the TLS code so should not have been removed when the TLS vmem
  moved in r340466.
  
  Pointy hat to:	jhb
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/dev/cxgbe/tom/t4_tom.h

Modified: head/sys/dev/cxgbe/tom/t4_tom.h
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_tom.h	Fri Nov 16 00:44:22 2018	(r340472)
+++ head/sys/dev/cxgbe/tom/t4_tom.h	Fri Nov 16 01:27:24 2018	(r340473)
@@ -32,6 +32,7 @@
 
 #ifndef __T4_TOM_H__
 #define __T4_TOM_H__
+#include <sys/vmem.h>
 #include "tom/t4_tls.h"
 
 #define LISTEN_HASH_SIZE 32



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811160127.wAG1RO3J032013>