Lines Matching defs:options
830 * (Per device) rbd map options
967 rbdc->client->options->mount_timeout);
997 if (ondisk->options.order < SECTOR_SHIFT)
1002 if (ondisk->options.order > 8 * sizeof (int) - 1)
1132 header->obj_order = ondisk->options.order;
1474 struct ceph_options *opt = rbd_dev->rbd_client->client->options;
6425 * fs_context and skipping standard superblock and security options.
6427 static int rbd_parse_options(char *options, struct rbd_parse_opts_ctx *pctx)
6432 dout("%s '%s'\n", __func__, options);
6433 while ((key = strsep(&options, ",")) != NULL) {
6466 * Parse the options provided for an "rbd add" (i.e., rbd image
6471 * The information extracted from these options is recorded in
6475 * The address of a pointer that will refer to a ceph options
6479 * Address of an rbd options pointer. Fully initialized by
6483 * initialized by this function based on parsed options.
6486 * The options passed take this form:
6487 * <mon_addrs> <options> <pool_name> <image_name> [<snap_id>]
6494 * <options>
6495 * A comma-separated list of ceph and/or rbd options.
6512 char *options;
6531 options = dup_token(&buf, NULL);
6532 if (!options)
6534 if (!*options) {
6535 rbd_warn(NULL, "no options provided");
6581 /* Initialize all rbd options to the defaults */
6599 ret = rbd_parse_options(options, &pctx);
6606 kfree(options);
6615 kfree(options);