2020-09-24 23:26:50 +08:00
|
|
|
/*
|
|
|
|
* Declarations for block exports
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012, 2020 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
* Kevin Wolf <kwolf@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLOCK_EXPORT_H
|
|
|
|
#define BLOCK_EXPORT_H
|
|
|
|
|
|
|
|
#include "qapi/qapi-types-block-export.h"
|
|
|
|
|
|
|
|
typedef struct BlockExport BlockExport;
|
|
|
|
|
|
|
|
typedef struct BlockExportDriver {
|
|
|
|
/* The export type that this driver services */
|
|
|
|
BlockExportType type;
|
|
|
|
|
2020-09-24 23:27:02 +08:00
|
|
|
/*
|
|
|
|
* The size of the driver-specific state that contains BlockExport as its
|
|
|
|
* first field.
|
|
|
|
*/
|
|
|
|
size_t instance_size;
|
|
|
|
|
2020-09-24 23:26:50 +08:00
|
|
|
/* Creates and starts a new block export */
|
2020-09-24 23:27:02 +08:00
|
|
|
int (*create)(BlockExport *, BlockExportOptions *, Error **);
|
2020-09-24 23:26:59 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Frees a removed block export. This function is only called after all
|
|
|
|
* references have been dropped.
|
|
|
|
*/
|
|
|
|
void (*delete)(BlockExport *);
|
2020-09-24 23:26:50 +08:00
|
|
|
} BlockExportDriver;
|
|
|
|
|
|
|
|
struct BlockExport {
|
|
|
|
const BlockExportDriver *drv;
|
2020-09-24 23:26:59 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reference count for this block export. This includes strong references
|
|
|
|
* both from the owner (qemu-nbd or the monitor) and clients connected to
|
|
|
|
* the export.
|
|
|
|
*/
|
|
|
|
int refcount;
|
2020-09-24 23:27:00 +08:00
|
|
|
|
|
|
|
/* The AioContext whose lock protects this BlockExport object. */
|
|
|
|
AioContext *ctx;
|
2020-09-24 23:26:50 +08:00
|
|
|
};
|
|
|
|
|
2020-09-24 23:26:53 +08:00
|
|
|
BlockExport *blk_exp_add(BlockExportOptions *export, Error **errp);
|
2020-09-24 23:26:59 +08:00
|
|
|
void blk_exp_ref(BlockExport *exp);
|
|
|
|
void blk_exp_unref(BlockExport *exp);
|
2020-09-24 23:26:53 +08:00
|
|
|
|
2020-09-24 23:26:50 +08:00
|
|
|
#endif
|