We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5df5f commit 67cf362Copy full SHA for 67cf362
drivers/infiniband/sw/rxe/rxe_param.h
@@ -114,7 +114,6 @@ enum rxe_device_param {
114
RXE_MAX_UCONTEXT = 512,
115
116
RXE_NUM_PORT = 1,
117
- RXE_NUM_COMP_VECTORS = 1,
118
119
RXE_MIN_QP_INDEX = 16,
120
RXE_MAX_QP_INDEX = 0x00020000,
drivers/infiniband/sw/rxe/rxe_verbs.c
@@ -1239,7 +1239,7 @@ int rxe_register_device(struct rxe_dev *rxe)
1239
dev->owner = THIS_MODULE;
1240
dev->node_type = RDMA_NODE_IB_CA;
1241
dev->phys_port_cnt = 1;
1242
- dev->num_comp_vectors = RXE_NUM_COMP_VECTORS;
+ dev->num_comp_vectors = num_possible_cpus();
1243
dev->dev.parent = rxe_dma_device(rxe);
1244
dev->local_dma_lkey = 0;
1245
addrconf_addr_eui48((unsigned char *)&dev->node_guid,
0 commit comments