vhost: Make local function static
$ make C=1 M=drivers/vhost drivers/vhost/net.c:168:5: warning: symbol 'vhost_net_set_ubuf_info' was not declared. Should it be static? drivers/vhost/net.c:194:6: warning: symbol 'vhost_net_vq_reset' was not declared. Should it be static? drivers/vhost/scsi.c:219:6: warning: symbol 'tcm_vhost_done_inflight' was not declared. Should it be static? Signed-off-by: Asias He <asias@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
6ac1afbf61
commit
0a1febf7ba
2 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ static void vhost_net_clear_ubuf_info(struct vhost_net *n)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int vhost_net_set_ubuf_info(struct vhost_net *n)
|
static int vhost_net_set_ubuf_info(struct vhost_net *n)
|
||||||
{
|
{
|
||||||
bool zcopy;
|
bool zcopy;
|
||||||
int i;
|
int i;
|
||||||
|
@ -189,7 +189,7 @@ err:
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
void vhost_net_vq_reset(struct vhost_net *n)
|
static void vhost_net_vq_reset(struct vhost_net *n)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@ static int iov_num_pages(struct iovec *iov)
|
||||||
((unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
|
((unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
void tcm_vhost_done_inflight(struct kref *kref)
|
static void tcm_vhost_done_inflight(struct kref *kref)
|
||||||
{
|
{
|
||||||
struct vhost_scsi_inflight *inflight;
|
struct vhost_scsi_inflight *inflight;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue