Revision 299256b9413aa5ccd41769de6dbfa1421807c99b authored by Alexander Graf on 30 October 2018, 09:37:15 UTC, committed by Cornelia Huck on 05 November 2018, 08:55:01 UTC
I haven't realistically maintained s390 related parts for quite a while
now, so let's remove my name from the MAINTAINERS file to reflect reality.

Signed-off-by: Alexander Graf <agraf@suse.de>
Message-Id: <20181030093715.18793-1-agraf@suse.de>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
1 parent d5bfb42
Raw File
pr-manager-stub.c
/*
 * Persistent reservation manager - stub for non-Linux platforms
 *
 * Copyright (c) 2018 Red Hat, Inc.
 *
 * Author: Paolo Bonzini <pbonzini@redhat.com>
 *
 * This code is licensed under the LGPL.
 *
 */

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "scsi/pr-manager.h"
#include "trace.h"
#include "qapi/qapi-types-block.h"
#include "qapi/qapi-commands-block.h"

PRManager *pr_manager_lookup(const char *id, Error **errp)
{
    /* The classes do not exist at all!  */
    error_setg(errp, "No persistent reservation manager with id '%s'", id);
        return NULL;
}


PRManagerInfoList *qmp_query_pr_managers(Error **errp)
{
    return NULL;
}
back to top