-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule kernel
updated
27 files
+61 −12 | Cargo.lock | |
+2 −1 | Cargo.toml | |
+3 −2 | src/arch/aarch64/kernel/processor.rs | |
+3 −2 | src/arch/riscv64/kernel/processor.rs | |
+6 −2 | src/arch/x86_64/kernel/processor.rs | |
+15 −4 | src/arch/x86_64/mm/paging.rs | |
+10 −8 | src/console.rs | |
+0 −1 | src/drivers/net/virtio_net.rs | |
+22 −215 | src/drivers/virtio/virtqueue/mod.rs | |
+54 −141 | src/drivers/virtio/virtqueue/packed.rs | |
+24 −65 | src/drivers/virtio/virtqueue/split.rs | |
+214 −0 | src/executor/mod.rs | |
+14 −148 | src/executor/network.rs | |
+240 −66 | src/fd/mod.rs | |
+134 −118 | src/fd/socket/tcp.rs | |
+93 −71 | src/fd/socket/udp.rs | |
+75 −10 | src/fd/stdio.rs | |
+130 −11 | src/fs/fuse.rs | |
+274 −182 | src/fs/mem.rs | |
+11 −8 | src/fs/uhyve.rs | |
+3 −8 | src/lib.rs | |
+2 −2 | src/macros.rs | |
+2 −2 | src/syscalls/interfaces/mod.rs | |
+2 −2 | src/syscalls/interfaces/uhyve.rs | |
+16 −16 | src/syscalls/mod.rs | |
+9 −12 | src/syscalls/net.rs | |
+1 −0 | xtask/src/ci/qemu.rs |