Lines Matching refs:opt1
134 struct ceph_options *opt1 = new_opt;
147 ret = memcmp(opt1, opt2, ofs);
151 ret = strcmp_null(opt1->name, opt2->name);
155 if (opt1->key && !opt2->key)
157 if (!opt1->key && opt2->key)
159 if (opt1->key && opt2->key) {
160 if (opt1->key->type != opt2->key->type)
162 if (opt1->key->created.tv_sec != opt2->key->created.tv_sec)
164 if (opt1->key->created.tv_nsec != opt2->key->created.tv_nsec)
166 if (opt1->key->len != opt2->key->len)
168 if (opt1->key->key && !opt2->key->key)
170 if (!opt1->key->key && opt2->key->key)
172 if (opt1->key->key && opt2->key->key) {
173 ret = memcmp(opt1->key->key, opt2->key->key, opt1->key->len);
179 ret = ceph_compare_crush_locs(&opt1->crush_locs, &opt2->crush_locs);
184 for (i = 0; i < opt1->num_mon; i++) {
186 &opt1->mon_addr[i]))