diff options
author | Michael Brown | 2016-03-08 16:49:52 +0100 |
---|---|---|
committer | Michael Brown | 2016-03-08 18:38:06 +0100 |
commit | 299fdabe4848fae1bd4403836e21964c754ea9ef (patch) | |
tree | 82ddfc8ec939d5b46ece9863649b0f0d9e4485b0 /src/include/usr | |
parent | [infiniband] Assign names to queue pairs (diff) | |
download | ipxe-299fdabe4848fae1bd4403836e21964c754ea9ef.tar.gz ipxe-299fdabe4848fae1bd4403836e21964c754ea9ef.tar.xz ipxe-299fdabe4848fae1bd4403836e21964c754ea9ef.zip |
[infiniband] Add "ibstat" command
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/usr')
-rw-r--r-- | src/include/usr/ibmgmt.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/usr/ibmgmt.h b/src/include/usr/ibmgmt.h new file mode 100644 index 00000000..16a09913 --- /dev/null +++ b/src/include/usr/ibmgmt.h @@ -0,0 +1,16 @@ +#ifndef _USR_IBMGMT_H +#define _USR_IBMGMT_H + +/** @file + * + * Infiniband device management + * + */ + +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + +struct ib_device; + +extern void ibstat ( struct ib_device *ibdev ); + +#endif /* _USR_IBMGMT_H */ |