libhsakmt: check ret and errno for EBADF
Change-Id: I9fcbf955d8b7b01ff1025534a8c2eaa8e6790565
Signed-off-by: Srinivasan Subramanian <srinivasan.subramanian@amd.com>
[ROCm/ROCR-Runtime commit: 5e35364838]
This commit is contained in:
committed by
Srinivasan Subramanian
parent
bbb15f8992
commit
08ae75cfca
@@ -13,7 +13,7 @@ int kmtIoctl(int fd, unsigned long request, void *arg)
|
||||
ret = ioctl(fd, request, arg);
|
||||
} while (ret == -1 && (errno == EINTR || errno == EAGAIN));
|
||||
|
||||
if (errno == EBADF) {
|
||||
if (ret == -1 && errno == EBADF) {
|
||||
/* In case pthread_atfork didn't catch it, this will
|
||||
* make any subsequent hsaKmt calls fail in CHECK_KFD_OPEN.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user