|
@@ -2848,19 +2848,23 @@ out_invalid_transport_udp:
|
|
|
* NFS client for backwards compatibility
|
|
|
*/
|
|
|
unsigned int nfs_callback_set_tcpport;
|
|
|
+unsigned short nfs_callback_nr_threads;
|
|
|
/* Default cache timeout is 10 minutes */
|
|
|
unsigned int nfs_idmap_cache_timeout = 600;
|
|
|
/* Turn off NFSv4 uid/gid mapping when using AUTH_SYS */
|
|
|
bool nfs4_disable_idmapping = true;
|
|
|
unsigned short max_session_slots = NFS4_DEF_SLOT_TABLE_SIZE;
|
|
|
+unsigned short max_session_cb_slots = NFS4_DEF_CB_SLOT_TABLE_SIZE;
|
|
|
unsigned short send_implementation_id = 1;
|
|
|
char nfs4_client_id_uniquifier[NFS4_CLIENT_ID_UNIQ_LEN] = "";
|
|
|
bool recover_lost_locks = false;
|
|
|
|
|
|
+EXPORT_SYMBOL_GPL(nfs_callback_nr_threads);
|
|
|
EXPORT_SYMBOL_GPL(nfs_callback_set_tcpport);
|
|
|
EXPORT_SYMBOL_GPL(nfs_idmap_cache_timeout);
|
|
|
EXPORT_SYMBOL_GPL(nfs4_disable_idmapping);
|
|
|
EXPORT_SYMBOL_GPL(max_session_slots);
|
|
|
+EXPORT_SYMBOL_GPL(max_session_cb_slots);
|
|
|
EXPORT_SYMBOL_GPL(send_implementation_id);
|
|
|
EXPORT_SYMBOL_GPL(nfs4_client_id_uniquifier);
|
|
|
EXPORT_SYMBOL_GPL(recover_lost_locks);
|
|
@@ -2887,6 +2891,9 @@ static const struct kernel_param_ops param_ops_portnr = {
|
|
|
#define param_check_portnr(name, p) __param_check(name, p, unsigned int);
|
|
|
|
|
|
module_param_named(callback_tcpport, nfs_callback_set_tcpport, portnr, 0644);
|
|
|
+module_param_named(callback_nr_threads, nfs_callback_nr_threads, ushort, 0644);
|
|
|
+MODULE_PARM_DESC(callback_nr_threads, "Number of threads that will be "
|
|
|
+ "assigned to the NFSv4 callback channels.");
|
|
|
module_param(nfs_idmap_cache_timeout, int, 0644);
|
|
|
module_param(nfs4_disable_idmapping, bool, 0644);
|
|
|
module_param_string(nfs4_unique_id, nfs4_client_id_uniquifier,
|
|
@@ -2896,6 +2903,9 @@ MODULE_PARM_DESC(nfs4_disable_idmapping,
|
|
|
module_param(max_session_slots, ushort, 0644);
|
|
|
MODULE_PARM_DESC(max_session_slots, "Maximum number of outstanding NFSv4.1 "
|
|
|
"requests the client will negotiate");
|
|
|
+module_param(max_session_cb_slots, ushort, 0644);
|
|
|
+MODULE_PARM_DESC(max_session_slots, "Maximum number of parallel NFSv4.1 "
|
|
|
+ "callbacks the client will process for a given server");
|
|
|
module_param(send_implementation_id, ushort, 0644);
|
|
|
MODULE_PARM_DESC(send_implementation_id,
|
|
|
"Send implementation ID with NFSv4.1 exchange_id");
|