mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-08 21:14:14 +00:00
Use an internal buffer in _usb_transfer_read in case the read is larger than the buffer passed to it.
This commit is contained in:
parent
69a2078e5d
commit
33ae5ab8b9
@ -2812,6 +2812,7 @@ int _usb_transfer_read(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bRe
|
|||||||
#if DO_USB_STATS
|
#if DO_USB_STATS
|
||||||
struct timeval tv_start, tv_finish;
|
struct timeval tv_start, tv_finish;
|
||||||
#endif
|
#endif
|
||||||
|
unsigned char tbuf[64];
|
||||||
int err, pstate;
|
int err, pstate;
|
||||||
|
|
||||||
DEVLOCK(cgpu, pstate);
|
DEVLOCK(cgpu, pstate);
|
||||||
@ -2846,14 +2847,16 @@ int _usb_transfer_read(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bRe
|
|||||||
cgpu->usbinfo.total_read_delay += sleep_estimate;
|
cgpu->usbinfo.total_read_delay += sleep_estimate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
memset(tbuf, 0, 64);
|
||||||
STATS_TIMEVAL(&tv_start);
|
STATS_TIMEVAL(&tv_start);
|
||||||
cg_rlock(&cgusb_fd_lock);
|
cg_rlock(&cgusb_fd_lock);
|
||||||
err = libusb_control_transfer(usbdev->handle, request_type,
|
err = libusb_control_transfer(usbdev->handle, request_type,
|
||||||
bRequest, wValue, wIndex,
|
bRequest, wValue, wIndex,
|
||||||
(unsigned char *)buf, (uint16_t)bufsiz, timeout);
|
tbuf, (uint16_t)bufsiz, timeout);
|
||||||
cg_runlock(&cgusb_fd_lock);
|
cg_runlock(&cgusb_fd_lock);
|
||||||
STATS_TIMEVAL(&tv_finish);
|
STATS_TIMEVAL(&tv_finish);
|
||||||
USB_STATS(cgpu, &tv_start, &tv_finish, err, MODE_CTRL_READ, cmd, SEQ0, timeout);
|
USB_STATS(cgpu, &tv_start, &tv_finish, err, MODE_CTRL_READ, cmd, SEQ0, timeout);
|
||||||
|
memcpy(buf, tbuf, bufsiz);
|
||||||
|
|
||||||
USBDEBUG("USB debug: @_usb_transfer_read(%s (nodev=%s)) amt/err=%d%s%s%s", cgpu->drv->name, bool_str(cgpu->usbinfo.nodev), err, isnodev(err), err > 0 ? " = " : BLANK, err > 0 ? bin2hex((unsigned char *)buf, (size_t)err) : BLANK);
|
USBDEBUG("USB debug: @_usb_transfer_read(%s (nodev=%s)) amt/err=%d%s%s%s", cgpu->drv->name, bool_str(cgpu->usbinfo.nodev), err, isnodev(err), err > 0 ? " = " : BLANK, err > 0 ? bin2hex((unsigned char *)buf, (size_t)err) : BLANK);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user