1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

infiband: remove non-supported infiniband_fd() function

This commit is contained in:
Steffen Vogel 2019-01-09 14:36:46 +01:00
parent 0afadb6c19
commit 24dcd04b95

View file

@ -992,11 +992,6 @@ int ib_write(struct node *n, struct sample *smps[], unsigned cnt, unsigned *rele
return sent;
}
int ib_fd(struct node *n)
{
return 0;
}
static struct plugin p = {
.name = "infiniband",
.description = "Infiniband interface (libibverbs, librdmacm)",
@ -1014,7 +1009,6 @@ static struct plugin p = {
.stop = ib_stop,
.read = ib_read,
.write = ib_write,
.fd = ib_fd,
.memory_type = memory_ib
}
};