|
@@ -47,6 +47,7 @@ static const struct nla_policy nldev_policy[RDMA_NLDEV_ATTR_MAX] = {
|
|
|
[RDMA_NLDEV_ATTR_SUBNET_PREFIX] = { .type = NLA_U64 },
|
|
|
[RDMA_NLDEV_ATTR_LID] = { .type = NLA_U32 },
|
|
|
[RDMA_NLDEV_ATTR_SM_LID] = { .type = NLA_U32 },
|
|
|
+ [RDMA_NLDEV_ATTR_LMC] = { .type = NLA_U8 },
|
|
|
};
|
|
|
|
|
|
static int fill_dev_info(struct sk_buff *msg, struct ib_device *device)
|
|
@@ -109,6 +110,8 @@ static int fill_port_info(struct sk_buff *msg,
|
|
|
return -EMSGSIZE;
|
|
|
if (nla_put_u32(msg, RDMA_NLDEV_ATTR_SM_LID, attr.sm_lid))
|
|
|
return -EMSGSIZE;
|
|
|
+ if (nla_put_u8(msg, RDMA_NLDEV_ATTR_LMC, attr.lmc))
|
|
|
+ return -EMSGSIZE;
|
|
|
}
|
|
|
return 0;
|
|
|
}
|