Bug 1055778
Summary: | Pass 4 failure on RHEL7 for examples netfilter_summary and netfilter_drop | |||
---|---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Jonathan Lebon <jlebon> | |
Component: | systemtap | Assignee: | Frank Ch. Eigler <fche> | |
Status: | CLOSED CURRENTRELEASE | QA Contact: | qe-baseos-tools-bugs | |
Severity: | unspecified | Docs Contact: | ||
Priority: | unspecified | |||
Version: | 7.0 | CC: | mbenitez, mcermak, mjw | |
Target Milestone: | rc | |||
Target Release: | --- | |||
Hardware: | Unspecified | |||
OS: | Unspecified | |||
Whiteboard: | ||||
Fixed In Version: | systemtap-2.4-4.el7 | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1074541 1248159 (view as bug list) | Environment: | ||
Last Closed: | 2014-06-13 12:32:47 UTC | Type: | Bug | |
Regression: | --- | Mount Type: | --- | |
Documentation: | --- | CRM: | ||
Verified Versions: | Category: | --- | ||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
Cloudforms Team: | --- | Target Upstream Version: | ||
Embargoed: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1074541, 1248159 |
Description
Jonathan Lebon
2014-01-20 22:01:54 UTC
Related testsuite failures include: Running ../../systemtap/testsuite/systemtap.examples/check.exp ... FAIL: systemtap.examples/network/netfilter_drop build FAIL: systemtap.examples/network/netfilter_summary build Running ../../systemtap/testsuite/systemtap.pass1-4/buildok.exp ... FAIL: buildok/netfilter01.stp FAIL: buildok/netfilter02.stp FAIL: buildok/netfilter03.stp FAIL: buildok/netfilter04.stp This change comes from a backport of the linux 3.13 upstream commit 795aa6ef6a1aba99050735eadd0c2341b789b53b which changes the netfilter callback function's signature: diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h index 61223c52414f..fef7e67f7101 100644 --- a/include/linux/netfilter.h +++ b/include/linux/netfilter.h @@ -42,7 +42,8 @@ int netfilter_init(void); struct sk_buff; -typedef unsigned int nf_hookfn(unsigned int hooknum, +struct nf_hook_ops; +typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops, struct sk_buff *skb, const struct net_device *in, const struct net_device *out, We'll need a runtime/autoconf widget to detect this. Fixed upstream in commit 4d914c37bbe0 This request was resolved in Red Hat Enterprise Linux 7.0. Contact your manager or support representative in case you have further questions about the request. |