mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 20:19:44 +00:00
virtio-blk: make some functions static
Some functions that were called from the dataplane code are now only used locally: virtio_blk_init_request() virtio_blk_handle_request() virtio_blk_submit_multireq() since commit "03de2f527499 virtio-blk: do not use vring in dataplane", and virtio_blk_free_request() since commit "6aa46d8ff1ee virtio: move VirtQueueElement at the beginning of the structs". This patch converts them to static. Signed-off-by: Greg Kurz <groug@kaod.org> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
e8582891cb
commit
d14dde5ec7
@ -29,8 +29,8 @@
|
|||||||
#include "hw/virtio/virtio-bus.h"
|
#include "hw/virtio/virtio-bus.h"
|
||||||
#include "hw/virtio/virtio-access.h"
|
#include "hw/virtio/virtio-access.h"
|
||||||
|
|
||||||
void virtio_blk_init_request(VirtIOBlock *s, VirtQueue *vq,
|
static void virtio_blk_init_request(VirtIOBlock *s, VirtQueue *vq,
|
||||||
VirtIOBlockReq *req)
|
VirtIOBlockReq *req)
|
||||||
{
|
{
|
||||||
req->dev = s;
|
req->dev = s;
|
||||||
req->vq = vq;
|
req->vq = vq;
|
||||||
@ -40,7 +40,7 @@ void virtio_blk_init_request(VirtIOBlock *s, VirtQueue *vq,
|
|||||||
req->mr_next = NULL;
|
req->mr_next = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void virtio_blk_free_request(VirtIOBlockReq *req)
|
static void virtio_blk_free_request(VirtIOBlockReq *req)
|
||||||
{
|
{
|
||||||
if (req) {
|
if (req) {
|
||||||
g_free(req);
|
g_free(req);
|
||||||
@ -381,7 +381,7 @@ static int multireq_compare(const void *a, const void *b)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void virtio_blk_submit_multireq(BlockBackend *blk, MultiReqBuffer *mrb)
|
static void virtio_blk_submit_multireq(BlockBackend *blk, MultiReqBuffer *mrb)
|
||||||
{
|
{
|
||||||
int i = 0, start = 0, num_reqs = 0, niov = 0, nb_sectors = 0;
|
int i = 0, start = 0, num_reqs = 0, niov = 0, nb_sectors = 0;
|
||||||
uint32_t max_transfer;
|
uint32_t max_transfer;
|
||||||
@ -468,7 +468,7 @@ static bool virtio_blk_sect_range_ok(VirtIOBlock *dev,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
|
static void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
|
||||||
{
|
{
|
||||||
uint32_t type;
|
uint32_t type;
|
||||||
struct iovec *in_iov = req->elem.in_sg;
|
struct iovec *in_iov = req->elem.in_sg;
|
||||||
|
@ -80,14 +80,6 @@ typedef struct MultiReqBuffer {
|
|||||||
bool is_write;
|
bool is_write;
|
||||||
} MultiReqBuffer;
|
} MultiReqBuffer;
|
||||||
|
|
||||||
void virtio_blk_init_request(VirtIOBlock *s, VirtQueue *vq,
|
|
||||||
VirtIOBlockReq *req);
|
|
||||||
void virtio_blk_free_request(VirtIOBlockReq *req);
|
|
||||||
|
|
||||||
void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb);
|
|
||||||
|
|
||||||
void virtio_blk_submit_multireq(BlockBackend *blk, MultiReqBuffer *mrb);
|
|
||||||
|
|
||||||
void virtio_blk_handle_vq(VirtIOBlock *s, VirtQueue *vq);
|
void virtio_blk_handle_vq(VirtIOBlock *s, VirtQueue *vq);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user