mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 19:56:53 -04:00
DPDK is the open source Data Plane Development Kit that consists of libraries to accelerate packet processing workloads running on a wide variety of CPU architectures. It provides a set of data plane libraries and network interface controller polling-mode drivers for offloading TCP packet processing from the operating system kernel to processes running in user space. This offloading achieves higher computing efficiency and higher packet throughput than is possible using the interrupt-driven processing provided in the kernel. WWW: https://www.dpdk.org/ Changelog: https://doc.dpdk.org/guides/rel_notes/release_22_11.html PR: 272133
20 lines
371 B
C
20 lines
371 B
C
--- kernel/freebsd/contigmem/contigmem.c.orig 2023-05-20 00:00:38 UTC
|
|
+++ kernel/freebsd/contigmem/contigmem.c
|
|
@@ -111,7 +111,7 @@ static int
|
|
};
|
|
|
|
static int
|
|
-contigmem_load()
|
|
+contigmem_load(void)
|
|
{
|
|
char index_string[8], description[32];
|
|
int i, error = 0;
|
|
@@ -178,7 +178,7 @@ static int
|
|
}
|
|
|
|
static int
|
|
-contigmem_unload()
|
|
+contigmem_unload(void)
|
|
{
|
|
int i;
|
|
|