Module Name: src
Committed By: pooka
Date: Thu Mar 7 21:21:37 UTC 2013
Modified Files:
src/sys/rump/dev/lib/libbpf: component.c
Log Message:
In retrospect, putting bpf under the dev faction wasn't the smartest
thing to do (might have just as well put it under vfs). It's maybe too
late to change the name/location, but at least make it attach as part
of net so that using bpf does not mandate linking in the dev faction.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/rump/dev/lib/libbpf/component.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/dev/lib/libbpf/component.c
diff -u src/sys/rump/dev/lib/libbpf/component.c:1.3 src/sys/rump/dev/lib/libbpf/component.c:1.4
--- src/sys/rump/dev/lib/libbpf/component.c:1.3 Mon Mar 1 13:12:19 2010
+++ src/sys/rump/dev/lib/libbpf/component.c Thu Mar 7 21:21:37 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: component.c,v 1.3 2010/03/01 13:12:19 pooka Exp $ */
+/* $NetBSD: component.c,v 1.4 2013/03/07 21:21:37 pooka Exp $ */
/*
* Copyright (c) 2010 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.3 2010/03/01 13:12:19 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.4 2013/03/07 21:21:37 pooka Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@@ -39,7 +39,7 @@ __KERNEL_RCSID(0, "$NetBSD: component.c,
#include "rump_private.h"
#include "rump_vfs_private.h"
-RUMP_COMPONENT(RUMP_COMPONENT_DEV)
+RUMP_COMPONENT(RUMP_COMPONENT_NET)
{
extern const struct cdevsw bpf_cdevsw;
devmajor_t bmaj, cmaj;