mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
Net: Shrink the NetworkTask packet buffer
This thing was overflowing the NetworkTask's kernel stack. Oops!
This commit is contained in:
@@ -75,7 +75,7 @@ void NetworkTask_main()
|
||||
|
||||
kprintf("NetworkTask: Enter main loop.\n");
|
||||
for (;;) {
|
||||
u8 packet[64 * KB];
|
||||
u8 packet[32 * KB];
|
||||
size_t packet_size = dequeue_packet(packet, sizeof(packet));
|
||||
if (!packet_size) {
|
||||
current->wait_on(packet_wait_queue);
|
||||
|
||||
Reference in New Issue
Block a user