Lines Matching refs:dm_target_spec
1266 struct dm_target_spec *spec; in retrieve_status()
1288 if (remaining <= sizeof(struct dm_target_spec)) { in retrieve_status()
1293 spec = (struct dm_target_spec *) outptr; in retrieve_status()
1301 outptr += sizeof(struct dm_target_spec); in retrieve_status()
1398 static int next_target(struct dm_target_spec *last, uint32_t next, const char *end, in next_target()
1399 struct dm_target_spec **spec, char **target_params) in next_target()
1401 static_assert(__alignof__(struct dm_target_spec) <= 8, in next_target()
1415 if (remaining - sizeof(struct dm_target_spec) <= next) { in next_target()
1420 if (next % __alignof__(struct dm_target_spec)) { in next_target()
1422 next, __alignof__(struct dm_target_spec)); in next_target()
1426 *spec = (struct dm_target_spec *) ((unsigned char *) last + next); in next_target()
1437 struct dm_target_spec *spec = (struct dm_target_spec *) param; in populate_table()
2249 struct dm_target_spec **spec_array, in dm_early_create()