RDMA/nes: Module parameter permissions
Change permission to 0644 so root can set mpa_version, disable_mpa_crc, send_first, and nes_drv_opt at runtime. Signed-off-by: Sweta Bhatt <sweta.bhatt@einfochips.com> Signed-off-by: Chien Tung <ctung@neteffect.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
fcb7ad31be
commit
de182149c3
|
@ -70,21 +70,21 @@ int interrupt_mod_interval = 0;
|
|||
|
||||
/* Interoperability */
|
||||
int mpa_version = 1;
|
||||
module_param(mpa_version, int, 0);
|
||||
module_param(mpa_version, int, 0644);
|
||||
MODULE_PARM_DESC(mpa_version, "MPA version to be used int MPA Req/Resp (0 or 1)");
|
||||
|
||||
/* Interoperability */
|
||||
int disable_mpa_crc = 0;
|
||||
module_param(disable_mpa_crc, int, 0);
|
||||
module_param(disable_mpa_crc, int, 0644);
|
||||
MODULE_PARM_DESC(disable_mpa_crc, "Disable checking of MPA CRC");
|
||||
|
||||
unsigned int send_first = 0;
|
||||
module_param(send_first, int, 0);
|
||||
module_param(send_first, int, 0644);
|
||||
MODULE_PARM_DESC(send_first, "Send RDMA Message First on Active Connection");
|
||||
|
||||
|
||||
unsigned int nes_drv_opt = 0;
|
||||
module_param(nes_drv_opt, int, 0);
|
||||
module_param(nes_drv_opt, int, 0644);
|
||||
MODULE_PARM_DESC(nes_drv_opt, "Driver option parameters");
|
||||
|
||||
unsigned int nes_debug_level = 0;
|
||||
|
|
Loading…
Reference in New Issue