Skip to content

Commit 1c27876

Browse files
authored
Merge pull request openucx#8350 from yosefe/topic/uct-ib-dc-remove-unused-field
UCT/IB/DC: Remove unused field
2 parents a21fa43 + ad5381e commit 1c27876

File tree

1 file changed

+8
-19
lines changed

1 file changed

+8
-19
lines changed

src/uct/ib/dc/dc_mlx5_ep.h

+8-19
Original file line numberDiff line numberDiff line change
@@ -62,25 +62,14 @@ enum uct_dc_mlx5_ep_flags {
6262
};
6363

6464
struct uct_dc_mlx5_ep {
65-
/*
66-
* per value of 'flags':
67-
* INVALID - 'list' is added to iface->tx.gc_list.
68-
* Otherwise - 'super' and 'arb_group' are used.
69-
*/
70-
union {
71-
struct {
72-
uct_base_ep_t super;
73-
ucs_arbiter_group_t arb_group;
74-
};
75-
ucs_list_link_t list;
76-
};
77-
78-
uint8_t dci;
79-
uint8_t atomic_mr_id;
80-
uint16_t flags;
81-
uint16_t flush_rkey_hi;
82-
uct_rc_fc_t fc;
83-
uct_ib_mlx5_base_av_t av;
65+
uct_base_ep_t super;
66+
ucs_arbiter_group_t arb_group;
67+
uint8_t dci;
68+
uint8_t atomic_mr_id;
69+
uint16_t flags;
70+
uint16_t flush_rkey_hi;
71+
uct_rc_fc_t fc;
72+
uct_ib_mlx5_base_av_t av;
8473
};
8574

8675
typedef struct {

0 commit comments

Comments
 (0)