Recent changes (master)
Jens Axboe <[email protected]>
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit 96afc2337db197a59fae916b5ff4226af8b0108f:
t/zbd: add test for the case all write zones have small remainder (2025-04-14 08:27:31 -0600)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to 19d9ef1e091a78ad651703d19c07886cb5dfd302:
Merge branch 'master' of https://github.com/blah325/fio (2025-04-15 19:02:20 -0600)
----------------------------------------------------------------
Jens Axboe (1):
Merge branch 'master' of https://github.com/blah325/fio
jrizzo (1):
Fix hang on Windows when multiple --client args are present
os/windows/posix.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
---
Diff of recent changes:
diff --git a/os/windows/posix.c b/os/windows/posix.c
index 2ce18b8b..e3abf383 100644
--- a/os/windows/posix.c
+++ b/os/windows/posix.c
@@ -899,10 +899,9 @@ int poll(struct pollfd fds[], nfds_t nfds, int timeout)
FD_ZERO(&exceptfds);
for (i = 0; i < nfds; i++) {
- if (fds[i].fd == INVALID_SOCKET) {
- fds[i].revents = 0;
+ fds[i].revents = 0;
+ if (fds[i].fd == INVALID_SOCKET)
continue;
- }
if (fds[i].events & POLLIN)
FD_SET(fds[i].fd, &readfds);