svn commit: r212643 - projects/sv/sys/netinet

Attilio Rao attilio at FreeBSD.org
Wed Sep 15 08:44:58 UTC 2010


Author: attilio
Date: Wed Sep 15 08:44:57 2010
New Revision: 212643
URL: http://svn.freebsd.org/changeset/base/212643

Log:
  Temporary disable netdump client when VIMAGE is specified.
  To be fixed ASAP.
  
  Reported by:	bz

Modified:
  projects/sv/sys/netinet/netdump_client.c

Modified: projects/sv/sys/netinet/netdump_client.c
==============================================================================
--- projects/sv/sys/netinet/netdump_client.c	Wed Sep 15 08:24:19 2010	(r212642)
+++ projects/sv/sys/netinet/netdump_client.c	Wed Sep 15 08:44:57 2010	(r212643)
@@ -82,6 +82,10 @@
 #include <ddb/ddb.h>
 #endif
 
+#ifdef VIMAGE
+#error "Netdump kernel support cannot be compiled with VIMAGE option"
+#endif
+
 #ifdef NETDUMP_DEBUG
 #define	NETDDEBUG(f, ...)		printf((f), ## __VA_ARGS__)
 #define	NETDDEBUG_IF(i, f, ...)		if_printf((i), (f), ## __VA_ARGS__)


More information about the svn-src-projects mailing list