mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
nbd: Rename struct nbd_request and nbd_reply
Our coding convention prefers CamelCase names, and we already have other existing structs with NBDFoo naming. Let's be consistent, before later patches add even more structs. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1476469998-28592-6-git-send-email-eblake@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
10676b81a9
commit
ed2dd91267
5 changed files with 29 additions and 27 deletions
12
nbd/server.c
12
nbd/server.c
|
@ -635,7 +635,7 @@ fail:
|
|||
return rc;
|
||||
}
|
||||
|
||||
static ssize_t nbd_receive_request(QIOChannel *ioc, struct nbd_request *request)
|
||||
static ssize_t nbd_receive_request(QIOChannel *ioc, NBDRequest *request)
|
||||
{
|
||||
uint8_t buf[NBD_REQUEST_SIZE];
|
||||
uint32_t magic;
|
||||
|
@ -678,7 +678,7 @@ static ssize_t nbd_receive_request(QIOChannel *ioc, struct nbd_request *request)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static ssize_t nbd_send_reply(QIOChannel *ioc, struct nbd_reply *reply)
|
||||
static ssize_t nbd_send_reply(QIOChannel *ioc, NBDReply *reply)
|
||||
{
|
||||
uint8_t buf[NBD_REPLY_SIZE];
|
||||
ssize_t ret;
|
||||
|
@ -976,7 +976,7 @@ void nbd_export_close_all(void)
|
|||
}
|
||||
}
|
||||
|
||||
static ssize_t nbd_co_send_reply(NBDRequestData *req, struct nbd_reply *reply,
|
||||
static ssize_t nbd_co_send_reply(NBDRequestData *req, NBDReply *reply,
|
||||
int len)
|
||||
{
|
||||
NBDClient *client = req->client;
|
||||
|
@ -1013,7 +1013,7 @@ static ssize_t nbd_co_send_reply(NBDRequestData *req, struct nbd_reply *reply,
|
|||
* (although the caller may still need to disconnect after reporting
|
||||
* the error). */
|
||||
static ssize_t nbd_co_receive_request(NBDRequestData *req,
|
||||
struct nbd_request *request)
|
||||
NBDRequest *request)
|
||||
{
|
||||
NBDClient *client = req->client;
|
||||
ssize_t rc;
|
||||
|
@ -1107,8 +1107,8 @@ static void nbd_trip(void *opaque)
|
|||
NBDClient *client = opaque;
|
||||
NBDExport *exp = client->exp;
|
||||
NBDRequestData *req;
|
||||
struct nbd_request request;
|
||||
struct nbd_reply reply;
|
||||
NBDRequest request;
|
||||
NBDReply reply;
|
||||
ssize_t ret;
|
||||
int flags;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue