Skip to content

Commit

Permalink
SWPTP-1522: poll error queue not event fds after event send
Browse files Browse the repository at this point in the history
  • Loading branch information
abower-amd committed Sep 25, 2024
1 parent 4e0ebba commit db84f1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ptp/ptpd2/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -3662,7 +3662,7 @@ issueDelayReq(RunTimeOpts *rtOpts, PtpClock *ptpClock)
/* Check error queue immediately before falling back to epoll. */
doHandleSockets(&ptpClock->interface->ifOpts,
ptpClock->interface,
TRUE, FALSE, FALSE);
false, false, true);
}
}

Expand Down Expand Up @@ -3721,7 +3721,7 @@ issuePDelayReq(RunTimeOpts *rtOpts, PtpClock *ptpClock)
/* Check error queue immediately before falling back to epoll. */
doHandleSockets(&ptpClock->interface->ifOpts,
ptpClock->interface,
TRUE, FALSE, FALSE);
false, false, true);
}
}

Expand Down

0 comments on commit db84f1b

Please sign in to comment.