Data Plane Development Kit Reference Manual: Intel FPGA Programmable Acceleration Card N3000

ID 683512
Date 12/06/2019
Public
Document Table of Contents

2.4.3.2. opae_acc_get_uuid()

Prototype:

int opae_acc_get_uuid(struct opae_accelerator *acc, struct uuid *uuid);

Arguments:

acc: A pointer to the opae_accelerator.
struct opae_accelerator {
	TAILQ_ENTRY(opae_accelerator) node;
	const char *name;
	int index;
	struct opae_bridge *br;
	struct opae_manager *mgr;
	struct opae_accelerator_ops *ops;
	void *data;
	};
uuid: A pointer to uuid struc:
struct uuid {
	u8 b[16];
	};

Returns:

Int.

Description:

Get an accelerator UUID.