This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typofixes and light copyedit, 20201004 edition.
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ Contact: Ankur Kothiwal <[email protected]> | |
The eBPF eXpress Data Path (XDP) allows eBPF programs to be run to filter | ||
received packets as early as possible, avoiding unnecessary processing | ||
overhead before the filter is run. The goal of this project is to extend an | ||
existing FreeBSD network driver (a virtual NIC like a VirtIO if_vtnet ) to | ||
existing FreeBSD network driver (a virtual NIC like a VirtIO if_vtnet) to | ||
be able to call into an eBPF program when processing a newly received | ||
packet. In short, XDP the driver must PASS (accept and process normally), DROP, | ||
packet. In short, with XDP the driver must PASS (accept and process normally), DROP, | ||
TX or REDIRECT the packet as specified by the program. eBPF helper | ||
functions and maps for aiding in packet filtering will also be | ||
implemented. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters