[Backport 1.14] Save fifos - #5707
Merged
ShadowCurse merged 3 commits intoFeb 24, 2026
Merged
Conversation
ShadowCurse
requested review from
kalyazin,
pb8o and
xmarcalx
as code owners
February 20, 2026 15:35
ilstam
added a commit
to ilstam/firecracker
that referenced
this pull request
Feb 20, 2026
…ecracker-microvm#5707 Update v1.15.0 CHANGELOG mentioning the fix for firecracker-microvm#5707: firecracker-microvm#5705 Signed-off-by: Ilias Stamatis <ilstam@amazon.com>
ilstam
added a commit
to ilstam/firecracker
that referenced
this pull request
Feb 20, 2026
Update v1.15.0 CHANGELOG mentioning the fix for firecracker-microvm#5707: firecracker-microvm#5705 Signed-off-by: Ilias Stamatis <ilstam@amazon.com>
ilstam
added a commit
to ilstam/firecracker
that referenced
this pull request
Feb 20, 2026
Update v1.15.0 CHANGELOG mentioning the fix for firecracker-microvm#5707: firecracker-microvm#5705 Signed-off-by: Ilias Stamatis <ilstam@amazon.com>
ilstam
added a commit
to ilstam/firecracker
that referenced
this pull request
Feb 20, 2026
Update v1.15.0 CHANGELOG mentioning the fix for firecracker-microvm#5707: firecracker-microvm#5705 Signed-off-by: Ilias Stamatis <ilstam@amazon.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## firecracker-v1.14 #5707 +/- ##
==================================================
Coverage 83.37% 83.37%
==================================================
Files 277 277
Lines 29277 29278 +1
==================================================
+ Hits 24410 24411 +1
Misses 4867 4867
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
zulinx86
requested changes
Feb 23, 2026
ShadowCurse
force-pushed
the
save_fifos_1_14
branch
from
February 23, 2026 17:46
de49e71 to
93b6f5e
Compare
The commit 7ee43cc ("fix: Support creating file with open_file_nonblock") did modify the file opening utility function by adding `open` option, but it also removed the `read` option from it. This causes an error during metrics and logs file initialization code if the the file is a FIFO and there are no readers already reading from it. This is because `open` returns `ENXIO` when opening a FIFO write-only as described in the man page: ``` ENXIO O_NONBLOCK | O_WRONLY is set, the named file is a FIFO, and no process has the FIFO open for reading. ``` Fix is just a partial revert of the part that changed the file opening logic by re-introducing same `open_file_nonblock` as it was before but with added `create` flag. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
No functional change. Just cleanup. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
Add note about fix in the firecracker-microvm#5698 PR. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
ShadowCurse
force-pushed
the
save_fifos_1_14
branch
from
February 23, 2026 17:47
93b6f5e to
4f86587
Compare
zulinx86
approved these changes
Feb 23, 2026
Contributor
|
kani timed out, retrying |
Manciukic
approved these changes
Feb 24, 2026
ShadowCurse
merged commit Feb 24, 2026
3a12ebf
into
firecracker-microvm:firecracker-v1.14
6 of 7 checks passed
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.
Changes
Backport of #5698
Reason
Fix
License Acceptance
By submitting this pull request, I confirm that my contribution is made under
the terms of the Apache 2.0 license. For more information on following Developer
Certificate of Origin and signing off your commits, please check
CONTRIBUTING.md.PR Checklist
tools/devtool checkbuild --allto verify that the PR passesbuild checks on all supported architectures.
tools/devtool checkstyleto verify that the PR passes theautomated style checks.
how they are solving the problem in a clear and encompassing way.
in the PR.
CHANGELOG.md.Runbook for Firecracker API changes.
integration tests.
TODO.rust-vmm.