xref: /openbmc/qemu/block/export/vduse-blk.h (revision 40d522490714b65e0856444277db6c14c5cc3796)
1*2a2359b8SXie Yongji /*
2*2a2359b8SXie Yongji  * Export QEMU block device via VDUSE
3*2a2359b8SXie Yongji  *
4*2a2359b8SXie Yongji  * Copyright (C) 2022 Bytedance Inc. and/or its affiliates. All rights reserved.
5*2a2359b8SXie Yongji  *
6*2a2359b8SXie Yongji  * Author:
7*2a2359b8SXie Yongji  *   Xie Yongji <xieyongji@bytedance.com>
8*2a2359b8SXie Yongji  *
9*2a2359b8SXie Yongji  * This work is licensed under the terms of the GNU GPL, version 2 or
10*2a2359b8SXie Yongji  * later.  See the COPYING file in the top-level directory.
11*2a2359b8SXie Yongji  */
12*2a2359b8SXie Yongji 
13*2a2359b8SXie Yongji #ifndef VDUSE_BLK_H
14*2a2359b8SXie Yongji #define VDUSE_BLK_H
15*2a2359b8SXie Yongji 
16*2a2359b8SXie Yongji #include "block/export.h"
17*2a2359b8SXie Yongji 
18*2a2359b8SXie Yongji extern const BlockExportDriver blk_exp_vduse_blk;
19*2a2359b8SXie Yongji 
20*2a2359b8SXie Yongji #endif /* VDUSE_BLK_H */
21