summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2017-12-21 01:11:48 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2017-12-21 01:11:48 +0000
commit1754c848dd7aa791c32f351e0e4f45480652cc02 (patch)
tree7bd8bb29b5561de378aba0880be4b76646309cea /sys/net
parent93f3c756a5b981d7e4b3c33c52369039330b4881 (diff)
prototype if_attach_iqueues so drivers can configure multiple iqs.
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if.h b/sys/net/if.h
index 4dcddb75772..4d7dec37fad 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.h,v 1.188 2017/11/09 09:07:01 tb Exp $ */
+/* $OpenBSD: if.h,v 1.189 2017/12/21 01:11:47 dlg Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -463,6 +463,7 @@ void if_alloc_sadl(struct ifnet *);
void if_free_sadl(struct ifnet *);
void if_attach(struct ifnet *);
void if_attach_queues(struct ifnet *, unsigned int);
+void if_attach_iqueues(struct ifnet *, unsigned int);
void if_attach_ifq(struct ifnet *, const struct ifq_ops *, void *);
void if_attachtail(struct ifnet *);
void if_attachhead(struct ifnet *);