io fixes on non-blocking FDs#175
Merged
michalvasko merged 1 commit intoCESNET:masterfrom Oct 16, 2019
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #175 +/- ##
==========================================
- Coverage 38.14% 38.09% -0.06%
==========================================
Files 23 23
Lines 9962 9976 +14
Branches 1949 1952 +3
==========================================
Hits 3800 3800
- Misses 5217 5226 +9
- Partials 945 950 +5
Continue to review full report at Codecov.
|
Contributor
|
@rjarry |
michalvasko
requested changes
Oct 15, 2019
Member
|
Hi, Regards, |
Contributor
Author
When interrupted during a read/write syscall, do not wait before trying again. Only wait if the error was EAGAIN which means that the other side of the socket is not ready. Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
Contributor
Author
Indeed, I removed the first commit. |
michalvasko
approved these changes
Oct 16, 2019
Member
|
Hi, Regards, |
Contributor
Author
|
👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
These are fixes for problems I encountered with the UNIX transport. Basically, when sending large configurations to netopeer2-server, since the socket fd is non-blocking, we can get
EAGAINerrors uponwrite()if the socket buffer is full and the server does not read fast enough.These errors are already handled in libnetconf2 but errno is not reset and libyang checks it (since commit CESNET/libyang@609d708). This causes the operation to fail with the following error:
Work around the problem by resetting
errnoto0in case ofEAGAINorEINTR.Also, if the error is
EINTRdo not wait before trying to read/write again.I am not sure this is the correct approach, I proposed another (maybe complementary?) solution in CESNET/libyang#903