blob: 84405e86b3229c8d93ea433d1bc0643d7884a1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* packet-irdma.h
*
* Definitions for IBM i RDMA packet dissection
* Copyright 2018, 2024 IBM Corporation
* Brian Jongekryg (bej@us.ibm.com, bej@arbin.net)
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_IRDMA_H__
#define __PACKET_IRDMA_H__
#define IRDMAEP_DATA_TYPE 0
#define IRDMAEP_USERRDMA_TYPE 1
typedef struct irdmaep_pdata
{
unsigned pdata_type;
uint32_t userrdma_offset;
} irdmaep_pdata_t;
#endif
|