Skip to content

Commit 294ecc8

Browse files
committed
loongarch64: Add kvm-bindings
Signed-off-by: WANG Rui <wangrui@loongson.cn>
1 parent fac89f0 commit 294ecc8

File tree

6 files changed

+3203
-0
lines changed

6 files changed

+3203
-0
lines changed

kvm-bindings/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
### Added
55

6+
- LoongArch KVM bindings for Linux kernel v6.13, including serialization support.
7+
68
### Changed
79

810
### Removed

kvm-bindings/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ following target architectures:
66
- x86_64
77
- arm64
88
- riscv64
9+
- loongarch64
910

1011
The bindings exported by this crate are statically generated using header files
1112
associated with a specific kernel version, and are not automatically synced with

kvm-bindings/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,8 @@ pub use self::arm64::*;
3636
mod riscv64;
3737
#[cfg(target_arch = "riscv64")]
3838
pub use self::riscv64::*;
39+
40+
#[cfg(target_arch = "loongarch64")]
41+
mod loongarch64;
42+
#[cfg(target_arch = "loongarch64")]
43+
pub use self::loongarch64::*;

0 commit comments

Comments
 (0)