diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-04 22:27:32 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-04 22:27:32 +0000 |
commit | 91de0ed61f4bcb515bb9ea8b3438aea031200887 (patch) | |
tree | e179e73a7d9352757784ceb460d9199af9b05530 /sys/dev/pci/ixgbe.h | |
parent | d43e491163b2b74081409764cffe70d535b73e1d (diff) |
switch to a bnx style dynamic pool backed tx so we don't
have to allocate everything up front.
Requested by reyk@, 'I'm fine with it' dlg@, 'commit it' deraadt@
Diffstat (limited to 'sys/dev/pci/ixgbe.h')
-rw-r--r-- | sys/dev/pci/ixgbe.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ixgbe.h b/sys/dev/pci/ixgbe.h index 30fc9bd8633..f91ee0900a1 100644 --- a/sys/dev/pci/ixgbe.h +++ b/sys/dev/pci/ixgbe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ixgbe.h,v 1.3 2008/06/08 21:15:34 reyk Exp $ */ +/* $OpenBSD: ixgbe.h,v 1.4 2009/06/04 22:27:31 jsg Exp $ */ /****************************************************************************** @@ -49,6 +49,8 @@ #include <sys/device.h> #include <sys/socket.h> #include <sys/timeout.h> +#include <sys/pool.h> +#include <sys/rwlock.h> #include <sys/workq.h> #include <net/if.h> |