Changeset 5cb1631 in mainline
- Timestamp:
- 2025-04-21T12:50:28Z (4 weeks ago)
- Children:
- fb06476f
- Parents:
- b883aa8
- Location:
- uspace/srv/bd/hr
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/meson.build
rb883aa8 r5cb1631 33 33 'io.c', 34 34 'metadata/foreign/geom/mirror.c', 35 'metadata/foreign/geom/stripe.c', 35 36 'metadata/native.c', 36 37 'raid0.c', -
uspace/srv/bd/hr/superblock.c
rb883aa8 r5cb1631 51 51 52 52 #include "metadata/foreign/geom/g_mirror.h" 53 #include "metadata/foreign/geom/g_stripe.h" 53 54 #include "metadata/native.h" 54 55 55 56 extern hr_superblock_ops_t metadata_native_ops; 56 57 extern hr_superblock_ops_t metadata_gmirror_ops; 58 extern hr_superblock_ops_t metadata_stripe_ops; 57 59 58 60 static hr_superblock_ops_t *hr_superblock_ops_all[] = { 59 61 [HR_METADATA_NATIVE] = &metadata_native_ops, 60 [HR_METADATA_GEOM_MIRROR] = &metadata_gmirror_ops 62 [HR_METADATA_GEOM_MIRROR] = &metadata_gmirror_ops, 63 [HR_METADATA_GEOM_STRIPE] = &metadata_stripe_ops 61 64 }; 62 65
Note:
See TracChangeset
for help on using the changeset viewer.