Lines Matching defs:clabel
199 RF_ComponentLabel_t *clabel;
206 clabel = RF_Malloc(sizeof(*clabel));
207 if (clabel == NULL)
209 retcode = copyin(*clabel_ptr, clabel, sizeof(*clabel));
211 RF_Free(clabel, sizeof(*clabel));
215 rf_get_component_label(raidPtr, clabel);
217 if (clabel->version == bswap32(RF_COMPONENT_LABEL_VERSION))
218 clabel->version = RF_COMPONENT_LABEL_VERSION;
220 retcode = copyout(clabel, *clabel_ptr, sizeof(**clabel_ptr));
221 RF_Free(clabel, sizeof(*clabel));