Changeset 6a8c1569 in mainline for uspace/srv/bd/hr/metadata/foreign/softraid/hr_softraid.c
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/metadata/foreign/softraid/hr_softraid.c
re0695ce r6a8c1569 64 64 static void meta_softraid_inc_counter(hr_volume_t *); 65 65 static errno_t meta_softraid_save(hr_volume_t *, bool); 66 static errno_t meta_softraid_save_ext(hr_volume_t *, size_t, bool); 66 67 static const char *meta_softraid_get_devname(const void *); 67 68 static hr_level_t meta_softraid_get_level(const void *); … … 84 85 .inc_counter = meta_softraid_inc_counter, 85 86 .save = meta_softraid_save, 87 .save_ext = meta_softraid_save_ext, 86 88 .get_devname = meta_softraid_get_devname, 87 89 .get_level = meta_softraid_get_level, … … 437 439 } 438 440 441 static errno_t meta_softraid_save_ext(hr_volume_t *vol, size_t ext_idx, 442 bool with_state_callback) 443 { 444 HR_DEBUG("%s()", __func__); 445 446 return ENOTSUP; 447 } 448 439 449 static const char *meta_softraid_get_devname(const void *md_v) 440 450 {
Note:
See TracChangeset
for help on using the changeset viewer.
