Home
last modified time | relevance | path

Searched refs:oci_mount_data (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/nspawn/
Dnspawn-oci.c526 typedef struct oci_mount_data { struct
531 } oci_mount_data; argument
533 static void cleanup_oci_mount_data(oci_mount_data *data) { in cleanup_oci_mount_data()
549 …{ "destination", JSON_VARIANT_STRING, oci_absolute_path, offsetof(oci_mount_data, destination),… in oci_mounts()
550 …{ "source", JSON_VARIANT_STRING, json_dispatch_string, offsetof(oci_mount_data, source), … in oci_mounts()
551 …{ "options", JSON_VARIANT_ARRAY, json_dispatch_strv, offsetof(oci_mount_data, options), … in oci_mounts()
552 …{ "type", JSON_VARIANT_STRING, json_dispatch_string, offsetof(oci_mount_data, type), … in oci_mounts()
558 _cleanup_(cleanup_oci_mount_data) oci_mount_data data = {}; in oci_mounts()