#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
 
 /*
 };
 
 struct rbd_options {
-       int     notify_timeout;
        bool    read_only;
 };
 
  * mount options
  */
 enum {
-       Opt_notify_timeout,
        Opt_last_int,
        /* int args above */
        Opt_last_string,
 };
 
 static match_table_t rbd_opts_tokens = {
-       {Opt_notify_timeout, "notify_timeout=%d"},
        /* int args above */
        /* string args above */
        {Opt_read_only, "read_only"},
        }
 
        switch (token) {
-       case Opt_notify_timeout:
-               rbd_opts->notify_timeout = intval;
-               break;
        case Opt_read_only:
                rbd_opts->read_only = true;
                break;
        struct ceph_options *ceph_opts;
        struct rbd_client *rbdc;
 
-       rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
        rbd_opts->read_only = RBD_READ_ONLY_DEFAULT;
 
        ceph_opts = ceph_parse_options(options, mon_addr,