]> git.proxmox.com Git - mirror_qemu.git/blame - scsi/pr-manager-stub.c
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging
[mirror_qemu.git] / scsi / pr-manager-stub.c
CommitLineData
58b3017f
PB
1/*
2 * Persistent reservation manager - stub for non-Linux platforms
3 *
4 * Copyright (c) 2018 Red Hat, Inc.
5 *
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
7 *
8 * This code is licensed under the LGPL.
9 *
10 */
11
12#include "qemu/osdep.h"
13#include "qapi/error.h"
14#include "scsi/pr-manager.h"
15#include "trace.h"
16#include "qapi/qapi-types-block.h"
17#include "qapi/qapi-commands-block.h"
18
19PRManager *pr_manager_lookup(const char *id, Error **errp)
20{
21 /* The classes do not exist at all! */
22 error_setg(errp, "No persistent reservation manager with id '%s'", id);
23 return NULL;
24}
5f640894
PB
25
26
27PRManagerInfoList *qmp_query_pr_managers(Error **errp)
28{
29 return NULL;
30}