mount 306 lib/pengine/bundle.c pe__bundle_mount_t *mount = (pe__bundle_mount_t *) iter->data; mount 309 lib/pengine/bundle.c if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) { mount 310 lib/pengine/bundle.c source = crm_strdup_printf("%s/%s-%d", mount->source, data->prefix, mount 319 lib/pengine/bundle.c " -v ", pcmk__s(source, mount->source), mount 320 lib/pengine/bundle.c ":", mount->target, NULL); mount 322 lib/pengine/bundle.c if (mount->options != NULL) { mount 323 lib/pengine/bundle.c pcmk__g_strcat(buffer, ":", mount->options, NULL); mount 331 lib/pengine/bundle.c volid, pcmk__s(source, mount->source), mount 332 lib/pengine/bundle.c (mount->options != NULL)? "," : "", mount 333 lib/pengine/bundle.c pcmk__s(mount->options, ""), mount 334 lib/pengine/bundle.c volid, mount->target); mount 670 lib/pengine/bundle.c pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t)); mount 672 lib/pengine/bundle.c CRM_ASSERT(mount != NULL); mount 673 lib/pengine/bundle.c mount->source = strdup(source); mount 674 lib/pengine/bundle.c mount->target = strdup(target); mount 675 lib/pengine/bundle.c pcmk__str_update(&mount->options, options); mount 676 lib/pengine/bundle.c mount->flags = flags; mount 677 lib/pengine/bundle.c bundle_data->mounts = g_list_append(bundle_data->mounts, mount); mount 681 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount) mount 683 lib/pengine/bundle.c free(mount->source); mount 684 lib/pengine/bundle.c free(mount->target); mount 685 lib/pengine/bundle.c free(mount->options); mount 686 lib/pengine/bundle.c free(mount);