diff --git a/hypervisor/debug/sbuf.c b/hypervisor/debug/sbuf.c index 486248dd7..e5cbb1e3f 100644 --- a/hypervisor/debug/sbuf.c +++ b/hypervisor/debug/sbuf.c @@ -186,5 +186,8 @@ int sbuf_share_setup(uint32_t pcpu_id, uint32_t sbuf_id, uint64_t *hva) return -EINVAL; per_cpu(sbuf, pcpu_id)[sbuf_id] = hva; + pr_info("%s share sbuf for pCPU[%u] with sbuf_id[%u] setup successfully", + __func__, pcpu_id, sbuf_id); + return 0; }