-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Readme.md #2
base: master
Are you sure you want to change the base?
Conversation
Updated the link to eBPF ISA in readme New link: https://www.kernel.org/doc/html/latest/bpf/standardization/instruction-set.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! Did not know the link had expired. Just a small nit
Readme.md
Outdated
@@ -84,7 +84,7 @@ err = p.Cleanup() | |||
|
|||
## VM vs Emulator | |||
|
|||
eBPF is no longer Linux specific([eBPF for windows](https://github.com/Microsoft/ebpf-for-windows)). Now the [eBPF instruction](https://www.kernel.org/doc/html/latest/bpf/instruction-set.html) set is well defined as must be constant across all platforms(perhaps with the exception of legacy cBPF instructions for packet access). However, the Linux eBPF subsystem makes use of a lot of maps, some if which are generic, but most of which are very specialized and aimed at Linux specific features like cGroups or LSM. | |||
eBPF is no longer Linux specific([eBPF for windows](https://github.com/Microsoft/ebpf-for-windows)). Now the [eBPF instruction]([https://www.kernel.org/doc/html/latest/bpf/instruction-set.html](https://www.kernel.org/doc/html/latest/bpf/standardization/instruction-set.html)) set is well defined as must be constant across all platforms(perhaps with the exception of legacy cBPF instructions for packet access). However, the Linux eBPF subsystem makes use of a lot of maps, some if which are generic, but most of which are very specialized and aimed at Linux specific features like cGroups or LSM. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest just updating the link, instead of showing one link, and going to another.
eBPF is no longer Linux specific([eBPF for windows](https://github.com/Microsoft/ebpf-for-windows)). Now the [eBPF instruction]([https://www.kernel.org/doc/html/latest/bpf/instruction-set.html](https://www.kernel.org/doc/html/latest/bpf/standardization/instruction-set.html)) set is well defined as must be constant across all platforms(perhaps with the exception of legacy cBPF instructions for packet access). However, the Linux eBPF subsystem makes use of a lot of maps, some if which are generic, but most of which are very specialized and aimed at Linux specific features like cGroups or LSM. | |
eBPF is no longer Linux specific([eBPF for windows](https://github.com/Microsoft/ebpf-for-windows)). Now the [eBPF instruction set](https://www.kernel.org/doc/html/latest/bpf/standardization/instruction-set.html) is well defined as must be constant across all platforms(perhaps with the exception of legacy cBPF instructions for packet access). However, the Linux eBPF subsystem makes use of a lot of maps, some if which are generic, but most of which are very specialized and aimed at Linux specific features like cGroups or LSM. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I missed that. My bad. Please check the PR now.
Now the link will show and point to the same address.
Updated the link to eBPF ISA in readme
New link: https://www.kernel.org/doc/html/latest/bpf/standardization/instruction-set.html