2 * Persistent reservation manager - stub for non-Linux platforms
4 * Copyright (c) 2018 Red Hat, Inc.
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
8 * This code is licensed under the LGPL.
12 #include "qemu/osdep.h"
13 #include "qapi/error.h"
14 #include "scsi/pr-manager.h"
16 #include "qapi/qapi-types-block.h"
17 #include "qapi/qapi-commands-block.h"
19 PRManager
*pr_manager_lookup(const char *id
, Error
**errp
)
21 /* The classes do not exist at all! */
22 error_setg(errp
, "No persistent reservation manager with id '%s'", id
);
27 PRManagerInfoList
*qmp_query_pr_managers(Error
**errp
)