]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rbd: kill notify_timeout option
authorAlex Elder <elder@inktank.com>
Fri, 10 Aug 2012 20:12:07 +0000 (13:12 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Jan 2013 16:51:20 +0000 (08:51 -0800)
The "notify_timeout" rbd device option is never used, so get rid of
it.

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Yehuda Sadeh <yehuda@inktank.com>
(cherry picked from commit 84d34dcc116e117a41c6fc8be13430529fc2d9e7)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/block/rbd.c

index 78996d0e1499530c9d43a286fdcac2230c2ebe4d..cf3ce697c0b6a8cf720da25b584aee1d71b7ac51 100644 (file)
@@ -71,7 +71,6 @@
 #define DEV_NAME_LEN           32
 #define MAX_INT_FORMAT_WIDTH   ((5 * sizeof (int)) / 2 + 1)
 
-#define RBD_NOTIFY_TIMEOUT_DEFAULT     10
 #define RBD_READ_ONLY_DEFAULT          false
 
 /*
@@ -95,7 +94,6 @@ struct rbd_image_header {
 };
 
 struct rbd_options {
-       int     notify_timeout;
        bool    read_only;
 };
 
@@ -343,7 +341,6 @@ static struct rbd_client *__rbd_client_find(struct ceph_options *opt)
  * mount options
  */
 enum {
-       Opt_notify_timeout,
        Opt_last_int,
        /* int args above */
        Opt_last_string,
@@ -355,7 +352,6 @@ enum {
 };
 
 static match_table_t rbdopt_tokens = {
-       {Opt_notify_timeout, "notify_timeout=%d"},
        /* int args above */
        /* string args above */
        {Opt_read_only, "read_only"},
@@ -394,9 +390,6 @@ static int parse_rbd_opts_token(char *c, void *private)
        }
 
        switch (token) {
-       case Opt_notify_timeout:
-               rbdopt->notify_timeout = intval;
-               break;
        case Opt_read_only:
                rbdopt->read_only = true;
                break;
@@ -425,7 +418,6 @@ static struct rbd_client *rbd_get_client(const char *mon_addr,
        if (!rbd_opts)
                return ERR_PTR(-ENOMEM);
 
-       rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
        rbd_opts->read_only = RBD_READ_ONLY_DEFAULT;
 
        opt = ceph_parse_options(options, mon_addr,