aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/ehca/ehca_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/infiniband/hw/ehca/ehca_main.c')
-rw-r--r--drivers/infiniband/hw/ehca/ehca_main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/infiniband/hw/ehca/ehca_main.c b/drivers/infiniband/hw/ehca/ehca_main.c
index c240e9972cb0..832e7a7d0aee 100644
--- a/drivers/infiniband/hw/ehca/ehca_main.c
+++ b/drivers/infiniband/hw/ehca/ehca_main.c
@@ -59,16 +59,16 @@ MODULE_AUTHOR("Christoph Raisch <raisch@de.ibm.com>");
59MODULE_DESCRIPTION("IBM eServer HCA InfiniBand Device Driver"); 59MODULE_DESCRIPTION("IBM eServer HCA InfiniBand Device Driver");
60MODULE_VERSION(HCAD_VERSION); 60MODULE_VERSION(HCAD_VERSION);
61 61
62static int ehca_open_aqp1 = 0; 62static bool ehca_open_aqp1 = 0;
63static int ehca_hw_level = 0; 63static int ehca_hw_level = 0;
64static int ehca_poll_all_eqs = 1; 64static bool ehca_poll_all_eqs = 1;
65 65
66int ehca_debug_level = 0; 66int ehca_debug_level = 0;
67int ehca_nr_ports = -1; 67int ehca_nr_ports = -1;
68int ehca_use_hp_mr = 0; 68bool ehca_use_hp_mr = 0;
69int ehca_port_act_time = 30; 69int ehca_port_act_time = 30;
70int ehca_static_rate = -1; 70int ehca_static_rate = -1;
71int ehca_scaling_code = 0; 71bool ehca_scaling_code = 0;
72int ehca_lock_hcalls = -1; 72int ehca_lock_hcalls = -1;
73int ehca_max_cq = -1; 73int ehca_max_cq = -1;
74int ehca_max_qp = -1; 74int ehca_max_qp = -1;
@@ -82,7 +82,7 @@ module_param_named(port_act_time, ehca_port_act_time, int, S_IRUGO);
82module_param_named(poll_all_eqs, ehca_poll_all_eqs, bool, S_IRUGO); 82module_param_named(poll_all_eqs, ehca_poll_all_eqs, bool, S_IRUGO);
83module_param_named(static_rate, ehca_static_rate, int, S_IRUGO); 83module_param_named(static_rate, ehca_static_rate, int, S_IRUGO);
84module_param_named(scaling_code, ehca_scaling_code, bool, S_IRUGO); 84module_param_named(scaling_code, ehca_scaling_code, bool, S_IRUGO);
85module_param_named(lock_hcalls, ehca_lock_hcalls, bool, S_IRUGO); 85module_param_named(lock_hcalls, ehca_lock_hcalls, bint, S_IRUGO);
86module_param_named(number_of_cqs, ehca_max_cq, int, S_IRUGO); 86module_param_named(number_of_cqs, ehca_max_cq, int, S_IRUGO);
87module_param_named(number_of_qps, ehca_max_qp, int, S_IRUGO); 87module_param_named(number_of_qps, ehca_max_qp, int, S_IRUGO);
88 88