mount 272 lib/pengine/bundle.c pe__bundle_mount_t *mount = (pe__bundle_mount_t *) iter->data; mount 275 lib/pengine/bundle.c if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) { mount 276 lib/pengine/bundle.c source = crm_strdup_printf("%s/%s-%d", mount->source, data->prefix, mount 285 lib/pengine/bundle.c " -v ", pcmk__s(source, mount->source), mount 286 lib/pengine/bundle.c ":", mount->target, NULL); mount 288 lib/pengine/bundle.c if (mount->options != NULL) { mount 289 lib/pengine/bundle.c pcmk__g_strcat(buffer, ":", mount->options, NULL); mount 297 lib/pengine/bundle.c volid, pcmk__s(source, mount->source), mount 298 lib/pengine/bundle.c (mount->options != NULL)? "," : "", mount 299 lib/pengine/bundle.c pcmk__s(mount->options, ""), mount 300 lib/pengine/bundle.c volid, mount->target); mount 635 lib/pengine/bundle.c pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t)); mount 637 lib/pengine/bundle.c CRM_ASSERT(mount != NULL); mount 638 lib/pengine/bundle.c mount->source = strdup(source); mount 639 lib/pengine/bundle.c mount->target = strdup(target); mount 640 lib/pengine/bundle.c pcmk__str_update(&mount->options, options); mount 641 lib/pengine/bundle.c mount->flags = flags; mount 642 lib/pengine/bundle.c bundle_data->mounts = g_list_append(bundle_data->mounts, mount); mount 646 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount) mount 648 lib/pengine/bundle.c free(mount->source); mount 649 lib/pengine/bundle.c free(mount->target); mount 650 lib/pengine/bundle.c free(mount->options); mount 651 lib/pengine/bundle.c free(mount);