mirror of https://github.com/xemu-project/xemu.git
vdpa: use vdpa shared for tracing
By the end of this series dma_map and dma_unmap functions don't have the vdpa device for tracing. Movinge trace function to shared member one. Print it also in the vdpa initialization so log reader can relate them. Signed-off-by: Eugenio Pérez <eperezma@redhat.com> Acked-by: Jason Wang <jasowang@redhat.com> Message-Id: <20231221174322.3130442-6-eperezma@redhat.com> Tested-by: Lei Yang <leiyang@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
a6e823d40e
commit
e36b9992fa
|
@ -30,16 +30,16 @@ vhost_user_write(uint32_t req, uint32_t flags) "req:%d flags:0x%"PRIx32""
|
||||||
vhost_user_create_notifier(int idx, void *n) "idx:%d n:%p"
|
vhost_user_create_notifier(int idx, void *n) "idx:%d n:%p"
|
||||||
|
|
||||||
# vhost-vdpa.c
|
# vhost-vdpa.c
|
||||||
vhost_vdpa_dma_map(void *vdpa, int fd, uint32_t msg_type, uint32_t asid, uint64_t iova, uint64_t size, uint64_t uaddr, uint8_t perm, uint8_t type) "vdpa:%p fd: %d msg_type: %"PRIu32" asid: %"PRIu32" iova: 0x%"PRIx64" size: 0x%"PRIx64" uaddr: 0x%"PRIx64" perm: 0x%"PRIx8" type: %"PRIu8
|
vhost_vdpa_dma_map(void *vdpa, int fd, uint32_t msg_type, uint32_t asid, uint64_t iova, uint64_t size, uint64_t uaddr, uint8_t perm, uint8_t type) "vdpa_shared:%p fd: %d msg_type: %"PRIu32" asid: %"PRIu32" iova: 0x%"PRIx64" size: 0x%"PRIx64" uaddr: 0x%"PRIx64" perm: 0x%"PRIx8" type: %"PRIu8
|
||||||
vhost_vdpa_dma_unmap(void *vdpa, int fd, uint32_t msg_type, uint32_t asid, uint64_t iova, uint64_t size, uint8_t type) "vdpa:%p fd: %d msg_type: %"PRIu32" asid: %"PRIu32" iova: 0x%"PRIx64" size: 0x%"PRIx64" type: %"PRIu8
|
vhost_vdpa_dma_unmap(void *vdpa, int fd, uint32_t msg_type, uint32_t asid, uint64_t iova, uint64_t size, uint8_t type) "vdpa_shared:%p fd: %d msg_type: %"PRIu32" asid: %"PRIu32" iova: 0x%"PRIx64" size: 0x%"PRIx64" type: %"PRIu8
|
||||||
vhost_vdpa_listener_begin_batch(void *v, int fd, uint32_t msg_type, uint8_t type) "vdpa:%p fd: %d msg_type: %"PRIu32" type: %"PRIu8
|
vhost_vdpa_listener_begin_batch(void *v, int fd, uint32_t msg_type, uint8_t type) "vdpa_shared:%p fd: %d msg_type: %"PRIu32" type: %"PRIu8
|
||||||
vhost_vdpa_listener_commit(void *v, int fd, uint32_t msg_type, uint8_t type) "vdpa:%p fd: %d msg_type: %"PRIu32" type: %"PRIu8
|
vhost_vdpa_listener_commit(void *v, int fd, uint32_t msg_type, uint8_t type) "vdpa_shared:%p fd: %d msg_type: %"PRIu32" type: %"PRIu8
|
||||||
vhost_vdpa_listener_region_add_unaligned(void *v, const char *name, uint64_t offset_as, uint64_t offset_page) "vdpa: %p region %s offset_within_address_space %"PRIu64" offset_within_region %"PRIu64
|
vhost_vdpa_listener_region_add_unaligned(void *v, const char *name, uint64_t offset_as, uint64_t offset_page) "vdpa_shared: %p region %s offset_within_address_space %"PRIu64" offset_within_region %"PRIu64
|
||||||
vhost_vdpa_listener_region_add(void *vdpa, uint64_t iova, uint64_t llend, void *vaddr, bool readonly) "vdpa: %p iova 0x%"PRIx64" llend 0x%"PRIx64" vaddr: %p read-only: %d"
|
vhost_vdpa_listener_region_add(void *vdpa, uint64_t iova, uint64_t llend, void *vaddr, bool readonly) "vdpa: %p iova 0x%"PRIx64" llend 0x%"PRIx64" vaddr: %p read-only: %d"
|
||||||
vhost_vdpa_listener_region_del_unaligned(void *v, const char *name, uint64_t offset_as, uint64_t offset_page) "vdpa: %p region %s offset_within_address_space %"PRIu64" offset_within_region %"PRIu64
|
vhost_vdpa_listener_region_del_unaligned(void *v, const char *name, uint64_t offset_as, uint64_t offset_page) "vdpa_shared: %p region %s offset_within_address_space %"PRIu64" offset_within_region %"PRIu64
|
||||||
vhost_vdpa_listener_region_del(void *vdpa, uint64_t iova, uint64_t llend) "vdpa: %p iova 0x%"PRIx64" llend 0x%"PRIx64
|
vhost_vdpa_listener_region_del(void *vdpa, uint64_t iova, uint64_t llend) "vdpa: %p iova 0x%"PRIx64" llend 0x%"PRIx64
|
||||||
vhost_vdpa_add_status(void *dev, uint8_t status) "dev: %p status: 0x%"PRIx8
|
vhost_vdpa_add_status(void *dev, uint8_t status) "dev: %p status: 0x%"PRIx8
|
||||||
vhost_vdpa_init(void *dev, void *vdpa) "dev: %p vdpa: %p"
|
vhost_vdpa_init(void *dev, void *s, void *vdpa) "dev: %p, common dev: %p vdpa: %p"
|
||||||
vhost_vdpa_cleanup(void *dev, void *vdpa) "dev: %p vdpa: %p"
|
vhost_vdpa_cleanup(void *dev, void *vdpa) "dev: %p vdpa: %p"
|
||||||
vhost_vdpa_memslots_limit(void *dev, int ret) "dev: %p = 0x%x"
|
vhost_vdpa_memslots_limit(void *dev, int ret) "dev: %p = 0x%x"
|
||||||
vhost_vdpa_set_mem_table(void *dev, uint32_t nregions, uint32_t padding) "dev: %p nregions: %"PRIu32" padding: 0x%"PRIx32
|
vhost_vdpa_set_mem_table(void *dev, uint32_t nregions, uint32_t padding) "dev: %p nregions: %"PRIu32" padding: 0x%"PRIx32
|
||||||
|
|
|
@ -101,7 +101,7 @@ int vhost_vdpa_dma_map(struct vhost_vdpa *v, uint32_t asid, hwaddr iova,
|
||||||
msg.iotlb.perm = readonly ? VHOST_ACCESS_RO : VHOST_ACCESS_RW;
|
msg.iotlb.perm = readonly ? VHOST_ACCESS_RO : VHOST_ACCESS_RW;
|
||||||
msg.iotlb.type = VHOST_IOTLB_UPDATE;
|
msg.iotlb.type = VHOST_IOTLB_UPDATE;
|
||||||
|
|
||||||
trace_vhost_vdpa_dma_map(v, fd, msg.type, msg.asid, msg.iotlb.iova,
|
trace_vhost_vdpa_dma_map(v->shared, fd, msg.type, msg.asid, msg.iotlb.iova,
|
||||||
msg.iotlb.size, msg.iotlb.uaddr, msg.iotlb.perm,
|
msg.iotlb.size, msg.iotlb.uaddr, msg.iotlb.perm,
|
||||||
msg.iotlb.type);
|
msg.iotlb.type);
|
||||||
|
|
||||||
|
@ -131,8 +131,8 @@ int vhost_vdpa_dma_unmap(struct vhost_vdpa *v, uint32_t asid, hwaddr iova,
|
||||||
msg.iotlb.size = size;
|
msg.iotlb.size = size;
|
||||||
msg.iotlb.type = VHOST_IOTLB_INVALIDATE;
|
msg.iotlb.type = VHOST_IOTLB_INVALIDATE;
|
||||||
|
|
||||||
trace_vhost_vdpa_dma_unmap(v, fd, msg.type, msg.asid, msg.iotlb.iova,
|
trace_vhost_vdpa_dma_unmap(v->shared, fd, msg.type, msg.asid,
|
||||||
msg.iotlb.size, msg.iotlb.type);
|
msg.iotlb.iova, msg.iotlb.size, msg.iotlb.type);
|
||||||
|
|
||||||
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
||||||
error_report("failed to write, fd=%d, errno=%d (%s)",
|
error_report("failed to write, fd=%d, errno=%d (%s)",
|
||||||
|
@ -151,7 +151,8 @@ static void vhost_vdpa_listener_begin_batch(struct vhost_vdpa *v)
|
||||||
.iotlb.type = VHOST_IOTLB_BATCH_BEGIN,
|
.iotlb.type = VHOST_IOTLB_BATCH_BEGIN,
|
||||||
};
|
};
|
||||||
|
|
||||||
trace_vhost_vdpa_listener_begin_batch(v, fd, msg.type, msg.iotlb.type);
|
trace_vhost_vdpa_listener_begin_batch(v->shared, fd, msg.type,
|
||||||
|
msg.iotlb.type);
|
||||||
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
||||||
error_report("failed to write, fd=%d, errno=%d (%s)",
|
error_report("failed to write, fd=%d, errno=%d (%s)",
|
||||||
fd, errno, strerror(errno));
|
fd, errno, strerror(errno));
|
||||||
|
@ -186,7 +187,7 @@ static void vhost_vdpa_listener_commit(MemoryListener *listener)
|
||||||
msg.type = v->msg_type;
|
msg.type = v->msg_type;
|
||||||
msg.iotlb.type = VHOST_IOTLB_BATCH_END;
|
msg.iotlb.type = VHOST_IOTLB_BATCH_END;
|
||||||
|
|
||||||
trace_vhost_vdpa_listener_commit(v, fd, msg.type, msg.iotlb.type);
|
trace_vhost_vdpa_listener_commit(v->shared, fd, msg.type, msg.iotlb.type);
|
||||||
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
if (write(fd, &msg, sizeof(msg)) != sizeof(msg)) {
|
||||||
error_report("failed to write, fd=%d, errno=%d (%s)",
|
error_report("failed to write, fd=%d, errno=%d (%s)",
|
||||||
fd, errno, strerror(errno));
|
fd, errno, strerror(errno));
|
||||||
|
@ -329,7 +330,8 @@ static void vhost_vdpa_listener_region_add(MemoryListener *listener,
|
||||||
|
|
||||||
if (unlikely((section->offset_within_address_space & ~page_mask) !=
|
if (unlikely((section->offset_within_address_space & ~page_mask) !=
|
||||||
(section->offset_within_region & ~page_mask))) {
|
(section->offset_within_region & ~page_mask))) {
|
||||||
trace_vhost_vdpa_listener_region_add_unaligned(v, section->mr->name,
|
trace_vhost_vdpa_listener_region_add_unaligned(v->shared,
|
||||||
|
section->mr->name,
|
||||||
section->offset_within_address_space & ~page_mask,
|
section->offset_within_address_space & ~page_mask,
|
||||||
section->offset_within_region & ~page_mask);
|
section->offset_within_region & ~page_mask);
|
||||||
return;
|
return;
|
||||||
|
@ -349,7 +351,7 @@ static void vhost_vdpa_listener_region_add(MemoryListener *listener,
|
||||||
section->offset_within_region +
|
section->offset_within_region +
|
||||||
(iova - section->offset_within_address_space);
|
(iova - section->offset_within_address_space);
|
||||||
|
|
||||||
trace_vhost_vdpa_listener_region_add(v, iova, int128_get64(llend),
|
trace_vhost_vdpa_listener_region_add(v->shared, iova, int128_get64(llend),
|
||||||
vaddr, section->readonly);
|
vaddr, section->readonly);
|
||||||
|
|
||||||
llsize = int128_sub(llend, int128_make64(iova));
|
llsize = int128_sub(llend, int128_make64(iova));
|
||||||
|
@ -417,7 +419,8 @@ static void vhost_vdpa_listener_region_del(MemoryListener *listener,
|
||||||
|
|
||||||
if (unlikely((section->offset_within_address_space & ~page_mask) !=
|
if (unlikely((section->offset_within_address_space & ~page_mask) !=
|
||||||
(section->offset_within_region & ~page_mask))) {
|
(section->offset_within_region & ~page_mask))) {
|
||||||
trace_vhost_vdpa_listener_region_del_unaligned(v, section->mr->name,
|
trace_vhost_vdpa_listener_region_del_unaligned(v->shared,
|
||||||
|
section->mr->name,
|
||||||
section->offset_within_address_space & ~page_mask,
|
section->offset_within_address_space & ~page_mask,
|
||||||
section->offset_within_region & ~page_mask);
|
section->offset_within_region & ~page_mask);
|
||||||
return;
|
return;
|
||||||
|
@ -426,7 +429,7 @@ static void vhost_vdpa_listener_region_del(MemoryListener *listener,
|
||||||
iova = ROUND_UP(section->offset_within_address_space, page_size);
|
iova = ROUND_UP(section->offset_within_address_space, page_size);
|
||||||
llend = vhost_vdpa_section_end(section, page_mask);
|
llend = vhost_vdpa_section_end(section, page_mask);
|
||||||
|
|
||||||
trace_vhost_vdpa_listener_region_del(v, iova,
|
trace_vhost_vdpa_listener_region_del(v->shared, iova,
|
||||||
int128_get64(int128_sub(llend, int128_one())));
|
int128_get64(int128_sub(llend, int128_one())));
|
||||||
|
|
||||||
if (int128_ge(int128_make64(iova), llend)) {
|
if (int128_ge(int128_make64(iova), llend)) {
|
||||||
|
@ -587,12 +590,11 @@ static void vhost_vdpa_init_svq(struct vhost_dev *hdev, struct vhost_vdpa *v)
|
||||||
|
|
||||||
static int vhost_vdpa_init(struct vhost_dev *dev, void *opaque, Error **errp)
|
static int vhost_vdpa_init(struct vhost_dev *dev, void *opaque, Error **errp)
|
||||||
{
|
{
|
||||||
struct vhost_vdpa *v;
|
struct vhost_vdpa *v = opaque;
|
||||||
assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_VDPA);
|
assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_VDPA);
|
||||||
trace_vhost_vdpa_init(dev, opaque);
|
trace_vhost_vdpa_init(dev, v->shared, opaque);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
v = opaque;
|
|
||||||
v->dev = dev;
|
v->dev = dev;
|
||||||
dev->opaque = opaque ;
|
dev->opaque = opaque ;
|
||||||
v->listener = vhost_vdpa_memory_listener;
|
v->listener = vhost_vdpa_memory_listener;
|
||||||
|
|
Loading…
Reference in New Issue