Return linux-friendly error codes from hypercall helper functions,
which allows them to be used more flexibly.
Introduce hv_result_to_errno() for this purpose, which also handles
the special value U64_MAX returned from hv_do_hypercall().
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1740167795-13296-2-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <
1740167795-13296-2-git-send-email-nunodasneves@linux.microsoft.com>
return HV_STATUS_INVALID_PARAMETER;
}
EXPORT_SYMBOL_GPL(hv_tdx_hypercall);
+
+/* Convert a hypercall result into a linux-friendly error code. */
+int hv_result_to_errno(u64 status)
+{
+ /* hv_do_hypercall() may return U64_MAX, hypercalls aren't possible */
+ if (unlikely(status == U64_MAX))
+ return -EOPNOTSUPP;
+ /*
+ * A failed hypercall is usually only recoverable (or loggable) near
+ * the call site where the HV_STATUS_* code is known. So the errno
+ * it gets converted to is not too useful further up the stack.
+ * Provide a few mappings that could be useful, and revert to -EIO
+ * as a fallback.
+ */
+ switch (hv_result(status)) {
+ case HV_STATUS_SUCCESS:
+ return 0;
+ case HV_STATUS_INVALID_HYPERCALL_CODE:
+ case HV_STATUS_INVALID_HYPERCALL_INPUT:
+ case HV_STATUS_INVALID_PARAMETER:
+ case HV_STATUS_INVALID_PARTITION_ID:
+ case HV_STATUS_INVALID_VP_INDEX:
+ case HV_STATUS_INVALID_PORT_ID:
+ case HV_STATUS_INVALID_CONNECTION_ID:
+ case HV_STATUS_INVALID_LP_INDEX:
+ case HV_STATUS_INVALID_REGISTER_VALUE:
+ return -EINVAL;
+ case HV_STATUS_INSUFFICIENT_MEMORY:
+ return -ENOMEM;
+ default:
+ break;
+ }
+ return -EIO;
+}
local_irq_restore(flags);
if (!hv_result_success(status)) {
pr_err("Failed to deposit pages: %lld\n", status);
- ret = hv_result(status);
+ ret = hv_result_to_errno(status);
goto err_free_allocations;
}
struct hv_output_add_logical_processor *output;
u64 status;
unsigned long flags;
- int ret = HV_STATUS_SUCCESS;
+ int ret = 0;
/*
* When adding a logical processor, the hypervisor may return
if (!hv_result_success(status)) {
pr_err("%s: cpu %u apic ID %u, %lld\n", __func__,
lp_index, apic_id, status);
- ret = hv_result(status);
+ ret = hv_result_to_errno(status);
}
break;
}
struct hv_create_vp *input;
u64 status;
unsigned long irq_flags;
- int ret = HV_STATUS_SUCCESS;
+ int ret = 0;
/* Root VPs don't seem to need pages deposited */
if (partition_id != hv_current_partition_id) {
if (!hv_result_success(status)) {
pr_err("%s: vcpu %u, lp %u, %lld\n", __func__,
vp_index, flags, status);
- ret = hv_result(status);
+ ret = hv_result_to_errno(status);
}
break;
}
return __cpumask_to_vpset(vpset, cpus, func);
}
+int hv_result_to_errno(u64 status);
void hyperv_report_panic(struct pt_regs *regs, long err, bool in_die);
bool hv_is_hyperv_initialized(void);
bool hv_is_hibernation_supported(void);