-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Consolodate the Linux *_SUPER_MAGIC
constants.
#2639
Consolodate the Linux *_SUPER_MAGIC
constants.
#2639
Conversation
Move the Linux `*_SUPER_MAGIC` constants out of android/uclibc/gnu-specific directories and into the common `linux_like` directory so that they're available on all Linux-family platforms, and so that that all Linux-family platforms have all the constants.
r? @Amanieu (rust-highfive has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit f7f0656 has been approved by |
…anieu Consolodate the Linux `*_SUPER_MAGIC` constants. Move the Linux `*_SUPER_MAGIC` constants out of android/uclibc/gnu-specific directories and into the common `linux_like` directory so that they're available on all Linux-family platforms, and so that that all Linux-family platforms have all the constants.
💔 Test failed - checks-actions |
I think this is the same as #2633: the musl version used in CI doesn't have the BINDERFS magic, which is causing the check to fail. |
@bors r+ |
📌 Commit d0891d9 has been approved by |
…anieu Consolodate the Linux `*_SUPER_MAGIC` constants. Move the Linux `*_SUPER_MAGIC` constants out of android/uclibc/gnu-specific directories and into the common `linux_like` directory so that they're available on all Linux-family platforms, and so that that all Linux-family platforms have all the constants.
💔 Test failed - checks-actions |
@bors r+ |
📌 Commit 4875c52 has been approved by |
…anieu Consolodate the Linux `*_SUPER_MAGIC` constants. Move the Linux `*_SUPER_MAGIC` constants out of android/uclibc/gnu-specific directories and into the common `linux_like` directory so that they're available on all Linux-family platforms, and so that that all Linux-family platforms have all the constants.
💔 Test failed - checks-actions |
@bors r+ |
📌 Commit 338ac98 has been approved by |
☀️ Test successful - checks-actions, checks-cirrus-freebsd-11, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13 |
1717: Define FsType constants for musl r=asomers a=jirutka These constants are provided by Linux (linux/magic.h), not libc. See rust-lang/libc#2639. Co-authored-by: Jakub Jirutka <jakub@jirutka.cz>
Move the Linux
*_SUPER_MAGIC
constants out ofandroid/uclibc/gnu-specific directories and into the common
linux_like
directoryso that they're available on all Linux-family platforms, and so that that all
Linux-family platforms have all the constants.