From owner-svn-src-projects@FreeBSD.ORG Thu Oct 14 14:13:45 2010 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 218B2106566B; Thu, 14 Oct 2010 14:13:45 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1015D8FC16; Thu, 14 Oct 2010 14:13:45 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9EEDiGR026531; Thu, 14 Oct 2010 14:13:44 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9EEDisB026529; Thu, 14 Oct 2010 14:13:44 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201010141413.o9EEDisB026529@svn.freebsd.org> From: Attilio Rao Date: Thu, 14 Oct 2010 14:13:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r213834 - projects/sv/sys/netinet X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Oct 2010 14:13:45 -0000 Author: attilio Date: Thu Oct 14 14:13:44 2010 New Revision: 213834 URL: http://svn.freebsd.org/changeset/base/213834 Log: Enable netdump working with VIMAGE. Modified: projects/sv/sys/netinet/netdump_client.c Modified: projects/sv/sys/netinet/netdump_client.c ============================================================================== --- projects/sv/sys/netinet/netdump_client.c Thu Oct 14 13:56:26 2010 (r213833) +++ projects/sv/sys/netinet/netdump_client.c Thu Oct 14 14:13:44 2010 (r213834) @@ -77,10 +77,6 @@ #include #endif -#ifdef VIMAGE -#error "Netdump kernel support cannot be compiled with VIMAGE option" -#endif - #ifdef NETDUMP_CLIENT_DEBUG #define NETDDEBUG(f, ...) printf((f), ## __VA_ARGS__) #define NETDDEBUG_IF(i, f, ...) if_printf((i), (f), ## __VA_ARGS__)