Message ID | f9757b1d9649cb739ecf544c7137c0885281f6e8.1474546244.git.riku.voipio@linaro.org |
---|---|
State | Accepted |
Commit | f9757b1d9649cb739ecf544c7137c0885281f6e8 |
Headers | show |
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index efcc17a..e286907 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5001,7 +5001,7 @@ static abi_long do_ioctl_dm(const IOCTLEntry *ie, uint8_t *buf_temp, int fd, guest_data = arg + host_dm->data_start; if ((guest_data - arg) < 0) { - ret = -EINVAL; + ret = -TARGET_EINVAL; goto out; } guest_data_size = host_dm->data_size - host_dm->data_start;