Console Output

Skipping 111 KB.. Full Log
1:                                             const int& inner_map_fd) {
1: -    if (!this->update(const_cast<int*>(&index), const_cast<int*>(&inner_map_fd)))
1: -      return StatusTuple(-1, "Error updating value: %s", std::strerror(errno));
1: -    return StatusTuple(0);
1: +  if (!this->update(const_cast<int*>(&index), const_cast<int*>(&inner_map_fd)))
1: +    return StatusTuple(-1, "Error updating value: %s", std::strerror(errno));
1: +  return StatusTuple(0);
1:  }
1:  
1:  StatusTuple BPFMapInMapTable::remove_value(const int& index) {
1: -    if (!this->remove(const_cast<int*>(&index)))
1: -      return StatusTuple(-1, "Error removing value: %s", std::strerror(errno));
1: -    return StatusTuple(0);
1: +  if (!this->remove(const_cast<int*>(&index)))
1: +    return StatusTuple(-1, "Error removing value: %s", std::strerror(errno));
1: +  return StatusTuple(0);
1:  }
1:  
1:  }  // namespace ebpf
1: diff --git a/src/cc/api/BPFTable.h b/src/cc/api/BPFTable.h
1: index 49ee647..cc950ab 100644
1: --- a/src/cc/api/BPFTable.h
1: +++ b/src/cc/api/BPFTable.h
1: @@ -402,7 +402,7 @@ public:
1:  };
1:  
1:  class BPFMapInMapTable : public BPFTableBase<int, int> {
1: -public:
1: + public:
1:    BPFMapInMapTable(const TableDesc& desc);
1:  
1:    StatusTuple update_value(const int& index, const int& inner_map_fd);
1: diff --git a/src/cc/bpf_module.cc b/src/cc/bpf_module.cc
1: index f58848d..aaf50ea 100644
1: --- a/src/cc/bpf_module.cc
1: +++ b/src/cc/bpf_module.cc
1: @@ -14,14 +14,14 @@
1:   * limitations under the License.
1:   */
1:  #include <fcntl.h>
1: -#include <map>
1: -#include <string>
1: +#include <linux/bpf.h>
1: +#include <net/if.h>
1:  #include <sys/stat.h>
1:  #include <unistd.h>
1: -#include <vector>
1: +#include <map>
1:  #include <set>
1: -#include <linux/bpf.h>
1: -#include <net/if.h>
1: +#include <string>
1: +#include <vector>
1:  
1:  #include <llvm/ExecutionEngine/MCJIT.h>
1:  #include <llvm/ExecutionEngine/SectionMemoryManager.h>
1: @@ -306,8 +306,8 @@ int BPFModule::create_maps(std::map<std::string, std::pair<int, int>> &map_tids,
1:        if (inner_maps.find(map_name) == inner_maps.end())
1:          continue;
1:        if (inner_map_name.size()) {
1: -        fprintf(stderr, "inner map %s has inner map %s\n",
1: -                map_name, inner_map_name.c_str());
1: +        fprintf(stderr, "inner map %s has inner map %s\n", map_name,
1: +                inner_map_name.c_str());
1:          return -1;
1:        }
1:      } else {
1: @@ -386,8 +386,8 @@ int BPFModule::load_maps(sec_map_def &sections) {
1:            }
1:          }
1:  
1: -        int ret = btf_->get_map_tids(map_name, expected_ksize,
1: -                                     expected_vsize, &key_tid, &value_tid);
1: +        int ret = btf_->get_map_tids(map_name, expected_ksize, expected_vsize,
1: +                                     &key_tid, &value_tid);
1:          if (ret)
1:            continue;
1:  
1: diff --git a/src/cc/frontends/clang/b_frontend_action.cc b/src/cc/frontends/clang/b_frontend_action.cc
1: index 5697f2f..39d8320 100644
1: --- a/src/cc/frontends/clang/b_frontend_action.cc
1: +++ b/src/cc/frontends/clang/b_frontend_action.cc
1: @@ -1289,10 +1289,11 @@ bool BTypeVisitor::VisitVarDecl(VarDecl *Decl) {
1:  
1:        table.type = map_type;
1:        table.fake_fd = fe_.get_next_fake_fd();
1: -      fe_.add_map_def(table.fake_fd, std::make_tuple((int)map_type, std::string(table.name),
1: -                      (int)table.key_size, (int)table.leaf_size,
1: -                      (int)table.max_entries, table.flags, pinned_id,
1: -                      inner_map_name));
1: +      fe_.add_map_def(table.fake_fd,
1: +                      std::make_tuple((int)map_type, std::string(table.name),
1: +                                      (int)table.key_size, (int)table.leaf_size,
1: +                                      (int)table.max_entries, table.flags,
1: +                                      pinned_id, inner_map_name));
1:      }
1:  
1:      if (!table.is_extern)
1: diff --git a/src/cc/frontends/clang/b_frontend_action.h b/src/cc/frontends/clang/b_frontend_action.h
1: index cea13cc..c2250e6 100644
1: --- a/src/cc/frontends/clang/b_frontend_action.h
1: +++ b/src/cc/frontends/clang/b_frontend_action.h
1: @@ -174,8 +174,9 @@ class BFrontendAction : public clang::ASTFrontendAction {
1:    void DoMiscWorkAround();
1:    // negative fake_fd to be different from real fd in bpf_pseudo_fd.
1:    int get_next_fake_fd() { return next_fake_fd_--; }
1: -  void add_map_def(int fd,
1: -    std::tuple<int, std::string, int, int, int, int, unsigned int, std::string> map_def) {
1: +  void add_map_def(int fd, std::tuple<int, std::string, int, int, int, int,
1: +                                      unsigned int, std::string>
1: +                               map_def) {
1:      fake_fd_map_[fd] = move(map_def);
1:    }
1:  
1: diff --git a/src/cc/table_storage.h b/src/cc/table_storage.h
1: index b83fbdd..7f22c71 100644
1: --- a/src/cc/table_storage.h
1: +++ b/src/cc/table_storage.h
1: @@ -27,8 +27,9 @@
1:  
1:  namespace ebpf {
1:  
1: -typedef std::map<int, std::tuple<int, std::string, int, int, int, int, unsigned int, std::string>>
1: -        fake_fd_map_def;
1: +typedef std::map<int, std::tuple<int, std::string, int, int, int, int,
1: +                                 unsigned int, std::string>>
1: +    fake_fd_map_def;
1:  
1:  class TableStorageImpl;
1:  class TableStorageIteratorImpl;
1: Ignoring changes in the following files (wrong extension):
1:     tests/python/test_map_in_map.py
1:     src/python/bcc/table.py
1:     docs/reference_guide.md
1:     tests/cc/CMakeLists.txt
1: Running clang-format on the following files:
1:     src/cc/frontends/clang/b_frontend_action.h
1:     src/cc/api/BPF.h
1:     src/cc/table_storage.h
1:     src/cc/export/helpers.h
1:     src/cc/frontends/clang/b_frontend_action.cc
1:     src/cc/api/BPFTable.cc
1:     tests/cc/test_map_in_map.cc
1:     src/cc/bpf_module.cc
1:     src/cc/bpf_module.h
1:     src/cc/api/BPFTable.h
1:     src/cc/api/BPF.cc
1: old tree: c1d1e3cfb14941d50e9594bcd6950aebdec2884f
1: new tree: e3e6af50e12e35bfa5469c2909ada22cfe52f1b6
 1/40 Test  #1: style-check ......................   Passed    2.80 sec
test 2
      Start  2: c_test_static

2: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "c_test_static" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/cc/test_static"
2: Test timeout computed to be: 9.99988e+06
2: clang -cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -emit-llvm-uselists -disable-free -disable-llvm-verifier -discard-value-names -main-file-name main.c -mrelocation-model static -mthread-model posix -fmath-errno -masm-verbose -mconstructor-aliases -fuse-init-array -target-cpu x86-64 -momit-leaf-frame-pointer -dwarf-column-info -debugger-tuning=gdb -coverage-file /usr/src/kernels/4.13.16-100.fc25.x86_64/main.c -nostdsysteminc -nobuiltininc -resource-dir ../lib64/clang/3.9.1 -isystem /virtual/lib/clang/include -include ./include/linux/kconfig.h -include /virtual/include/bcc/bpf.h -include /virtual/include/bcc/helpers.h -isystem /virtual/include -I /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/cc -D __BPF_TRACING__ -I /lib/modules/4.13.16-100.fc25.x86_64/build/arch/x86/include -I /lib/modules/4.13.16-100.fc25.x86_64/build/arch/x86/include/generated/uapi -I /lib/modules/4.13.16-100.fc25.x86_64/build/arch/x86/include/generated -I /lib/modules/4.13.16-100.fc25.x86_64/build/include -I /lib/modules/4.13.16-100.fc25.x86_64/build/./arch/x86/include/uapi -I /lib/modules/4.13.16-100.fc25.x86_64/build/arch/x86/include/generated/uapi -I /lib/modules/4.13.16-100.fc25.x86_64/build/include/uapi -I /lib/modules/4.13.16-100.fc25.x86_64/build/include/generated -I /lib/modules/4.13.16-100.fc25.x86_64/build/include/generated/uapi -I ./arch/x86/include -I arch/x86/include/generated/uapi -I arch/x86/include/generated -I include -I ./arch/x86/include/uapi -I arch/x86/include/generated/uapi -I ./include/uapi -I include/generated/uapi -D __KERNEL__ -D __HAVE_BUILTIN_BSWAP16__ -D __HAVE_BUILTIN_BSWAP32__ -D __HAVE_BUILTIN_BSWAP64__ -O2 -Wno-deprecated-declarations -Wno-gnu-variable-sized-type-not-at-end -Wno-pragma-once-outside-header -Wno-address-of-packed-member -Wno-unknown-warning-option -Wno-unused-value -Wno-pointer-sign -fdebug-compilation-dir /usr/src/kernels/4.13.16-100.fc25.x86_64 -ferror-limit 19 -fmessage-length 0 -fobjc-runtime=gcc -fdiagnostics-show-option -vectorize-loops -vectorize-slp -o main.bc -x c /virtual/main.c
2: #if defined(BPF_LICENSE)
2: #error BPF_LICENSE cannot be specified through cflags
2: #endif
2: #if !defined(CONFIG_CC_STACKPROTECTOR)
2: #if defined(CONFIG_CC_STACKPROTECTOR_AUTO) \
2:     || defined(CONFIG_CC_STACKPROTECTOR_REGULAR) \
2:     || defined(CONFIG_CC_STACKPROTECTOR_STRONG)
2: #define CONFIG_CC_STACKPROTECTOR
2: #endif
2: #endif
2: BPF_TABLE("array", int, int, stats, 10);
2: 
2: #include <bcc/footer.h>
2: Running from kernel directory at: /lib/modules/4.13.16-100.fc25.x86_64/source
 2/40 Test  #2: c_test_static ....................   Passed    2.60 sec
test 3
      Start  3: test_libbcc

3: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "c_test_all" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/cc/test_libbcc"
3: Test timeout computed to be: 9.99988e+06
3: /virtual/main.c:2:7: error: map not found: /sys/fs/bpf/test_pinned_table
3:       BPF_TABLE_PINNED("hash", u64, u64, ids, 1024, "/sys/fs/bpf/test_pinned_table");
3:       ^
3: /virtual/include/bcc/helpers.h:98:92: note: expanded from macro 'BPF_TABLE_PINNED'
3: #define BPF_TABLE_PINNED(_table_type, _key_type, _leaf_type, _name, _max_entries, _pinned) \
3:                                                                                            ^
3: /virtual/include/bcc/helpers.h:95:76: note: expanded from macro '\
3: BPF_TABLE'
3: #define BPF_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries) \
3:                                                                            ^
3: /virtual/include/bcc/helpers.h:90:4: note: expanded from macro '\
3: BPF_F_TABLE'
3: }; \
3:    ^
3: 1 error generated.
3: 
3: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3: test_libbcc is a Catch v1.4.0 host application.
3: Run with -? for options
3: 
3: -------------------------------------------------------------------------------
3: test prog table
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_prog_table.cc:21
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_prog_table.cc:42: FAILED:
3:   REQUIRE( res.code() == 0 )
3: with expansion:
3:   -1 == 0
3: 
3: -------------------------------------------------------------------------------
3: test shared table
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_shared_table.cc:28
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_shared_table.cc:41: FAILED:
3:   REQUIRE( res.code() == 0 )
3: with expansion:
3:   -1 == 0
3: 
3: Parse error:
3:     4@i%ra+1r
3: -------^
3: -------------------------------------------------------------------------------
3: test fine a probe in our own binary with C++ API
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:65
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:70: FAILED:
3:   REQUIRE( res.code() == 0 )
3: with expansion:
3:   -1 == 0
3: 
3: -------------------------------------------------------------------------------
3: test fine a probe in our Process with C++ API
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:79
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:84: FAILED:
3:   REQUIRE( res.code() == 0 )
3: with expansion:
3:   -1 == 0
3: 
3: -------------------------------------------------------------------------------
3: test find a probe in our process' shared libs with c++ API
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:93
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:98: FAILED:
3:   REQUIRE( res.msg() == "" )
3: with expansion:
3:   "Unable to initialize BPF program" == ""
3: 
3: -------------------------------------------------------------------------------
3: test usdt partial init w/ fail init_usdt
3: -------------------------------------------------------------------------------
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:102
3: ...............................................................................
3: 
3: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/cc/test_usdt_probes.cc:124: FAILED:
3:   REQUIRE( res.msg() == "" )
3: with expansion:
3:   "Unable to initialize BPF program" == ""
3: 
3: ===============================================================================
3: test cases:  36 |  30 passed | 6 failed
3: assertions: 600 | 594 passed | 6 failed
3: 
3: Failed
 3/40 Test  #3: test_libbcc ......................***Failed   11.09 sec
test 4
      Start  4: py_test_stat1_b

4: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_stat1_b" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stat1.py" "test_stat1.b" "proto.b"
4: Test timeout computed to be: 9.99988e+06
4: Actual changes:
4: tx-checksumming: off
4: 	tx-checksum-ip-generic: off
4: 	tx-checksum-sctp: off
4: tcp-segmentation-offload: off
4: 	tx-tcp-segmentation: off [requested on]
4: 	tx-tcp-ecn-segmentation: off [requested on]
4: 	tx-tcp-mangleid-segmentation: off [requested on]
4: 	tx-tcp6-segmentation: off [requested on]
4: udp-fragmentation-offload: off [requested on]
4: .PING 172.16.1.1 (172.16.1.1) 56(84) bytes of data.
4: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 
4: --- 172.16.1.1 ping statistics ---
4: 100 packets transmitted, 100 received, 0% packet loss, time 1ms
4: rtt min/avg/max/mdev = 0.004/0.007/0.107/0.011 ms, ipg/ewma 0.016/0.006 ms
4: .
4: ----------------------------------------------------------------------
4: Ran 2 tests in 0.335s
4: 
4: OK
 4/40 Test  #4: py_test_stat1_b ..................   Passed    1.17 sec
test 5
      Start  5: py_test_bpf_log

5: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_bpf_prog" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_bpf_log.py"
5: Test timeout computed to be: 9.99988e+06
5: Failed
 5/40 Test  #5: py_test_bpf_log ..................***Failed    0.78 sec
test 6
      Start  6: py_test_stat1_c

6: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_stat1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stat1.py" "test_stat1.c"
6: Test timeout computed to be: 9.99988e+06
6: Actual changes:
6: tx-checksumming: off
6: 	tx-checksum-ip-generic: off
6: 	tx-checksum-sctp: off
6: tcp-segmentation-offload: off
6: 	tx-tcp-segmentation: off [requested on]
6: 	tx-tcp-ecn-segmentation: off [requested on]
6: 	tx-tcp-mangleid-segmentation: off [requested on]
6: 	tx-tcp6-segmentation: off [requested on]
6: udp-fragmentation-offload: off [requested on]
6: EE
6: ======================================================================
6: ERROR: test_empty_key (__main__.TestBPFSocket)
6: ----------------------------------------------------------------------
6: Traceback (most recent call last):
6:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stat1.py", line 32, in setUp
6:     b = BPF(arg1, arg2, debug=0)
6:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
6:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
6: Exception: Failed to compile BPF module test_stat1.c
6: 
6: ======================================================================
6: ERROR: test_ping (__main__.TestBPFSocket)
6: ----------------------------------------------------------------------
6: Traceback (most recent call last):
6:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stat1.py", line 32, in setUp
6:     b = BPF(arg1, arg2, debug=0)
6:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
6:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
6: Exception: Failed to compile BPF module test_stat1.c
6: 
6: ----------------------------------------------------------------------
6: Ran 2 tests in 0.293s
6: 
6: FAILED (errors=2)
6: Failed
 6/40 Test  #6: py_test_stat1_c ..................***Failed    0.62 sec
test 7
      Start  7: py_test_xlate1_c

7: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_xlate1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_xlate1.py" "test_xlate1.c"
7: Test timeout computed to be: 9.99988e+06
7: Actual changes:
7: tx-checksumming: off
7: 	tx-checksum-ip-generic: off
7: 	tx-checksum-sctp: off
7: tcp-segmentation-offload: off
7: 	tx-tcp-segmentation: off [requested on]
7: 	tx-tcp-ecn-segmentation: off [requested on]
7: 	tx-tcp-mangleid-segmentation: off [requested on]
7: 	tx-tcp6-segmentation: off [requested on]
7: udp-fragmentation-offload: off [requested on]
7: E
7: ======================================================================
7: ERROR: test_xlate (__main__.TestBPFFilter)
7: ----------------------------------------------------------------------
7: Traceback (most recent call last):
7:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_xlate1.py", line 21, in setUp
7:     b = BPF(arg1, arg2, debug=0)
7:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
7:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
7: Exception: Failed to compile BPF module test_xlate1.c
7: 
7: ----------------------------------------------------------------------
7: Ran 1 test in 0.160s
7: 
7: FAILED (errors=1)
7: Failed
 7/40 Test  #7: py_test_xlate1_c .................***Failed    0.76 sec
test 8
      Start  8: py_test_call1

8: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_call1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_call1.py" "test_call1.c"
8: Test timeout computed to be: 9.99988e+06
8: Actual changes:
8: tx-checksumming: off
8: 	tx-checksum-ip-generic: off
8: 	tx-checksum-sctp: off
8: tcp-segmentation-offload: off
8: 	tx-tcp-segmentation: off [requested on]
8: 	tx-tcp-ecn-segmentation: off [requested on]
8: 	tx-tcp-mangleid-segmentation: off [requested on]
8: 	tx-tcp6-segmentation: off [requested on]
8: udp-fragmentation-offload: off [requested on]
8: E
8: ======================================================================
8: ERROR: test_jumps (__main__.TestBPFSocket)
8: ----------------------------------------------------------------------
8: Traceback (most recent call last):
8:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_call1.py", line 23, in setUp
8:     b = BPF(src_file=arg1, debug=0)
8:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
8:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
8: Exception: Failed to compile BPF module test_call1.c
8: 
8: ----------------------------------------------------------------------
8: Ran 1 test in 0.143s
8: 
8: FAILED (errors=1)
8: Failed
 8/40 Test  #8: py_test_call1 ....................***Failed    0.71 sec
test 9
      Start  9: py_test_trace1

9: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_trace1" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace1.py" "test_trace1.b" "kprobe.b"
9: Test timeout computed to be: 9.99988e+06
9: E
9: ======================================================================
9: ERROR: test_trace1 (__main__.TestKprobe)
9: ----------------------------------------------------------------------
9: Traceback (most recent call last):
9:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace1.py", line 28, in setUp
9:     b = BPF(arg1, arg2, debug=0)
9:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
9:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
9: Exception: Failed to compile BPF module test_trace1.b
9: 
9: ----------------------------------------------------------------------
9: Ran 1 test in 0.136s
9: 
9: FAILED (errors=1)
9: Failed
 9/40 Test  #9: py_test_trace1 ...................***Failed    0.21 sec
test 10
      Start 10: py_test_trace2

10: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_trace2" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace2.py"
10: Test timeout computed to be: 9.99988e+06
10: .
10: ----------------------------------------------------------------------
10: Ran 1 test in 4.441s
10: 
10: OK
10: ('ptr ffff94f79345cc80:', 'stat1 (0 5)')
10: ('ptr ffff94f796a20000:', 'stat1 (0 101)')
10: ('ptr ffff94f79413cc80:', 'stat1 (0 10)')
10: ('ptr ffff94f79400a640:', 'stat1 (0 1)')
10: ('ptr ffff94f79320cc80:', 'stat1 (0 1)')
10: ('ptr ffffffffa8e10480:', 'stat1 (0 40)')
10: ('ptr ffff94f796a1a640:', 'stat1 (0 3)')
10: ('ptr ffff94f795d94c80:', 'stat1 (0 1)')
10: ('ptr ffff94f793d08000:', 'stat1 (0 20)')
10: ('ptr ffff94f793fb0000:', 'stat1 (0 100)')
10/40 Test #10: py_test_trace2 ...................   Passed    4.54 sec
test 11
      Start 11: py_test_trace3_c

11: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_trace3_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace3.py" "test_trace3.c"
11: Test timeout computed to be: 9.99988e+06
11: 1024+0 records in
11: 1024+0 records out
11: 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.00348333 s, 1.2 GB/s
11: 1024+0 records in
11: 1024+0 records out
11: 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.00389256 s, 1.1 GB/s
11: ('latency 0:', 'count 0')
11: ('latency 1:', 'count 0')
11: ('latency 2:', 'count 0')
11: ('latency 3:', 'count 0')
11: ('latency 4:', 'count 0')
11: ('latency 5:', 'count 0')
11: ('latency 6:', 'count 0')
11: ('latency 7:', 'count 0')
11: ('latency 8:', 'count 0')
11: ('latency 9:', 'count 0')
11: ('latency 10:', 'count 0')
11: ('latency 11:', 'count 0')
11: ('latency 12:', 'count 0')
11: ('latency 13:', 'count 0')
11: ('latency 14:', 'count 0')
11: ('latency 15:', 'count 0')
11: ('latency 16:', 'count 0')
11: ('latency 17:', 'count 0')
11: ('latency 18:', 'count 0')
11: ('latency 19:', 'count 0')
11: ('latency 20:', 'count 0')
11: ('latency 21:', 'count 0')
11: ('latency 22:', 'count 0')
11: ('latency 23:', 'count 0')
11: ('latency 24:', 'count 0')
11: ('latency 25:', 'count 0')
11: ('latency 26:', 'count 0')
11: ('latency 27:', 'count 0')
11: ('latency 28:', 'count 0')
11: ('latency 29:', 'count 0')
11: ('latency 30:', 'count 0')
11: ('latency 31:', 'count 0')
11: ('latency 32:', 'count 0')
11: ('latency 33:', 'count 0')
11: ('latency 34:', 'count 0')
11: ('latency 35:', 'count 0')
11: ('latency 36:', 'count 0')
11: ('latency 37:', 'count 0')
11: ('latency 38:', 'count 0')
11: ('latency 39:', 'count 0')
11: ('latency 40:', 'count 0')
11: ('latency 41:', 'count 0')
11: ('latency 42:', 'count 0')
11: ('latency 43:', 'count 0')
11: ('latency 44:', 'count 1')
11: ('latency 45:', 'count 0')
11: ('latency 46:', 'count 2')
11: ('latency 47:', 'count 0')
11: ('latency 48:', 'count 1')
11: ('latency 49:', 'count 0')
11: ('latency 50:', 'count 0')
11: ('latency 51:', 'count 0')
11: ('latency 52:', 'count 0')
11: ('latency 53:', 'count 0')
11: ('latency 54:', 'count 0')
11: ('latency 55:', 'count 0')
11: ('latency 56:', 'count 4')
11: ('latency 57:', 'count 10')
11: ('latency 58:', 'count 8')
11: ('latency 59:', 'count 8')
11: ('latency 60:', 'count 0')
11: ('latency 61:', 'count 2')
11: ('latency 62:', 'count 0')
11: ('latency 63:', 'count 2')
11: ('latency 64:', 'count 2')
11: ('latency 65:', 'count 1')
11: ('latency 66:', 'count 20')
11: ('latency 67:', 'count 28')
11: ('latency 68:', 'count 94')
11: ('latency 69:', 'count 105')
11: ('latency 70:', 'count 40')
11: ('latency 71:', 'count 4')
11: ('latency 72:', 'count 28')
11: ('latency 73:', 'count 15')
11: ('latency 74:', 'count 16')
11: ('latency 75:', 'count 22')
11: ('latency 76:', 'count 7')
11: ('latency 77:', 'count 44')
11: ('latency 78:', 'count 19')
11: ('latency 79:', 'count 53')
11: ('latency 80:', 'count 45')
11: ('latency 81:', 'count 0')
11: ('latency 82:', 'count 0')
11: ('latency 83:', 'count 0')
11: ('latency 84:', 'count 0')
11: ('latency 85:', 'count 0')
11: ('latency 86:', 'count 0')
11: ('latency 87:', 'count 0')
11: ('latency 88:', 'count 0')
11: ('latency 89:', 'count 0')
11: ('latency 90:', 'count 0')
11: ('latency 91:', 'count 0')
11: ('latency 92:', 'count 0')
11: ('latency 93:', 'count 0')
11: ('latency 94:', 'count 0')
11: ('latency 95:', 'count 0')
11: ('latency 96:', 'count 0')
11: ('latency 97:', 'count 0')
11: ('latency 98:', 'count 0')
11: ('latency 99:', 'count 0')
11: .
11: ----------------------------------------------------------------------
11: Ran 1 test in 2.512s
11: 
11: OK
11/40 Test #11: py_test_trace3_c .................   Passed    2.64 sec
test 12
      Start 12: py_test_trace4

12: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_trace4" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace4.py"
12: Test timeout computed to be: 9.99988e+06
12: ..
12: ----------------------------------------------------------------------
12: Ran 2 tests in 1.185s
12: 
12: OK
12/40 Test #12: py_test_trace4 ...................   Passed    1.36 sec
test 13
      Start 13: py_test_trace_maxactive

13: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_trace_maxactive" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace_maxactive.py"
13: Test timeout computed to be: 9.99988e+06
13: E
13: ======================================================================
13: ERROR: test_send1 (__main__.TestKprobeMaxactive)
13: ----------------------------------------------------------------------
13: Traceback (most recent call last):
13:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_trace_maxactive.py", line 26, in setUp
13:     """)
13:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
13:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
13: Exception: Failed to compile BPF module <text>
13: 
13: ----------------------------------------------------------------------
13: Ran 1 test in 0.141s
13: 
13: FAILED (errors=1)
13: Failed
13/40 Test #13: py_test_trace_maxactive ..........***Failed    0.21 sec
test 14
      Start 14: py_test_probe_count

14: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_probe_count" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py"
14: Test timeout computed to be: 9.99988e+06
14: EEEEEE
14: ======================================================================
14: ERROR: test_count (__main__.TestAutoKprobe)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 53, in setUp
14:     """)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ======================================================================
14: ERROR: test_attach1 (__main__.TestKprobeCnt)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 16, in setUp
14:     """)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ======================================================================
14: ERROR: test_probe_quota (__main__.TestProbeGlobalCnt)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 34, in setUp
14:     self.b1 = BPF(text="""int count(void *ctx) { return 0; }""")
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ======================================================================
14: ERROR: test_not_exist (__main__.TestProbeNotExist)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 80, in setUp
14:     self.b = BPF(text="""int count(void *ctx) { return 0; }""")
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ======================================================================
14: ERROR: test_probe_quota (__main__.TestProbeQuota)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 64, in setUp
14:     self.b = BPF(text="""int count(void *ctx) { return 0; }""")
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ======================================================================
14: ERROR: test_uprobe_quota (__main__.TestProbeQuota)
14: ----------------------------------------------------------------------
14: Traceback (most recent call last):
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_probe_count.py", line 64, in setUp
14:     self.b = BPF(text="""int count(void *ctx) { return 0; }""")
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
14:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
14: Exception: Failed to compile BPF module <text>
14: 
14: ----------------------------------------------------------------------
14: Ran 6 tests in 0.771s
14: 
14: FAILED (errors=6)
14: Failed
14/40 Test #14: py_test_probe_count ..............***Failed    0.84 sec
test 15
      Start 15: py_test_debuginfo

15: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_debuginfo" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_debuginfo.py"
15: Test timeout computed to be: 9.99988e+06
15: ......
15: ----------------------------------------------------------------------
15: Ran 6 tests in 0.644s
15: 
15: OK
15/40 Test #15: py_test_debuginfo ................   Passed    0.72 sec
test 16
      Start 16: py_test_brb

16: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_brb_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_brb.py" "test_brb.c"
16: Test timeout computed to be: 9.99988e+06
16: net.ipv4.ip_forward = 1
16: ARPING 100.1.1.254 from 100.1.1.1 eth0
16: Unicast reply from 100.1.1.254 [EA:AD:4E:E0:42:7A]  0.681ms
16: Sent 1 probes (1 broadcast(s))
16: Received 1 response(s)
16: ARPING 200.1.1.254 from 200.1.1.1 eth0
16: Unicast reply from 200.1.1.254 [CE:1E:62:AE:C2:69]  1.402ms
16: Sent 1 probes (1 broadcast(s))
16: Received 1 response(s)
16: PING 200.1.1.1 (200.1.1.1) 56(84) bytes of data.
16: 64 bytes from 200.1.1.1: icmp_seq=1 ttl=63 time=0.124 ms
16: 64 bytes from 200.1.1.1: icmp_seq=2 ttl=63 time=0.092 ms
16: 
16: --- 200.1.1.1 ping statistics ---
16: 2 packets transmitted, 2 received, 0% packet loss, time 1052ms
16: rtt min/avg/max/mdev = 0.092/0.108/0.124/0.016 ms
16: [ ID] Interval       Transfer     Bandwidth
16: [  7]  0.0- 1.0 sec  2.49 GBytes  21.4 Gbits/sec
16: [ ID] Interval       Transfer     Bandwidth
16: [ 10]  0.0- 1.0 sec  2.49 GBytes  21.2 Gbits/sec
16: Starting netserver with host 'IN(6)ADDR_ANY' port '12865' and family AF_UNSPEC
16: MIGRATED TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET
16: Recv   Send    Send                          
16: Socket Socket  Message  Elapsed              
16: Size   Size    Size     Time     Throughput  
16: bytes  bytes   bytes    secs.    10^6bits/sec  
16: 
16:  87380  16384  65160    1.00     25006.99   
16: MIGRATED TCP REQUEST/RESPONSE TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET : first burst 0
16: Local /Remote
16: Socket Size   Request  Resp.   Elapsed  Trans.
16: Send   Recv   Size     Size    Time     Rate         
16: bytes  Bytes  bytes    bytes   secs.    per sec   
16: 
16: 16384  87380  1        1       1.00     28595.88   
16: 16384  87380 
16: .
16: ----------------------------------------------------------------------
16: Ran 1 test in 7.269s
16: 
16: OK
16/40 Test #16: py_test_brb ......................   Passed    7.71 sec
test 17
      Start 17: py_test_brb2

17: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_brb2_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_brb2.py" "test_brb2.c"
17: Test timeout computed to be: 9.99988e+06
17: net.ipv4.ip_forward = 1
17: PING 200.1.1.1 (200.1.1.1) 56(84) bytes of data.
17: 64 bytes from 200.1.1.1: icmp_seq=1 ttl=63 time=0.172 ms
17: 64 bytes from 200.1.1.1: icmp_seq=2 ttl=63 time=0.073 ms
17: 
17: --- 200.1.1.1 ping statistics ---
17: 2 packets transmitted, 2 received, 0% packet loss, time 1001ms
17: rtt min/avg/max/mdev = 0.073/0.122/0.172/0.050 ms
17: [ ID] Interval       Transfer     Bandwidth
17: [  7]  0.0- 1.0 sec  2.38 GBytes  20.4 Gbits/sec
17: [ ID] Interval       Transfer     Bandwidth
17: [ 10]  0.0- 1.0 sec  2.38 GBytes  20.2 Gbits/sec
17: Starting netserver with host 'IN(6)ADDR_ANY' port '12865' and family AF_UNSPEC
17: MIGRATED TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET
17: Recv   Send    Send                          
17: Socket Socket  Message  Elapsed              
17: Size   Size    Size     Time     Throughput  
17: bytes  bytes   bytes    secs.    10^6bits/sec  
17: 
17:  87380  16384  65160    1.00     22877.48   
17: MIGRATED TCP REQUEST/RESPONSE TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET : first burst 0
17: Local /Remote
17: Socket Size   Request  Resp.   Elapsed  Trans.
17: Send   Recv   Size     Size    Time     Rate         
17: bytes  Bytes  bytes    bytes   secs.    per sec   
17: 
17: 16384  87380  1        1       1.00     21442.81   
17: 16384  87380 
17: .
17: ----------------------------------------------------------------------
17: Ran 1 test in 7.328s
17: 
17: OK
17/40 Test #17: py_test_brb2 .....................   Passed    7.48 sec
test 18
      Start 18: py_test_clang

18: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_clang" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py"
18: Test timeout computed to be: 9.99988e+06
18: E..EE..EEEEE.In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: EIn file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: EIn file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: EIn file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: E/virtual/main.c:2:1: error: field has incomplete type 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18: ^
18: /virtual/include/bcc/helpers.h:176:48: note: expanded from macro 'BPF_HASH'
18:   BPF_HASHX(__VA_ARGS__, BPF_HASH4, BPF_HASH3, BPF_HASH2, BPF_HASH1)(__VA_ARGS__)
18:                                                ^
18: /virtual/main.c:2:24: note: forward declaration of 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18:                        ^
18: /virtual/main.c:2:1: error: field has incomplete type 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18: ^
18: /virtual/include/bcc/helpers.h:176:48: note: expanded from macro 'BPF_HASH'
18:   BPF_HASHX(__VA_ARGS__, BPF_HASH4, BPF_HASH3, BPF_HASH2, BPF_HASH1)(__VA_ARGS__)
18:                                                ^
18: /virtual/main.c:2:24: note: forward declaration of 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18:                        ^
18: 2 errors generated.
18: .E/virtual/main.c:6:12: error: cannot call non-static helper function
18:     return bar();
18:            ^
18: 1 error generated.
18: .EE..EIn file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .EEIn file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .........In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/tcp.h:24:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/tcp.h:24:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .......In file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: ..In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: ..EIn file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:4:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:2:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/inet_sock.h:27:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: ../virtual/main.c:7:12: warning: incompatible pointer to integer conversion returning 'u32 *' (aka 'unsigned int *') from a function with result type 'int' [-Wint-conversion]
18:     return *(&skp->sk_daddr);
18:            ^~~~~~~~~~~~~~~~~
18: 1 warning generated.
18: .In file included from /virtual/main.c:4:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:4:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:4:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: ...In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/tcp.h:24:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .In file included from /virtual/main.c:3:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/tcp.h:24:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
18: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(pn->memcg, idx, val);
18:         ~~~~~~~~~~~~~~~            ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         __mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
18:         mod_memcg_state(page->mem_cgroup, idx, val);
18:         ~~~~~~~~~~~~~~~                   ^~~
18: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
18:                 count_memcg_events(page->mem_cgroup, idx, 1);
18:                 ~~~~~~~~~~~~~~~~~~                   ^~~
18: 5 warnings generated.
18: .E...EEEE/virtual/main.c:1:30: error: expected expression
18: int failure(void *ctx) { if (); return 0; }
18:                              ^
18: 1 error generated.
18: .E/virtual/main.c:3:73: error: too many arguments, bcc only supports in-register parameters
18: int many(struct pt_regs *ctx, int a, int b, int c, int d, int e, int f, int g) {
18:                                                                         ^
18: 1 error generated.
18: ...E
18: ======================================================================
18: ERROR: test_arbitrary_increment_simple (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 1226, in test_arbitrary_increment_simple
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_bpf_hash (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 269, in test_bpf_hash
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_call_macro_arg (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 643, in test_call_macro_arg
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_complex (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 40, in test_complex
18:     b = BPF(src_file="test_clang_complex.c", debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module test_clang_complex.c
18: 
18: ======================================================================
18: ERROR: test_complex_leaf_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 589, in test_complex_leaf_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_consecutive_probe_read (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 290, in test_consecutive_probe_read
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_enumerations (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 946, in test_enumerations
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_exported_maps (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 601, in test_exported_maps
18:     b1 = BPF(text="""BPF_TABLE_PUBLIC("hash", int, int, table1, 10);""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 693, in test_ext_ptr_maps1
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 722, in test_ext_ptr_maps2
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps_indirect (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 781, in test_ext_ptr_maps_indirect
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps_reverse (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 751, in test_ext_ptr_maps_reverse
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_int128_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 952, in test_int128_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_iosnoop (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 248, in test_iosnoop
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_map_insert (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 886, in test_map_insert
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_nested_union (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 613, in test_nested_union
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_packed_structure (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 1249, in test_packed_structure
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_padding_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 985, in test_padding_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_keys (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 158, in test_probe_read_keys
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_simple_assign (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 419, in test_probe_simple_assign
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_prog_array_delete (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 900, in test_prog_array_delete
18:     b1 = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 168, in test_sscanf
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf_array (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 186, in test_sscanf_array
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf_string (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 211, in test_sscanf_string
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_task_switch (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 405, in test_task_switch
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_update_macro_arg (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_clang.py", line 663, in test_update_macro_arg
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ----------------------------------------------------------------------
18: Ran 79 tests in 88.649s
18: 
18: FAILED (errors=26)
18: Failed
18/40 Test #18: py_test_clang ....................***Failed   88.86 sec
test 19
      Start 19: py_test_histogram

19: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_histogram" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_histogram.py"
19: Test timeout computed to be: 9.99988e+06
19: EEEE
19: ======================================================================
19: ERROR: test_chars (__main__.TestHistogram)
19: ----------------------------------------------------------------------
19: Traceback (most recent call last):
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_histogram.py", line 70, in test_chars
19:     """)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
19:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
19: Exception: Failed to compile BPF module <text>
19: 
19: ======================================================================
19: ERROR: test_multiple_key (__main__.TestHistogram)
19: ----------------------------------------------------------------------
19: Traceback (most recent call last):
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_histogram.py", line 96, in test_multiple_key
19:     """)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
19:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
19: Exception: Failed to compile BPF module <text>
19: 
19: ======================================================================
19: ERROR: test_simple (__main__.TestHistogram)
19: ----------------------------------------------------------------------
19: Traceback (most recent call last):
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_histogram.py", line 22, in test_simple
19:     """)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
19:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
19: Exception: Failed to compile BPF module <text>
19: 
19: ======================================================================
19: ERROR: test_struct (__main__.TestHistogram)
19: ----------------------------------------------------------------------
19: Traceback (most recent call last):
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_histogram.py", line 48, in test_struct
19:     """)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
19:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
19: Exception: Failed to compile BPF module <text>
19: 
19: ----------------------------------------------------------------------
19: Ran 4 tests in 1.228s
19: 
19: FAILED (errors=4)
19: Failed
19/40 Test #19: py_test_histogram ................***Failed    1.30 sec
test 20
      Start 20: py_array

20: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_array" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_array.py"
20: Test timeout computed to be: 9.99988e+06
20: ....
20: ----------------------------------------------------------------------
20: Ran 4 tests in 1.004s
20: 
20: OK
20: Error in atexit._run_exitfuncs:
20: Traceback (most recent call last):
20:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
20:     func(*targs, **kargs)
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
20:     os.close(fn.fd)
20: OSError: [Errno 9] Bad file descriptor
20: Error in atexit._run_exitfuncs:
20: Traceback (most recent call last):
20:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
20:     func(*targs, **kargs)
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
20:     os.close(fn.fd)
20: OSError: [Errno 9] Bad file descriptor
20: Error in sys.exitfunc:
20: Traceback (most recent call last):
20:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
20:     func(*targs, **kargs)
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
20:     os.close(fn.fd)
20: OSError: [Errno 9] Bad file descriptor
20/40 Test #20: py_array .........................   Passed    1.12 sec
test 21
      Start 21: py_uprobes

21: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_uprobes" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_uprobes.py"
21: Test timeout computed to be: 9.99988e+06
21: .Python 2.7.13
21: .Arena 0:
21: system bytes     =   17522688
21: in use bytes     =    3013296
21: Total (incl. mmap):
21: system bytes     =   18313216
21: in use bytes     =    3803824
21: max mmap regions =          7
21: max mmap bytes   =    2781184
21: .
21: ----------------------------------------------------------------------
21: Ran 3 tests in 6.405s
21: 
21: OK
21/40 Test #21: py_uprobes .......................   Passed    6.48 sec
test 22
      Start 22: py_test_stackid

22: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_stackid" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stackid.py"
22: Test timeout computed to be: 9.99988e+06
22: sE
22: ======================================================================
22: ERROR: test_simple (__main__.TestStackid)
22: ----------------------------------------------------------------------
22: Traceback (most recent call last):
22:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_stackid.py", line 40, in test_simple
22:     """)
22:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
22:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
22: Exception: Failed to compile BPF module <text>
22: 
22: ----------------------------------------------------------------------
22: Ran 2 tests in 0.171s
22: 
22: FAILED (errors=1, skipped=1)
22: Failed
22/40 Test #22: py_test_stackid ..................***Failed    0.24 sec
test 23
      Start 23: py_test_tracepoint

23: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_tracepoint" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tracepoint.py"
23: Test timeout computed to be: 9.99988e+06
23: ..
23: ----------------------------------------------------------------------
23: Ran 2 tests in 2.271s
23: 
23: OK
23/40 Test #23: py_test_tracepoint ...............   Passed    2.36 sec
test 24
      Start 24: py_test_perf_event

24: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_perf_event" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_perf_event.py"
24: Test timeout computed to be: 9.99988e+06
24: E
24: ======================================================================
24: ERROR: test_cycles (__main__.TestPerfCounter)
24: ----------------------------------------------------------------------
24: Traceback (most recent call last):
24:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_perf_event.py", line 42, in test_cycles
24:     cflags=["-DNUM_CPUS=%d" % multiprocessing.cpu_count()])
24:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
24:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
24: Exception: Failed to compile BPF module <text>
24: 
24: ----------------------------------------------------------------------
24: Ran 1 test in 0.142s
24: 
24: FAILED (errors=1)
24: Failed
24/40 Test #24: py_test_perf_event ...............***Failed    0.21 sec
test 25
      Start 25: py_test_utils

25: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_utils" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_utils.py"
25: Test timeout computed to be: 9.99988e+06
25: ..
25: ----------------------------------------------------------------------
25: Ran 2 tests in 0.000s
25: 
25: OK
25/40 Test #25: py_test_utils ....................   Passed    0.07 sec
test 26
      Start 26: py_test_percpu

26: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_percpu" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_percpu.py"
26: Test timeout computed to be: 9.99988e+06
26: ssss
26: ----------------------------------------------------------------------
26: Ran 4 tests in 0.519s
26: 
26: OK (skipped=4)
26/40 Test #26: py_test_percpu ...................   Passed    0.59 sec
test 27
      Start 27: py_test_dump_func

27: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_dump_func" "simple" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_dump_func.py"
27: Test timeout computed to be: 9.99988e+06
27: E
27: ======================================================================
27: ERROR: test_return (__main__.TestDumpFunc)
27: ----------------------------------------------------------------------
27: Traceback (most recent call last):
27:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_dump_func.py", line 16, in test_return
27:     }""")
27:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
27:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
27: Exception: Failed to compile BPF module <text>
27: 
27: ----------------------------------------------------------------------
27: Ran 1 test in 0.131s
27: 
27: FAILED (errors=1)
27: Failed
27/40 Test #27: py_test_dump_func ................***Failed    0.20 sec
test 28
      Start 28: py_test_disassembler

28: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_disassembler" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_disassembler.py"
28: Test timeout computed to be: 9.99988e+06
28: ..
28: ----------------------------------------------------------------------
28: Ran 2 tests in 0.139s
28: 
28: OK
28/40 Test #28: py_test_disassembler .............   Passed    0.22 sec
test 29
      Start 29: py_test_tools_smoke

29: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_tools_smoke" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py"
29: Test timeout computed to be: 9.99988e+06
29: Traceback (most recent call last):
29:   File "../../tools/argdist.py", line 712, in run
29:     self._main_loop()
29:   File "../../tools/argdist.py", line 702, in _main_loop
29:     exit()
29:   File "/usr/lib64/python2.7/site.py", line 355, in __call__
29:     raise SystemExit(code)
29: SystemExit: None
29: ...Traceback (most recent call last):
29:   File "../../tools/biosnoop.py", line 157, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F'unknown': unknown terminal type.
29: .'unknown': unknown terminal type.
29: 'unknown': unknown terminal type.
29: 'unknown': unknown terminal type.
29: 'unknown': unknown terminal type.
29: ....Traceback (most recent call last):
29:   File "../../tools/cachestat.py", line 96, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/cpudist.py", line 161, in <module>
29:     b = BPF(text=bpf_text, cflags=["-DMAX_PID=%d" % max_pid])
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F....Traceback (most recent call last):
29:   File "../../tools/dcstat.py", line 93, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/drsnoop.py", line 183, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/execsnoop.py", line 170, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/filelife.py", line 113, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.'unknown': unknown terminal type.
29: .F.Traceback (most recent call last):
29:   File "../../tools/funcslower.py", line 232, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/gethostlatency.py", line 102, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/killsnoop.py", line 113, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.sTraceback (most recent call last):
29:   File "../../tools/mdflush.py", line 54, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/memleak.py", line 411, in <module>
29:     bpf = BPF(text=bpf_source)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.....Traceback (most recent call last):
29:   File "../../tools/offwaketime.py", line 263, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/pidpersec.py", line 37, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F...Traceback (most recent call last):
29:   File "../../tools/shmsnoop.py", line 178, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F'unknown': unknown terminal type.
29: .In file included from /virtual/main.c:6:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: Traceback (most recent call last):
29:   File "../../tools/sofdsnoop.py", line 265, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/softirqs.py", line 120, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/sslsniff.py", line 132, in <module>
29:     b = BPF(text=prog)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/syncsnoop.py", line 32, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/syscount.py", line 165, in <module>
29:     bpf = BPF(text=text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FIn file included from /virtual/main.c:3:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:3:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:3:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:5:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:4:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/tcp.h:23:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:3:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: .In file included from /virtual/main.c:3:
29: In file included from /lib/modules/4.13.16-100.fc25.x86_64/build/include/net/sock.h:58:
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:580:31: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:593:29: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(pn->memcg, idx, val);
29:         ~~~~~~~~~~~~~~~            ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:605:38: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         __mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:618:36: warning: implicit conversion from enumeration type 'enum node_stat_item' to different enumeration type 'enum memcg_stat_item' [-Wenum-conversion]
29:         mod_memcg_state(page->mem_cgroup, idx, val);
29:         ~~~~~~~~~~~~~~~                   ^~~
29: /lib/modules/4.13.16-100.fc25.x86_64/build/include/linux/memcontrol.h:639:40: warning: implicit conversion from enumeration type 'enum memcg_stat_item' to different enumeration type 'enum vm_event_item' [-Wenum-conversion]
29:                 count_memcg_events(page->mem_cgroup, idx, 1);
29:                 ~~~~~~~~~~~~~~~~~~                   ^~~
29: 5 warnings generated.
29: Traceback (most recent call last):
29:   File "../../tools/tcptop.py", line 206, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.FTraceback (most recent call last):
29:   File "../../tools/ttysnoop.py", line 101, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F...Traceback (most recent call last):
29:   File "../../tools/lib/uobjnew.py", line 176, in <module>
29:     bpf = BPF(text=program, usdt_contexts=[usdt])
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F'unknown': unknown terminal type.
29: Error in atexit._run_exitfuncs:
29: Traceback (most recent call last):
29:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
29:     func(*targs, **kargs)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
29:     os.close(fn.fd)
29: OSError: [Errno 9] Bad file descriptor
29: Error in sys.exitfunc:
29: Traceback (most recent call last):
29:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
29:     func(*targs, **kargs)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
29:     os.close(fn.fd)
29: OSError: [Errno 9] Bad file descriptor
29: .Traceback (most recent call last):
29:   File "../../tools/lib/uthreads.py", line 103, in <module>
29:     bpf = BPF(text=program, usdt_contexts=[usdt])
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/vfsstat.py", line 64, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/wakeuptime.py", line 165, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F....
29: ======================================================================
29: FAIL: test_biosnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 80, in test_biosnoop
29:     self.run_with_int("biosnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_cachestat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 101, in test_cachestat
29:     self.run_with_duration("cachestat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_cpudist (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 114, in test_cpudist
29:     self.run_with_duration("cpudist.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_dcstat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 137, in test_dcstat
29:     self.run_with_duration("dcstat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_drsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 149, in test_drsnoop
29:     self.run_with_int("drsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_execsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 153, in test_execsnoop
29:     self.run_with_int("execsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_filelife (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 164, in test_filelife
29:     self.run_with_int("filelife.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_funccount (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 174, in test_funccount
29:     self.run_with_int("funccount.py __kmalloc -i 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 0
29: 
29: ======================================================================
29: FAIL: test_funcslower (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 182, in test_funcslower
29:     self.run_with_int("funcslower.py __kmalloc")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_gethostlatency (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 186, in test_gethostlatency
29:     self.run_with_int("gethostlatency.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_killsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 200, in test_killsnoop
29:     self.run_with_int("killsnoop.py", kill=True)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_mdflush (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 213, in test_mdflush
29:     self.run_with_int("mdflush.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_memleak (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 217, in test_memleak
29:     self.run_with_duration("memleak.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_offwaketime (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 249, in test_offwaketime
29:     self.run_with_duration("offwaketime.py 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_pidpersec (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 260, in test_pidpersec
29:     self.run_with_int("pidpersec.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_shmsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 275, in test_shmsnoop
29:     self.run_with_int("shmsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_sofdsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 279, in test_sofdsnoop
29:     self.run_with_int("sofdsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_softirqs (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 286, in test_softirqs
29:     self.run_with_duration("softirqs.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_sslsniff (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 295, in test_sslsniff
29:     self.run_with_int("sslsniff.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_syncsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 307, in test_syncsnoop
29:     self.run_with_int("syncsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_syscount (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 311, in test_syscount
29:     self.run_with_int("syscount.py -i 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcptop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 338, in test_tcptop
29:     self.run_with_duration("tcptop.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_trace (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 345, in test_trace
29:     self.run_with_int("trace.py do_sys_open")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_ttysnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 349, in test_ttysnoop
29:     self.run_with_int("ttysnoop.py /dev/console")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_uobjnew (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 370, in test_uobjnew
29:     self.run_with_int("cobjnew.sh %d" % os.getpid())
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_uthreads (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 378, in test_uthreads
29:     self.run_with_int("lib/uthreads.py %d" % os.getpid())
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_vfsstat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 384, in test_vfsstat
29:     self.run_with_duration("vfsstat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_wakeuptime (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 388, in test_wakeuptime
29:     self.run_with_duration("wakeuptime.py 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ----------------------------------------------------------------------
29: Ran 81 tests in 175.566s
29: 
29: FAILED (failures=28, skipped=1)
29: Failed
29/40 Test #29: py_test_tools_smoke ..............***Failed  175.61 sec
test 30
      Start 30: py_test_tools_memleak

30: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/tests/wrapper.sh "py_test_tools_memleak" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/tests/python/test_tools_memleak.py"
30: Test timeout computed to be: 9.99988e+06
30: cannot attach uprobe, Device or resource busy
30: .Traceback (most recent call last):
30:   File "../../tools/memleak.py", line 411, in <module>
30:     bpf = BPF(text=bpf_source)
30:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc25/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
30:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
30: Exception: Failed to compile BPF module <text>
Build was aborted
Finished: ABORTED