Skip to content
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

Fix reference to BPF instructions #313

Merged
merged 1 commit into from
Jan 5, 2018
Merged

Conversation

sargun
Copy link
Contributor

@sargun sargun commented Jan 2, 2018

Fixes #312

@@ -39,7 +39,7 @@ func loadSimpleBpf(progType BpfProgType, ret uint32) (int, error) {
attr := BPFAttr{
ProgType: uint32(progType),
InsnCnt: uint32(len(insns)),
Insns: uintptr(unsafe.Pointer(&insns)),
Insns: uintptr(unsafe.Pointer(&insns[0])),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think would be cleaner to remove the second instruction (line 36), the result should be the same

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See the bug.

@fcrisciani
Copy link
Collaborator

LGTM, fixes: #312

@aboch
Copy link
Collaborator

aboch commented Jan 5, 2018

Thanks @sargun and @fcrisciani

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants