ceph: fix cap_wanted_delay_{min,max} mount option initialization

These were initialized to 0 instead of the default, fallout from the RBD
refactor in 3d14c5d2b6e15c21d8e5467dc62d33127c23a644.

Signed-off-by: Sage Weil <sage@newdream.net>

Sage Weil 50aac4fe 17db143f

+2
+2
fs/ceph/super.c
··· 290 290 291 291 fsopt->rsize = CEPH_MOUNT_RSIZE_DEFAULT; 292 292 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL); 293 + fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT; 294 + fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT; 293 295 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT; 294 296 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT; 295 297 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;