We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7552e6f commit f62b8b5Copy full SHA for f62b8b5
src/unix/linux_like/linux/arch/generic/mod.rs
@@ -227,7 +227,7 @@ cfg_if! {
227
pub const FS_IOC32_SETFLAGS: ::Ioctl = 0x40046602;
228
pub const FS_IOC32_GETVERSION: ::Ioctl = 0x80047601;
229
pub const FS_IOC32_SETVERSION: ::Ioctl = 0x40047602;
230
- } else if #[cfg(target_arch = "x86_64")] {
+ } else if #[cfg(any(target_arch = "x86_64", target_arch = "riscv64", target_arch = "aarch64"))] {
231
pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80086601;
232
pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40086602;
233
pub const FS_IOC_GETVERSION: ::Ioctl = 0x80087601;
0 commit comments