mirror of https://github.com/xemu-project/xemu.git
hw/rdma: Delete duplicate definition of MAX_RM_TBL_NAME
By a mistake this constant was defined twice - remove the duplication. Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Reviewed-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Message-Id: <20180430200223.4119-7-marcel.apfelbaum@gmail.com>
This commit is contained in:
parent
350929172b
commit
6c080b9ea6
|
@ -21,8 +21,6 @@
|
|||
#include "rdma_backend.h"
|
||||
#include "rdma_rm.h"
|
||||
|
||||
#define MAX_RM_TBL_NAME 16
|
||||
|
||||
/* Page directory and page tables */
|
||||
#define PG_DIR_SZ { TARGET_PAGE_SIZE / sizeof(__u64) }
|
||||
#define PG_TBL_SZ { TARGET_PAGE_SIZE / sizeof(__u64) }
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
#define MAX_QP_INIT_RD_ATOM 16
|
||||
#define MAX_AH 64
|
||||
|
||||
#define MAX_RMRESTBL_NAME_SZ 16
|
||||
#define MAX_RM_TBL_NAME 16
|
||||
typedef struct RdmaRmResTbl {
|
||||
char name[MAX_RMRESTBL_NAME_SZ];
|
||||
char name[MAX_RM_TBL_NAME];
|
||||
QemuMutex lock;
|
||||
unsigned long *bitmap;
|
||||
size_t tbl_sz;
|
||||
|
|
Loading…
Reference in New Issue