Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: olsajiri/ebpf

Tags

v0.9.0

Toggle v0.9.0's commit message
features: rename HaveProgType API

In order to be in line with other naming schemes throughout
the library this commit deprecates HaveProgType() in favor
of HaveProgamType().

Signed-off-by: Robin Gögge <[email protected]>

v0.8.1

Toggle v0.8.1's commit message
btf: move vmlinux search logic into findVMLinux()

loadKernelSpec() gets short-circuited in the first statement on most kernels,
resulting in the vmlinux search code being rarely exercised successfully in CI.

Split the search logic out into its own function to make it testable in
isolation. Although virtme VMs don't have images at any of these paths,
running the test suite on a host with a full distro does result in a proper
test execution.

Signed-off-by: Timo Beckers <[email protected]>

v0.8.0

Toggle v0.8.0's commit message
Deprecate StructOpts and perf.IsClosed()

These were deprecated and scheduled to be removed in 0.8.0.

Signed-off-by: Timo Beckers <[email protected]>

v0.7.0

Toggle v0.7.0's commit message
README.md: changes for clarity

Signed-off-by: Liz Rice <[email protected]>

v0.6.2

Toggle v0.6.2's commit message
map: include errnos with errors

We replace some errnos from map syscalls with more descriptive
sentinel errors. Include the original errno with the error so
that both

    errors.Is(err, ErrKeyNotExist)
    errors.Is(err, unix.ENOENT)

work. We'll use this for other errors in the future where we
want to introduce our own errors without breaking callers that
rely on the (coarser) errno semantics.

v0.6.1

Toggle v0.6.1's commit message
examples: update main module

v0.6.0

Toggle v0.6.0's commit message
link: return os.ErrNotExist when symbol doesn't exist

Some of the tracing related links currently return ErrNotSupported
when trying to attach to a non-existant symbol. This is misleading.
Consistently return os.ErrNotExist in such cases.

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was signed with the committer’s verified signature.
ti-mo Timo Beckers
prog: document ProgramSpec's KernelVersion field more accurately

Signed-off-by: Timo Beckers <[email protected]>

v0.4.0

Toggle v0.4.0's commit message
program: Support Unpin operation for Program

v0.3.0

Toggle v0.3.0's commit message
info: add Name to MapInfo

Allow users to access the map name. The name is empty if the kernel
doesn't support object names yet.