Commit 1d3c9c07 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Wei Liu

hyper-v: Use UUID API for exporting the GUID

There is export_guid() function which exports guid_t to the u8 array.
Use it instead of open coding variant.

This allows to hide the uuid_t internals.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200422125937.38355-1-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarWei Liu <wei.liu@kernel.org>
parent 421f090c
...@@ -286,8 +286,8 @@ TRACE_EVENT(vmbus_send_tl_connect_request, ...@@ -286,8 +286,8 @@ TRACE_EVENT(vmbus_send_tl_connect_request,
__field(int, ret) __field(int, ret)
), ),
TP_fast_assign( TP_fast_assign(
memcpy(__entry->guest_id, &msg->guest_endpoint_id.b, 16); export_guid(__entry->guest_id, &msg->guest_endpoint_id);
memcpy(__entry->host_id, &msg->host_service_id.b, 16); export_guid(__entry->host_id, &msg->host_service_id);
__entry->ret = ret; __entry->ret = ret;
), ),
TP_printk("sending guest_endpoint_id %pUl, host_service_id %pUl, " TP_printk("sending guest_endpoint_id %pUl, host_service_id %pUl, "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment