diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-02-12 14:41:09 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-02-12 14:41:09 +0000 |
commit | 83d2e89c7ffb2d5e854f7218fb87bd9b84e76445 (patch) | |
tree | d4dd991115d2bbdf904080a59af98496bfd6ae71 /sys/kern | |
parent | 2483ace7e3f655ab9e54781d76d76d52eeed5bf7 (diff) |
Remove commons; inspired by netbsd.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/spec_vnops.c | 4 | ||||
-rw-r--r-- | sys/kern/uipc_mbuf.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/kern/spec_vnops.c b/sys/kern/spec_vnops.c index 067be255e05..0c948f296c3 100644 --- a/sys/kern/spec_vnops.c +++ b/sys/kern/spec_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spec_vnops.c,v 1.24 2002/11/08 04:34:17 art Exp $ */ +/* $OpenBSD: spec_vnops.c,v 1.25 2003/02/12 14:41:07 jason Exp $ */ /* $NetBSD: spec_vnops.c,v 1.29 1996/04/22 01:42:38 christos Exp $ */ /* @@ -56,6 +56,8 @@ #define v_lastr v_specinfo->si_lastr +struct vnode *speclisth[SPECHSZ]; + /* symbolic sleep message strings for devices */ char devopn[] = "devopn"; char devio[] = "devio"; diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 5e945e355d6..d3294797913 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_mbuf.c,v 1.58 2002/07/03 21:19:08 miod Exp $ */ +/* $OpenBSD: uipc_mbuf.c,v 1.59 2003/02/12 14:41:07 jason Exp $ */ /* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */ /* @@ -92,6 +92,7 @@ #include <uvm/uvm_extern.h> +struct mbstat mbstat; /* mbuf stats */ struct pool mbpool; /* mbuf pool */ struct pool mclpool; /* mbuf cluster pool */ |