1
1
openmpi/ompi/mca/btl/pcie/btl_pcie_ddriver.h
Ralph Castain 4d3aa5a8a4 Once again, into the breach!
Yes, friends, our favorite PCIE BTL has resurfaced as mgmt vacillates over its existence. This is an updated version that actually mostly works, in its final stages of debugging.

Some generalization still remains to be done...

This commit was SVN r21358.
2009-06-02 22:26:36 +00:00

22 строки
369 B
C

#ifndef _BTL_PCIE_DDRIVER_H
#define _BTL_PCIE_DDRIVER_H
typedef struct DD_adapter_handle
{
int local_sma_size;
int remote_sma_size;
void* local_sma_address;
void* remote_sma_address;
int fd;
void *cmd_block;
} DD_adapter_handle;
#include <asm/types.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <linux/axon_ioctl.h>
#endif