[PATCH 3/3] NLM: Proposal for a timeout setting on blocking locks

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



# diff -u a/fs/lockd/svc.c b/fs/lockd/svc.c
--- a/fs/lockd/svc.c    Tue Feb 26 01:20:20 2008
+++ b/fs/lockd/svc.c    Mon Mar 10 16:21:58 2008
@@ -62,6 +62,7 @@
  */
 static unsigned long           nlm_grace_period;
 static unsigned long           nlm_timeout = LOCKD_DFLT_TIMEO;
+unsigned long                  nlm_clnt_poll_timeout = NLMCLNT_POLL_TIMEOUT;
 static int                     nlm_udpport, nlm_tcpport;
 int                            nsm_use_hostnames = 0;

@@ -72,6 +73,8 @@
 static const unsigned long     nlm_grace_period_max = 240;
 static const unsigned long     nlm_timeout_min = 3;
 static const unsigned long     nlm_timeout_max = 20;
+static const unsigned long     nlm_clnt_poll_timeout_min = 1;
+static const unsigned long     nlm_clnt_poll_timeout_max = 30;
 static const int               nlm_port_min = 0, nlm_port_max = 65535;

 static struct ctl_table_header * nlm_sysctl_table;
@@ -391,6 +394,16 @@
        },
        {
                .ctl_name       = CTL_UNNUMBERED,
+               .procname       = "nlm_clnt_poll_timeout",
+               .data           = &nlm_clnt_poll_timeout,
+               .maxlen         = sizeof(unsigned long),
+               .mode           = 0644,
+               .proc_handler   = &proc_doulongvec_minmax,
+               .extra1         = (unsigned long *) &nlm_clnt_poll_timeout_min,
+               .extra2         = (unsigned long *) &nlm_clnt_poll_timeout_max,
+       },
+       {
+               .ctl_name       = CTL_UNNUMBERED,
                .procname       = "nlm_udpport",
                .data           = &nlm_udpport,
                .maxlen         = sizeof(int),
@@ -514,6 +527,8 @@
 module_param_call(nlm_tcpport, param_set_port, param_get_int,
                  &nlm_tcpport, 0644);
 module_param(nsm_use_hostnames, bool, 0644);
+module_param_call(nlm_clnt_poll_timeout, param_set_timeout, param_get_ulong,
+                 &nlm_clnt_poll_timeout, 0644);

 /*
  * Initialising and terminating the module.
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [Samba]     [Device Mapper]     [CEPH Development]
  Powered by Linux