vpr
struct vpr *ident;
struct vpr *ident;
if ((newdev->ident = calloc(1, sizeof (struct vpr))) == NULL) {
if ((newdev->ident = calloc(1, sizeof (struct vpr))) == NULL) {
if ((newdev->ident = calloc(1, sizeof (struct vpr))) == NULL) {
if ((flashdev->ident = calloc(1, sizeof (struct vpr))) == NULL) {
varpd_plugin_register_t *vpr;
vpr = libvarpd_plugin_alloc(VARPD_CURRENT_VERSION, &err);
if (vpr == NULL)
vpr->vpr_mode = OVERLAY_TARGET_POINT;
vpr->vpr_name = "direct";
vpr->vpr_ops = &varpd_direct_ops;
(void) libvarpd_plugin_register(vpr);
libvarpd_plugin_free(vpr);
varpd_plugin_register_t *vpr;
vpr = libvarpd_plugin_alloc(VARPD_CURRENT_VERSION, &err);
if (vpr == NULL)
vpr->vpr_mode = OVERLAY_TARGET_DYNAMIC;
vpr->vpr_name = "files";
vpr->vpr_ops = &varpd_files_ops;
(void) libvarpd_plugin_register(vpr);
libvarpd_plugin_free(vpr);
#define VPR_PRIO_BIT(vpr) (1 << ((vpr) >> 4))