File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
src/vmm/src/devices/virtio/net Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ and this project adheres to
3333
3434### Changed
3535
36- - [ #4875 ] ( https://github.com/firecracker-microvm/firecracker/pull/4875 ) :
37- Increase default queue size for the ` virtio-net ` device from 256 to 512. This
38- decreases wait time between guest and vmm threads for network packets
39- processing and allows for more throughput.
4036- [ #4844 ] ( https://github.com/firecracker-microvm/firecracker/pull/4844 ) : Upgrade
4137 ` virtio-net ` device to use ` readv ` syscall to avoid unnecessary memory copies
4238 on RX path, increasing the RX performance.
Original file line number Diff line number Diff line change @@ -90,9 +90,10 @@ v3.1 will be patched since were the last two Firecracker releases and less than
9090
9191| Release | Release Date | Latest Patch | Min. end of support | Official end of Support |
9292| ------: | -----------: | -----------: | ------------------: | :------------------------------ |
93+ | v1.10 | 2024-11-07 | v1.10.0 | 2025-05-07 | Supported |
9394| v1.9 | 2024-09-02 | v1.9.1 | 2025-03-02 | Supported |
9495| v1.8 | 2024-07-10 | v1.8.0 | 2025-01-10 | Supported |
95- | v1.7 | 2024-03-18 | v1.7.0 | 2024-09-18 | Supported |
96+ | v1.7 | 2024-03-18 | v1.7.0 | 2024-09-18 | 2024-09-18 (end of 6mo support) |
9697| v1.6 | 2023-12-20 | v1.6.0 | 2024-06-20 | 2024-07-10 (v1.8 released) |
9798| v1.5 | 2023-10-09 | v1.5.1 | 2024-04-09 | 2024-04-09 (end of 6mo support) |
9899| v1.4 | 2023-07-20 | v1.4.1 | 2024-01-20 | 2024-01-20 (end of 6mo support) |
Original file line number Diff line number Diff line change 66use std:: io;
77
88/// Maximum size of the queue for network device.
9- pub const NET_QUEUE_MAX_SIZE : u16 = 512 ;
9+ pub const NET_QUEUE_MAX_SIZE : u16 = 256 ;
1010/// Maximum size of the frame buffers handled by this device.
1111pub const MAX_BUFFER_SIZE : usize = 65562 ;
1212/// The number of queues of the network device.
You can’t perform that action at this time.
0 commit comments