fix(network_linux): fix umount failure#1015
Merged
luomingmeng merged 1 commit intokubewharf:mainfrom Nov 10, 2025
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1015 +/- ##
==========================================
- Coverage 59.72% 59.70% -0.03%
==========================================
Files 682 682
Lines 64009 64021 +12
==========================================
- Hits 38231 38221 -10
- Misses 21376 21396 +20
- Partials 4402 4404 +2
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:
|
46ea6e9 to
ba30ee3
Compare
JulyWindK
reviewed
Nov 10, 2025
8ec0d16 to
ef96c3c
Compare
JulyWindK
previously approved these changes
Nov 10, 2025
xu282934741
reviewed
Nov 10, 2025
6afb75b to
ba2bb6c
Compare
unmount failed in the network namespace (netns) because the netns temporary mount directory is /tmp/net_ns_sysfs, and tce_agent occasionally traverses the /tmp directory. Signed-off-by: 张浩宇 <zhanghaoyu.zhy@bytedance.com>
ba2bb6c to
5ca1277
Compare
xu282934741
previously approved these changes
Nov 10, 2025
72d722a to
5ca1277
Compare
luomingmeng
approved these changes
Nov 10, 2025
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.
unmount failed in the network namespace (netns) because the netns temporary mount directory is /tmp/net_ns_sysfs, and tce_agent occasionally traverses the /tmp directory.
What type of PR is this?
Bug fixes
Which issue(s) this PR fixes:
unmount failed in the network namespace (netns) because the netns
temporary mount directory is /tmp/net_ns_sysfs, and tce_agent
occasionally traverses the /tmp directory.
So we mount sysfs to a special dir(/qrm_tmp_sys/net_ns_sysfs) instead of /tmp/net_ns_sysfs, and retried 3 times after umount failed.