summaryrefslogtreecommitdiff
path: root/sys/miscfs
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2013-06-06 02:00:59 +0000
committerdholland <dholland@NetBSD.org>2013-06-06 02:00:59 +0000
commitab091ca8cc170393bdbf19082bc9b7bc75149a08 (patch)
treed389636956fe373588ba0f745c39cf0f29406b37 /sys/miscfs
parent9684928f382e9c12caf8beceaa4749b558a68ffe (diff)
Add missing declaration of struct vnode.
Diffstat (limited to 'sys/miscfs')
-rw-r--r--sys/miscfs/genfs/genfs_node.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/miscfs/genfs/genfs_node.h b/sys/miscfs/genfs/genfs_node.h
index 60e1245d2de..a804dc38029 100644
--- a/sys/miscfs/genfs/genfs_node.h
+++ b/sys/miscfs/genfs/genfs_node.h
@@ -1,4 +1,4 @@
-/* $NetBSD: genfs_node.h,v 1.20 2010/09/01 16:56:19 chs Exp $ */
+/* $NetBSD: genfs_node.h,v 1.21 2013/06/06 02:00:59 dholland Exp $ */
/*
* Copyright (c) 2001 Chuck Silvers.
@@ -38,6 +38,7 @@
struct vm_page;
struct kauth_cred;
struct uio;
+struct vnode;
struct genfs_ops {
void (*gop_size)(struct vnode *, off_t, off_t *, int);
r 2014-06-05- Implement pktqueue interface for lockless IP input queue.rmind 2014-03-13rename component.c -> netinet_component.cpooka 2014-02-14Register netisr's from component constructors instead of via a hardcodedpooka 2014-01-02Allow kernels compiled with INET+INET6 to be booted as IPv4-only or IPv6-only.pooka 2013-08-14Partially revert previous, there are still a few gotchas inpooka 2013-08-14Separate inet and inet6, allows inet6-only rump kernels.pooka 2013-06-30Raise lo0 so that ipv6 config gets done for it.pooka 2013-06-01default portalgo to random_start, for less connections from port 65535pooka 2013-06-01cosmetic: put portalgo.c in the conceptually right placepooka 2011-05-03Reduces the resources demanded by TCP sessions in TIME_WAIT-state usingdyoung 2011-01-11Ensure that a) loopback attaches after all the domains have attachedpooka 2011-01-09Autoconfigure 127.0.0.1 for lo0.pooka 2010-08-10Support carp. It would be nice to support this as its own component,pooka 2010-07-13Split-off IPv4 re-assembly mechanism into a separate module. Abstractrmind 2010-03-01Introduce RUMP_COMPONENT. It behaves mostly like a simplifiedpooka 2010-02-16Globally define -Wno-pointer-sign, as it has become a pointlesspooka 2009-12-11Include component.c instead of dummy.c so that domain constructorspooka 2009-05-28Use a bunch of weak symbols to determine which network componentspooka 2009-05-26Support IPv6 in rump. I'd have liked to introduce a netinet6pooka 2009-02-03Better define GATEWAY in opt_gateway.h instead of the Makefile sopooka 2009-02-01enable GATEWAYpooka 2009-01-01Purge multiple kernel opt files.pooka 2008-10-16Deal with the ld.so/linkset brokenness and compile all of libnetpooka 2008-10-13Add tcp debugging as a build option.pooka 2008-10-06Provide the TCP/IP as a rump library.pooka