-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[0.2] Backports #4705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[0.2] Backports #4705
Conversation
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
|
This is done in `ctest_cfg` on `libc-0.2` to account for thread local use on Dragonfly. I should have done this in the cherry pick that added the function (the "Fixes" commit below) but missed it. Thus, add it now. Fixes: 3a650df ("libc: port freebsd to use ctest-next")
24d2dae
to
21415c1
Compare
(backport <rust-lang#4653>) (cherry picked from commit 0ebbafd) [ some significant resolution needed due to API removed in 0.2 - Trevor ]
(backport <rust-lang#4607>) (cherry picked from commit b02c121)
https://git.musl-libc.org/cgit/musl/tree/arch/s390x/bits/statfs.h statfs64 is the same as statfs on musl-libc, so it can also be a type alias on the Rust side. https://git.musl-libc.org/cgit/musl/tree/include/sys/statfs.h#n21 (backport <rust-lang#4549>) (cherry picked from commit dd6f54c)
glibc provides these symbols, but musl does not. (backport <rust-lang#4549>) (cherry picked from commit da77f0f)
musl-libc does not implement sysctl. (backport <rust-lang#4549>) (cherry picked from commit 751f3b6)
SYS_mseal is not yet defined in musl-libc, but it can only take one possible value, dictated by the kernel's syscall ABI. (backport <rust-lang#4549>) (cherry picked from commit 6a13fd5)
Previously, the definition was only changed for glibc but not for musl. Fixes: 051fa61 ("Make `fpreg_t` an union") (backport <rust-lang#4549>) (cherry picked from commit 2e670a8)
21415c1
to
8580131
Compare
(backport <rust-lang#4655>) (cherry picked from commit b185a13)
24f9689
to
4baa6a8
Compare
ce6b11c
to
ec73ed1
Compare
ec73ed1
to
5aa5934
Compare
(backport <rust-lang#4655>) (cherry picked from commit 4439546) [ drop everything related to the actual ctest-next impl. Some other Cargo.toml adjustments were needed. - Trevor ]
(backport <rust-lang#4659>) (cherry picked from commit 3f2a3ab)
(backport <rust-lang#4660>) (cherry picked from commit d09b1da)
On `main` we require that the tier 1 tests pass before running tier 2 jobs in an effort to avoid spending CI time when things would fail smoke checks. `libc-0.2` has a bit of a different flow though: most PRs are bulk backports that contain a number of patches which have already been validated once on `main`. To speed up the backport process a bit, remove `needs:` so all jobs start at the same time.
5aa5934
to
e156cbb
Compare
Merged
via the queue into
rust-lang:libc-0.2
with commit Sep 22, 2025
a0225a0
49 of 50 checks passed
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.
Backport the following:
ctest-next
toctest
#4655