Console Output

Skipping 351 KB.. Full Log
1: -
1: -	start_time = time(NULL);
1: -	while (!env.duration || time(NULL) - start_time < env.duration) {
1: -		if ((err = perf_buffer__poll(pb, PERF_POLL_TIMEOUT_MS)) < 0) {
1: -			printf("error polling perf buffer: %d\n", err);
1: -			break;
1: -		}
1: -	}
1: +int main(int argc, char **argv) {
1: +  static const struct argp argp = {
1: +      .options = opts, .parser = parse_arg, .doc = argp_program_doc,
1: +  };
1: +  struct perf_buffer_opts pb_opts;
1: +  struct perf_buffer *pb = NULL;
1: +  struct ksyms *ksyms = NULL;
1: +  const struct ksym *ksym;
1: +  struct drsnoop_bpf *obj;
1: +  time_t start_time;
1: +  int err;
1: +
1: +  err = argp_parse(&argp, argc, argv, 0, NULL, NULL);
1: +  if (err)
1: +    return err;
1: +
1: +  libbpf_set_print(libbpf_print_fn);
1: +
1: +  err = bump_memlock_rlimit();
1: +  if (err) {
1: +    fprintf(stderr, "failed to increase rlimit: %d\n", err);
1: +    return 1;
1: +  }
1: +
1: +  obj = drsnoop_bpf__open();
1: +  if (!obj) {
1: +    fprintf(stderr, "failed to open and/or load BPF ojbect\n");
1: +    return 1;
1: +  }
1: +
1: +  /* initialize global data (filtering options) */
1: +  obj->rodata->targ_tgid = env.pid;
1: +  obj->rodata->targ_pid = env.tid;
1: +  if (env.extended) {
1: +    ksyms = ksyms__load();
1: +    if (!ksyms) {
1: +      fprintf(stderr, "failed to load kallsyms\n");
1: +      goto cleanup;
1: +    }
1: +    ksym = ksyms__get_symbol(ksyms, "vm_zone_stat");
1: +    if (!ksym) {
1: +      fprintf(stderr, "failed to get vm_zone_stat's addr\n");
1: +      goto cleanup;
1: +    }
1: +    obj->rodata->vm_zone_stat_kaddr = ksym->addr;
1: +    page_size = sysconf(_SC_PAGESIZE);
1: +  }
1: +
1: +  err = drsnoop_bpf__load(obj);
1: +  if (err) {
1: +    fprintf(stderr, "failed to load BPF object: %d\n", err);
1: +    goto cleanup;
1: +  }
1: +
1: +  err = drsnoop_bpf__attach(obj);
1: +  if (err) {
1: +    fprintf(stderr, "failed to attach BPF programs\n");
1: +    goto cleanup;
1: +  }
1: +
1: +  printf("Tracing direct reclaim events");
1: +  if (env.duration)
1: +    printf(" for %ld secs.\n", env.duration);
1: +  else
1: +    printf("... Hit Ctrl-C to end.\n");
1: +  printf("%-8s %-16s %-6s %8s %5s", "TIME", "COMM", "TID", "LAT(ms)", "PAGES");
1: +  if (env.extended)
1: +    printf(" %8s", "FREE(KB)");
1: +  printf("\n");
1: +
1: +  pb_opts.sample_cb = handle_event;
1: +  pb_opts.lost_cb = handle_lost_events;
1: +  pb = perf_buffer__new(bpf_map__fd(obj->maps.events), PERF_BUFFER_PAGES,
1: +                        &pb_opts);
1: +  err = libbpf_get_error(pb);
1: +  if (err) {
1: +    pb = NULL;
1: +    fprintf(stderr, "failed to open perf buffer: %d\n", err);
1: +    goto cleanup;
1: +  }
1: +
1: +  start_time = time(NULL);
1: +  while (!env.duration || time(NULL) - start_time < env.duration) {
1: +    if ((err = perf_buffer__poll(pb, PERF_POLL_TIMEOUT_MS)) < 0) {
1: +      printf("error polling perf buffer: %d\n", err);
1: +      break;
1: +    }
1: +  }
1:  
1:  cleanup:
1: -	perf_buffer__free(pb);
1: -	drsnoop_bpf__destroy(obj);
1: -	ksyms__free(ksyms);
1: +  perf_buffer__free(pb);
1: +  drsnoop_bpf__destroy(obj);
1: +  ksyms__free(ksyms);
1:  
1: -	return err != 0;
1: +  return err != 0;
1:  }
1: diff --git a/libbpf-tools/drsnoop.h b/libbpf-tools/drsnoop.h
1: index bdd5b7d5..ff30c7cd 100644
1: --- a/libbpf-tools/drsnoop.h
1: +++ b/libbpf-tools/drsnoop.h
1: @@ -5,11 +5,11 @@
1:  #define TASK_COMM_LEN 16
1:  
1:  struct event {
1: -	char task[TASK_COMM_LEN];
1: -	__u64 delta_ns;
1: -	__u64 nr_reclaimed;
1: -	__u64 nr_free_pages;
1: -	pid_t pid;
1: +  char task[TASK_COMM_LEN];
1: +  __u64 delta_ns;
1: +  __u64 nr_reclaimed;
1: +  __u64 nr_free_pages;
1: +  pid_t pid;
1:  };
1:  
1:  #endif /* __DRSNOOP_H */
1: diff --git a/libbpf-tools/trace_helpers.c b/libbpf-tools/trace_helpers.c
1: index 46cff337..b0a5c905 100644
1: --- a/libbpf-tools/trace_helpers.c
1: +++ b/libbpf-tools/trace_helpers.c
1: @@ -1,166 +1,158 @@
1:  /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
1: +#include "trace_helpers.h"
1: +#include <stdbool.h>
1:  #include <stdio.h>
1:  #include <stdlib.h>
1:  #include <string.h>
1: -#include <stdbool.h>
1: -#include "trace_helpers.h"
1:  
1:  #define MAX_SYMS 300000
1:  
1:  static int ksyms__insert_symbol(struct ksyms *ksyms, long addr,
1: -				const char *name)
1: -{
1: -	struct ksym *ksym = &ksyms->syms[ksyms->syms_cnt++];
1: -	size_t len = strlen(name) + 1;
1: -
1: -	ksym->name = malloc(len);
1: -	if (!ksym->name)
1: -		return -1;
1: -
1: -	memcpy((void*)ksym->name, name, len);
1: -	ksym->addr = addr;
1: -	return 0;
1: +                                const char *name) {
1: +  struct ksym *ksym = &ksyms->syms[ksyms->syms_cnt++];
1: +  size_t len = strlen(name) + 1;
1: +
1: +  ksym->name = malloc(len);
1: +  if (!ksym->name)
1: +    return -1;
1: +
1: +  memcpy((void *)ksym->name, name, len);
1: +  ksym->addr = addr;
1: +  return 0;
1:  }
1:  
1: -static struct ksyms *ksyms__new(void)
1: -{
1: -	struct ksyms *ksyms = malloc(sizeof(*ksyms));
1: +static struct ksyms *ksyms__new(void) {
1: +  struct ksyms *ksyms = malloc(sizeof(*ksyms));
1:  
1: -	if (!ksyms)
1: -		return NULL;
1: +  if (!ksyms)
1: +    return NULL;
1:  
1: -	ksyms->syms_cnt = 0;
1: -	ksyms->syms = malloc(MAX_SYMS * sizeof(struct ksym));
1: -	if (!ksyms->syms)
1: -		return NULL;
1: -	return ksyms;
1: +  ksyms->syms_cnt = 0;
1: +  ksyms->syms = malloc(MAX_SYMS * sizeof(struct ksym));
1: +  if (!ksyms->syms)
1: +    return NULL;
1: +  return ksyms;
1:  }
1:  
1: -static int ksym_cmp(const void *p1, const void *p2)
1: -{
1: -	long cmp = ((struct ksym *)p1)->addr - ((struct ksym *)p2)->addr;
1: +static int ksym_cmp(const void *p1, const void *p2) {
1: +  long cmp = ((struct ksym *)p1)->addr - ((struct ksym *)p2)->addr;
1:  
1: -	if (cmp < 0)
1: -		return -1;
1: -	else if (cmp > 0)
1: -		return 1;
1: -	else
1: -		return 0;
1: +  if (cmp < 0)
1: +    return -1;
1: +  else if (cmp > 0)
1: +    return 1;
1: +  else
1: +    return 0;
1:  }
1:  
1: -static int hex2long(const char *ptr, long *long_val)
1: -{
1: -	char *p;
1: +static int hex2long(const char *ptr, long *long_val) {
1: +  char *p;
1:  
1: -	*long_val = strtoul(ptr, &p, 16);
1: -	return p - ptr;
1: +  *long_val = strtoul(ptr, &p, 16);
1: +  return p - ptr;
1:  }
1:  
1: -struct ksyms *ksyms__load(void)
1: -{
1: -	FILE *f = fopen("/proc/kallsyms", "r");
1: -	const char *symbol_name;
1: -	struct ksyms *ksyms;
1: -	char *line = NULL;
1: -	long symbol_addr;
1: -	int line_len;
1: -	int parsed;
1: -	size_t n;
1: -	int err;
1: +struct ksyms *ksyms__load(void) {
1: +  FILE *f = fopen("/proc/kallsyms", "r");
1: +  const char *symbol_name;
1: +  struct ksyms *ksyms;
1: +  char *line = NULL;
1: +  long symbol_addr;
1: +  int line_len;
1: +  int parsed;
1: +  size_t n;
1: +  int err;
1:  
1: -	if (!f)
1: -		return NULL;
1: +  if (!f)
1: +    return NULL;
1:  
1: -	ksyms = ksyms__new();
1: -	if (!ksyms)
1: -		goto cleanup;
1: +  ksyms = ksyms__new();
1: +  if (!ksyms)
1: +    goto cleanup;
1:  
1: -	while (!feof(f)) {
1: -		line_len = getline(&line, &n, f);
1: -		if (line_len < 0 || !line)
1: -			break;
1: +  while (!feof(f)) {
1: +    line_len = getline(&line, &n, f);
1: +    if (line_len < 0 || !line)
1: +      break;
1:  
1: -		line[--line_len] = '\0'; /* \n */
1: +    line[--line_len] = '\0'; /* \n */
1:  
1: -		parsed = hex2long(line, &symbol_addr);
1: +    parsed = hex2long(line, &symbol_addr);
1:  
1: -		/* Skip the line if we failed to parse the address. */
1: -		if (!parsed)
1: -			continue;
1: +    /* Skip the line if we failed to parse the address. */
1: +    if (!parsed)
1: +      continue;
1:  
1: -		parsed++;
1: -		if (parsed + 2 >= line_len)
1: -			continue;
1: +    parsed++;
1: +    if (parsed + 2 >= line_len)
1: +      continue;
1:  
1: -		parsed += 2;	/* ignore symbol type */
1: -		symbol_name = line + parsed;
1: -		parsed = line_len - parsed;
1: +    parsed += 2; /* ignore symbol type */
1: +    symbol_name = line + parsed;
1: +    parsed = line_len - parsed;
1:  
1: -		err = ksyms__insert_symbol(ksyms, symbol_addr, symbol_name);
1: -		if (err)
1: -			goto cleanup;
1: -	}
1: +    err = ksyms__insert_symbol(ksyms, symbol_addr, symbol_name);
1: +    if (err)
1: +      goto cleanup;
1: +  }
1:  
1: -	qsort(ksyms->syms, ksyms->syms_cnt, sizeof(struct ksym), ksym_cmp);
1: -	return ksyms;
1: +  qsort(ksyms->syms, ksyms->syms_cnt, sizeof(struct ksym), ksym_cmp);
1: +  return ksyms;
1:  
1:  cleanup:
1: -	free(line);
1: -	fclose(f);
1: -	return NULL;
1: +  free(line);
1: +  fclose(f);
1: +  return NULL;
1:  }
1:  
1: -void ksyms__free(struct ksyms *ksyms)
1: -{
1: -	int i;
1: +void ksyms__free(struct ksyms *ksyms) {
1: +  int i;
1:  
1: -	if (!ksyms)
1: -		return;
1: +  if (!ksyms)
1: +    return;
1:  
1: -	for (i = 0; i < ksyms->syms_cnt; i++) {
1: -		free((void*)ksyms->syms[i].name);
1: -	}
1: -	free(ksyms);
1: +  for (i = 0; i < ksyms->syms_cnt; i++) {
1: +    free((void *)ksyms->syms[i].name);
1: +  }
1: +  free(ksyms);
1:  }
1:  
1: -const struct ksym *ksyms__map_addr(const struct ksyms *ksyms, long addr)
1: -{
1: -	int start = 0, end = ksyms->syms_cnt;
1: -	long result;
1: -
1: -	/* kallsyms not loaded. return NULL */
1: -	if (ksyms->syms_cnt == 0)
1: -		return NULL;
1: -
1: -	while (start < end) {
1: -		size_t mid = start + (end - start) / 2;
1: -
1: -		result = addr - ksyms->syms[mid].addr;
1: -		if (result < 0)
1: -			end = mid;
1: -		else if (result > 0)
1: -			start = mid + 1;
1: -		else
1: -			return &ksyms->syms[mid];
1: -	}
1: -
1: -	if (start >= 1 && ksyms->syms[start - 1].addr < addr &&
1: -	    addr < ksyms->syms[start].addr)
1: -		/* valid ksym */
1: -		return &ksyms->syms[start - 1];
1: -
1: -	return NULL;
1: +const struct ksym *ksyms__map_addr(const struct ksyms *ksyms, long addr) {
1: +  int start = 0, end = ksyms->syms_cnt;
1: +  long result;
1: +
1: +  /* kallsyms not loaded. return NULL */
1: +  if (ksyms->syms_cnt == 0)
1: +    return NULL;
1: +
1: +  while (start < end) {
1: +    size_t mid = start + (end - start) / 2;
1: +
1: +    result = addr - ksyms->syms[mid].addr;
1: +    if (result < 0)
1: +      end = mid;
1: +    else if (result > 0)
1: +      start = mid + 1;
1: +    else
1: +      return &ksyms->syms[mid];
1: +  }
1: +
1: +  if (start >= 1 && ksyms->syms[start - 1].addr < addr &&
1: +      addr < ksyms->syms[start].addr)
1: +    /* valid ksym */
1: +    return &ksyms->syms[start - 1];
1: +
1: +  return NULL;
1:  }
1:  
1:  const struct ksym *ksyms__get_symbol(const struct ksyms *ksyms,
1: -				     const char *name)
1: -{
1: -	int i;
1: +                                     const char *name) {
1: +  int i;
1:  
1: -	for (i = 0; i < ksyms->syms_cnt; i++) {
1: -		if (strcmp(ksyms->syms[i].name, name) == 0)
1: -			return &ksyms->syms[i];
1: -	}
1: +  for (i = 0; i < ksyms->syms_cnt; i++) {
1: +    if (strcmp(ksyms->syms[i].name, name) == 0)
1: +      return &ksyms->syms[i];
1: +  }
1:  
1: -	return NULL;
1: +  return NULL;
1:  }
1: diff --git a/libbpf-tools/trace_helpers.h b/libbpf-tools/trace_helpers.h
1: index d2c06d7d..7b16a255 100644
1: --- a/libbpf-tools/trace_helpers.h
1: +++ b/libbpf-tools/trace_helpers.h
1: @@ -3,19 +3,19 @@
1:  #define __TRACE_HELPERS_H
1:  
1:  struct ksym {
1: -	long addr;
1: -	const char *name;
1: +  long addr;
1: +  const char *name;
1:  };
1:  
1:  struct ksyms {
1: -	struct ksym *syms;
1: -	int syms_cnt;
1: +  struct ksym *syms;
1: +  int syms_cnt;
1:  };
1:  
1:  struct ksyms *ksyms__load(void);
1:  void ksyms__free(struct ksyms *ksyms);
1:  const struct ksym *ksyms__map_addr(const struct ksyms *ksyms, long addr);
1:  const struct ksym *ksyms__get_symbol(const struct ksyms *ksyms,
1: -				     const char *name);
1: +                                     const char *name);
1:  
1:  #endif /* __TRACE_HELPERS_H */
1: Ignoring changes in the following files (wrong extension):
1:     libbpf-tools/drsnoop_example.txt
1:     libbpf-tools/Makefile
1:     tools/drsnoop.py
1:     man/man8/drsnoop.8
1:     man/man8/compactsnoop.8
1:     snap/snapcraft.yaml
1: Running clang-format on the following files:
1:     libbpf-tools/drsnoop.bpf.c
1:     libbpf-tools/drsnoop.h
1:     libbpf-tools/trace_helpers.h
1:     libbpf-tools/trace_helpers.c
1:     libbpf-tools/drsnoop.c
1: old tree: 39db452785f9072f0d11eb9505a3fa060097bde9
1: new tree: 808c08c494ec0f6aa9fc289bdc2a91c2f7dc8fbd
 1/40 Test  #1: style-check ......................   Passed    2.30 sec
test 2
      Start  2: c_test_static

2: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "c_test_static" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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 -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/linux-headers-4.13.0-38-generic/main.c -nostdsysteminc -nobuiltininc -resource-dir ../lib/clang/3.8.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/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/cc -D __BPF_TRACING__ -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/linux-headers-4.13.0-38-generic -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.0-38-generic/build
 2/40 Test  #2: c_test_static ....................   Passed    1.82 sec
test 3
      Start  3: test_libbcc

3: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "c_test_all" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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:105: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:102: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:97:4: note: expanded from macro '\
3: BPF_F_TABLE'
3: }; \
3:    ^
3: 1 error generated.
3: Parse error:
3:     4@i%ra+1r
3: -------^
3: unshare: failed to execute ruby: No such file or directory
3: 
3: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3: test_libbcc is a Catch v1.4.0 host application.
3: Run with -? for options
3: 
3: -------------------------------------------------------------------------------
3: test probing running Ruby process in namespaces
3:   in separate mount namespace
3: -------------------------------------------------------------------------------
3: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/cc/test_usdt_probes.cc:316
3: ...............................................................................
3: 
3: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/cc/test_usdt_probes.cc:331: FAILED:
3:   REQUIRE( res.msg() == "" )
3: with expansion:
3:   "Unable to load USDT ruby:gc__mark__begin from binary  PID 6831 for probe
3:   on_event"
3:   ==
3:   ""
3: 
3: unshare: unrecognized option '--kill-child'
3: Try 'unshare --help' for more information.
3: -------------------------------------------------------------------------------
3: test probing running Ruby process in namespaces
3:   in separate mount namespace and separate PID namespace
3: -------------------------------------------------------------------------------
3: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/cc/test_usdt_probes.cc:316
3: ...............................................................................
3: 
3: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/cc/test_usdt_probes.cc:357: FAILED:
3:   REQUIRE( res.msg() == "" )
3: with expansion:
3:   "Unable to load USDT ruby:gc__mark__begin from binary  PID 54 for probe
3:   on_event"
3:   ==
3:   ""
3: 
3: ===============================================================================
3: test cases:  37 |  36 passed | 1 failed as expected
3: assertions: 616 | 614 passed | 2 failed as expected
3: 
 3/40 Test  #3: test_libbcc ......................   Passed   11.35 sec
test 4
      Start  4: py_test_stat1_b

4: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_stat1_b" "namespace" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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 2ms
4: rtt min/avg/max/mdev = 0.005/0.007/0.067/0.007 ms, ipg/ewma 0.030/0.008 ms
4: .
4: ----------------------------------------------------------------------
4: Ran 2 tests in 0.316s
4: 
4: OK
 4/40 Test  #4: py_test_stat1_b ..................   Passed    1.58 sec
test 5
      Start  5: py_test_bpf_log

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

6: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_stat1_c" "namespace" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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: .PING 172.16.1.1 (172.16.1.1) 56(84) bytes of data.
6: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 
6: --- 172.16.1.1 ping statistics ---
6: 100 packets transmitted, 100 received, 0% packet loss, time 2ms
6: rtt min/avg/max/mdev = 0.006/0.008/0.056/0.005 ms, ipg/ewma 0.020/0.007 ms
6: .
6: ----------------------------------------------------------------------
6: Ran 2 tests in 0.277s
6: 
6: OK
 6/40 Test  #6: py_test_stat1_c ..................   Passed    0.69 sec
test 7
      Start  7: py_test_xlate1_c

7: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_xlate1_c" "namespace" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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: PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
7: 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.060 ms
7: 
7: --- 192.168.1.1 ping statistics ---
7: 1 packets transmitted, 1 received, 0% packet loss, time 0ms
7: rtt min/avg/max/mdev = 0.060/0.060/0.060/0.000 ms
7: .
7: ----------------------------------------------------------------------
7: Ran 1 test in 0.263s
7: 
7: OK
 7/40 Test  #7: py_test_xlate1_c .................   Passed    0.98 sec
test 8
      Start  8: py_test_call1

8: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_call1_c" "namespace" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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: .
8: ----------------------------------------------------------------------
8: Ran 1 test in 0.177s
8: 
8: OK
 8/40 Test  #8: py_test_call1 ....................   Passed    0.91 sec
test 9
      Start  9: py_test_trace1

9: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_trace1" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_trace1.py" "test_trace1.b" "kprobe.b"
9: Test timeout computed to be: 9.99988e+06
9: .
9: ----------------------------------------------------------------------
9: Ran 1 test in 0.257s
9: 
9: OK
9: ('fd 8:', 'stat1 0', 'stat2 1')
9: ('fd ffff904c12ad2e00:', 'stat1 2', 'stat2 0')
9: ('fd a:', 'stat1 200', 'stat2 100')
9: ('fd 9:', 'stat1 1', 'stat2 1')
 9/40 Test  #9: py_test_trace1 ...................   Passed    0.46 sec
test 10
      Start 10: py_test_trace2

10: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_trace2" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_trace2.py"
10: Test timeout computed to be: 9.99988e+06
10: .
10: ----------------------------------------------------------------------
10: Ran 1 test in 5.409s
10: 
10: OK
10: ('ptr ffffffff88812480:', 'stat1 (0 105)')
10: ('ptr ffff904c15d5c5c0:', 'stat1 (0 10)')
10: ('ptr ffff904c16a21740:', 'stat1 (0 1)')
10: ('ptr ffff904c16a20000:', 'stat1 (0 1)')
10: ('ptr ffff904c075d0000:', 'stat1 (0 5)')
10: ('ptr ffff904c15855d00:', 'stat1 (0 2)')
10: ('ptr ffff904c12f65d00:', 'stat1 (0 1)')
10: ('ptr ffff904c1457ae80:', 'stat1 (0 1)')
10: ('ptr ffff904c075d45c0:', 'stat1 (0 20)')
10: ('ptr ffff904c1319c5c0:', 'stat1 (0 1)')
10: ('ptr ffff904c075c8000:', 'stat1 (0 3)')
10: ('ptr ffff904c12f90000:', 'stat1 (0 1)')
10: ('ptr ffff904c16a05d00:', 'stat1 (0 3)')
10: ('ptr ffff904c075d5d00:', 'stat1 (0 101)')
10: ('ptr ffff904c16a25d00:', 'stat1 (0 44)')
10: ('ptr ffff904c16a4c5c0:', 'stat1 (0 1)')
10/40 Test #10: py_test_trace2 ...................   Passed    5.51 sec
test 11
      Start 11: py_test_trace3_c

11: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_trace3_c" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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.00425583 s, 986 MB/s
11: 1024+0 records in
11: 1024+0 records out
11: 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.00461016 s, 910 MB/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 0')
11: ('latency 45:', 'count 0')
11: ('latency 46:', 'count 0')
11: ('latency 47:', 'count 0')
11: ('latency 48:', 'count 0')
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 0')
11: ('latency 57:', 'count 0')
11: ('latency 58:', 'count 0')
11: ('latency 59:', 'count 0')
11: ('latency 60:', 'count 0')
11: ('latency 61:', 'count 0')
11: ('latency 62:', 'count 0')
11: ('latency 63:', 'count 0')
11: ('latency 64:', 'count 0')
11: ('latency 65:', 'count 0')
11: ('latency 66:', 'count 0')
11: ('latency 67:', 'count 0')
11: ('latency 68:', 'count 0')
11: ('latency 69:', 'count 0')
11: ('latency 70:', 'count 0')
11: ('latency 71:', 'count 0')
11: ('latency 72:', 'count 0')
11: ('latency 73:', 'count 0')
11: ('latency 74:', 'count 0')
11: ('latency 75:', 'count 0')
11: ('latency 76:', 'count 0')
11: ('latency 77:', 'count 0')
11: ('latency 78:', 'count 0')
11: ('latency 79:', 'count 0')
11: ('latency 80:', 'count 0')
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.316s
11: 
11: OK
11/40 Test #11: py_test_trace3_c .................   Passed    2.54 sec
test 12
      Start 12: py_test_trace4

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

13: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_trace_maxactive" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_trace_maxactive.py"
13: Test timeout computed to be: 9.99988e+06
13: .
13: ----------------------------------------------------------------------
13: Ran 1 test in 0.841s
13: 
13: OK
13/40 Test #13: py_test_trace_maxactive ..........   Passed    0.99 sec
test 14
      Start 14: py_test_probe_count

14: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_probe_count" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_probe_count.py"
14: Test timeout computed to be: 9.99988e+06
14: ...cannot attach kprobe, probe entry may not exist
14: ...
14: ----------------------------------------------------------------------
14: Ran 6 tests in 4.745s
14: 
14: OK
14/40 Test #14: py_test_probe_count ..............   Passed    4.80 sec
test 15
      Start 15: py_test_debuginfo

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

16: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_brb_c" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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
16: 42 bytes from 3e:39:2d:ad:30:57 (100.1.1.254): index=0 time=8.060 usec
16: 
16: --- 100.1.1.254 statistics ---
16: 1 packets transmitted, 1 packets received,   0% unanswered (0 extra)
16: rtt min/avg/max/std-dev = 0.008/0.008/0.008/0.000 ms
16: ARPING 200.1.1.254
16: 42 bytes from c2:72:35:b1:78:25 (200.1.1.254): index=0 time=8.723 usec
16: 
16: --- 200.1.1.254 statistics ---
16: 1 packets transmitted, 1 packets received,   0% unanswered (0 extra)
16: rtt min/avg/max/std-dev = 0.009/0.009/0.009/0.000 ms
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.135 ms
16: 64 bytes from 200.1.1.1: icmp_seq=2 ttl=63 time=0.073 ms
16: 
16: --- 200.1.1.1 ping statistics ---
16: 2 packets transmitted, 2 received, 0% packet loss, time 1015ms
16: rtt min/avg/max/mdev = 0.073/0.104/0.135/0.031 ms
16: [ ID] Interval       Transfer     Bandwidth
16: [  7]  0.0- 1.0 sec  3.42 GBytes  29.4 Gbits/sec
16: [ ID] Interval       Transfer     Bandwidth
16: [ 10]  0.0- 1.0 sec  3.42 GBytes  29.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 : demo
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     34814.01   
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 : demo : 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     23490.63   
16: 16384  87380 
16: .
16: ----------------------------------------------------------------------
16: Ran 1 test in 9.713s
16: 
16: OK
16/40 Test #16: py_test_brb ......................   Passed    9.85 sec
test 17
      Start 17: py_test_brb2

17: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_brb2_c" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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.194 ms
17: 64 bytes from 200.1.1.1: icmp_seq=2 ttl=63 time=0.086 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.086/0.140/0.194/0.054 ms
17: [ ID] Interval       Transfer     Bandwidth
17: [  7]  0.0- 1.0 sec  3.02 GBytes  25.9 Gbits/sec
17: [ ID] Interval       Transfer     Bandwidth
17: [ 10]  0.0- 1.0 sec  3.02 GBytes  25.7 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 : demo
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     32761.31   
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 : demo : 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     22333.17   
17: 16384  87380 
17: .
17: ----------------------------------------------------------------------
17: Ran 1 test in 7.652s
17: 
17: OK
17/40 Test #17: py_test_brb2 .....................   Passed    7.80 sec
test 18
      Start 18: py_test_clang

18: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_clang" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_clang.py"
18: Test timeout computed to be: 9.99988e+06
18: .............In file included from /virtual/main.c:3:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/sock.h:58:
18: 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: 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: 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: 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: 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:2:1: error: field has incomplete type 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18: ^
18: /virtual/include/bcc/helpers.h:183: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:183: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: ../virtual/main.c:6:12: error: cannot call non-static helper function
18:     return bar();
18:            ^
18: 1 error generated.
18: ......In file included from /virtual/main.c:3:
18: In file included from include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/tcp.h:24:
18: In file included from include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/tcp.h:24:
18: In file included from include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/inet_sock.h:27:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/tcp.h:24:
18: In file included from include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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 include/net/tcp.h:24:
18: In file included from include/linux/tcp.h:23:
18: In file included from include/net/sock.h:58:
18: 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: 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: 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: 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: 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:1:30: error: expected expression
18: int failure(void *ctx) { if (); return 0; }
18:                              ^
18: 1 error generated.
18: ../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: ....
18: ----------------------------------------------------------------------
18: Ran 81 tests in 64.225s
18: 
18: OK
18: 0
18/40 Test #18: py_test_clang ....................   Passed   64.70 sec
test 19
      Start 19: py_test_histogram

19: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_histogram" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_histogram.py"
19: Test timeout computed to be: 9.99988e+06
19: 
19: Bucket ptr = 'python'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 100      |****************************************|
19: 
19: Bucket ptr = 'RemoteInvocatio'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 5        |****************************************|
19: 
19: Bucket ptr = 'kworker/u4:1'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 1        |****************************************|
19: 
19: Bucket ptr = 'rcu_sched'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 3        |****************************************|
19: 
19: Bucket ptr = 'iscsid'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 1        |****************************************|
19: 
19: Bucket ptr = 'ctest'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 10       |****************************************|
19: 
19: Bucket ptr = 'VM Periodic Tas'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 20       |****************************************|
19: 
19: Bucket ptr = 'VM Thread'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 1        |****************************************|
19: 
19: Bucket ptr = 'swapper/0'
19:      value               : count     distribution
19:          0 -> 1          : 3        |******                                  |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 1        |**                                      |
19:    4194304 -> 8388607    : 1        |**                                      |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 10       |********************                    |
19:   33554432 -> 67108863   : 9        |******************                      |
19:   67108864 -> 134217727  : 0        |                                        |
19:  134217728 -> 268435455  : 20       |****************************************|
19:  268435456 -> 536870911  : 1        |**                                      |
19: 
19: Bucket ptr = 'G1 Young RemSet'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 3        |****************************************|
19: 
19: Bucket ptr = 'ntpd'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 1        |****************************************|
19: 
19: Bucket ptr = 'swapper/1'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |....
19: ----------------------------------------------------------------------
19: Ran 4 tests in 3.168s
19: 
19: OK
19:                                         |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 100      |****************************************|
19: 
19: k_1 & k_2 =  16 0
19:      size                : count     distribution
19:          8 -> 15         : 1        |****************************************|
19: 
19: k_1 & k_2 = 112 0
19:      size                : count     distribution
19:          8 -> 15         : 1        |********************                    |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 2        |****************************************|
19/40 Test #19: py_test_histogram ................   Passed    3.23 sec
test 20
      Start 20: py_array

20: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_array" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_array.py"
20: Test timeout computed to be: 9.99988e+06
20: ....
20: ----------------------------------------------------------------------
20: Ran 4 tests in 1.040s
20: 
20: OK
20/40 Test #20: py_array .........................   Passed    1.10 sec
test 21
      Start 21: py_uprobes

21: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_uprobes" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_uprobes.py"
21: Test timeout computed to be: 9.99988e+06
21: .Python 2.7.14
21: .Arena 0:
21: system bytes     =   20283392
21: in use bytes     =    3146560
21: Total (incl. mmap):
21: system bytes     =   21073920
21: in use bytes     =    3937088
21: max mmap regions =          7
21: max mmap bytes   =    2781184
21: .
21: ----------------------------------------------------------------------
21: Ran 3 tests in 6.429s
21: 
21: OK
21/40 Test #21: py_uprobes .......................   Passed    6.48 sec
test 22
      Start 22: py_test_stackid

22: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_stackid" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_stackid.py"
22: Test timeout computed to be: 9.99988e+06
22: s.
22: ----------------------------------------------------------------------
22: Ran 2 tests in 0.247s
22: 
22: OK (skipped=1)
22/40 Test #22: py_test_stackid ..................   Passed    0.41 sec
test 23
      Start 23: py_test_tracepoint

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

24: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_perf_event" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_perf_event.py"
24: Test timeout computed to be: 9.99988e+06
24: perf_event_open: No such file or directory
24: s
24: ----------------------------------------------------------------------
24: Ran 1 test in 0.238s
24: 
24: OK (skipped=1)
24/40 Test #24: py_test_perf_event ...............   Passed    0.38 sec
test 25
      Start 25: py_test_utils

25: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_utils" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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.05 sec
test 26
      Start 26: py_test_percpu

26: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_percpu" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_percpu.py"
26: Test timeout computed to be: 9.99988e+06
26: ....
26: ----------------------------------------------------------------------
26: Ran 4 tests in 2.094s
26: 
26: OK
26/40 Test #26: py_test_percpu ...................   Passed    2.15 sec
test 27
      Start 27: py_test_dump_func

27: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_dump_func" "simple" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_dump_func.py"
27: Test timeout computed to be: 9.99988e+06
27: .
27: ----------------------------------------------------------------------
27: Ran 1 test in 0.113s
27: 
27: OK
27/40 Test #27: py_test_dump_func ................   Passed    0.16 sec
test 28
      Start 28: py_test_disassembler

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

29: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_tools_smoke" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/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/lib/python2.7/site.py", line 366, in __call__
29:     raise SystemExit(code)
29: SystemExit: None
29: ..In file included from /virtual/main.c:5:
29: In file included from include/net/sock.h:58:
29: 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: 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: 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: 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: 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: ...'unknown': I need something more specific.
29: .'unknown': I need something more specific.
29: 'unknown': I need something more specific.
29: 'unknown': I need something more specific.
29: 'unknown': I need something more specific.
29: .......s.............'unknown': I need something more specific.
29: ......Killed
29: .s..........libbpf: failed to find valid kernel BTF
29: libbpf: vmlinux BTF is not found
29: ......'unknown': I need something more specific.
29: .In file included from /virtual/main.c:6:
29: In file included from include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/linux/tcp.h:23:
29: In file included from include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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 include/net/sock.h:58:
29: 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: 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: 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: 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: 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: 'unknown': I need something more specific.
29: ...'unknown': I need something more specific.
29: .....'unknown': I need something more specific.
29: ...libbpf: failed to find valid kernel BTF
29: libbpf: vmlinux BTF is not found
29: ......
29: ----------------------------------------------------------------------
29: Ran 83 tests in 272.118s
29: 
29: OK (skipped=2)
29/40 Test #29: py_test_tools_smoke ..............   Passed  272.23 sec
test 30
      Start 30: py_test_tools_memleak

30: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_tools_memleak" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_tools_memleak.py"
30: Test timeout computed to be: 9.99988e+06
30: cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .cannot attach uprobe, Device or resource busy
30: .
30: ----------------------------------------------------------------------
30: Ran 8 tests in 22.840s
30: 
30: OK
30/40 Test #30: py_test_tools_memleak ............   Passed   22.88 sec
test 31
      Start 31: py_test_usdt

31: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_usdt" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_usdt.py"
31: Test timeout computed to be: 9.99988e+06
31: <stdin>: In function ‘main’:
31: <stdin>:23:17: warning: null character(s) preserved in literal
31: <stdin>:25:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint64_t {aka long unsigned int}’ [-Wformat=]
31: <stdin>:28:17: warning: null character(s) preserved in literal
31: <stdin>:30:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint64_t {aka long unsigned int}’ [-Wformat=]
31: clang -cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -emit-llvm-uselists -disable-free -disable-llvm-verifier -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/linux-headers-4.13.0-38-generic/main.c -nostdsysteminc -nobuiltininc -resource-dir ../lib/clang/3.8.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/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python -D __BPF_TRACING__ -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/linux-headers-4.13.0-38-generic -ferror-limit 19 -fmessage-length 0 -fobjc-runtime=gcc -fdiagnostics-show-option -vectorize-loops -vectorize-slp -o main.bc -x c /virtual/main.c
31: #if defined(BPF_LICENSE)
31: #error BPF_LICENSE cannot be specified through cflags
31: #endif
31: #if !defined(CONFIG_CC_STACKPROTECTOR)
31: #if defined(CONFIG_CC_STACKPROTECTOR_AUTO) \
31:     || defined(CONFIG_CC_STACKPROTECTOR_REGULAR) \
31:     || defined(CONFIG_CC_STACKPROTECTOR_STRONG)
31: #define CONFIG_CC_STACKPROTECTOR
31: #endif
31: #endif
31: #include <uapi/linux/ptrace.h>
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace1_1(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int8_t)) return -1;
31:   switch(PT_REGS_IP(ctx)) {
31:   case 0x56299519e80bULL: *((int8_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory"); return 0;
31:   case 0x56299519e811ULL: *((int8_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory"); return 0;
31:   }
31:   return -1;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace1_2(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int32_t)) return -1;
31:   switch(PT_REGS_IP(ctx)) {
31:   case 0x56299519e80bULL: { u64 __addr = ctx->bp + -204; __asm__ __volatile__("": : :"memory"); int32_t __res = 0x0; bpf_probe_read(&__res, sizeof(__res), (void *)__addr); *((int32_t *)dest) = __res; } return 0;
31:   case 0x56299519e811ULL: { u64 __addr = ctx->bp + -208; __asm__ __volatile__("": : :"memory"); int32_t __res = 0x0; bpf_probe_read(&__res, sizeof(__res), (void *)__addr); *((int32_t *)dest) = __res; } return 0;
31:   }
31:   return -1;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace3_1(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int32_t)) return -1;
31:   switch(PT_REGS_IP(ctx)) {
31:   case 0x56299519e80cULL: { u64 __addr = ctx->bp + -208; __asm__ __volatile__("": : :"memory"); int32_t __res = 0x0; bpf_probe_read(&__res, sizeof(__res), (void *)__addr); *((int32_t *)dest) = __res; } return 0;
31:   case 0x56299519e81fULL: *((int32_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory"); return 0;
31:   }
31:   return -1;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace3_2(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int32_t)) return -1;
31:   switch(PT_REGS_IP(ctx)) {
31:   case 0x56299519e80cULL: { u64 __addr = ctx->bp + -204; __asm__ __volatile__("": : :"memory"); int32_t __res = 0x0; bpf_probe_read(&__res, sizeof(__res), (void *)__addr); *((int32_t *)dest) = __res; } return 0;
31:   case 0x56299519e81fULL: *((int32_t *)dest) = ctx->dx; __asm__ __volatile__("": : :"memory"); return 0;
31:   }
31:   return -1;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace2_1(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int32_t)) return -1;
31:   *((int32_t *)dest) = 5;
31:   return 0;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace2_2(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int8_t)) return -1;
31:   *((int8_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory");
31:   return 0;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace4_1(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int64_t)) return -1;
31:   *((int64_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory");
31:   return 0;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace4_2(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int64_t)) return -1;
31:   *((int64_t *)dest) = ctx->dx; __asm__ __volatile__("": : :"memory");
31:   return 0;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace5_1(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int64_t)) return -1;
31:   *((int64_t *)dest) = ctx->dx; __asm__ __volatile__("": : :"memory");
31:   return 0;
31: }
31: __attribute__((always_inline))
31: static __always_inline int _bpf_readarg_do_trace5_2(struct pt_regs *ctx, void *dest, size_t len) {
31:   if (len != sizeof(int64_t)) return -1;
31:   *((int64_t *)dest) = ctx->ax; __asm__ __volatile__("": : :"memory");
31:   return 0;
31: }
31: 
31: #include <linux/blkdev.h>
31: #include <uapi/linux/ptrace.h>
31: 
31: struct probe_result_t1 {
31:   char v1;
31:   int  v2;
31: };
31: 
31: struct probe_result_t2 {
31:   int  v1;
31:   char v2;
31: };
31: 
31: struct probe_result_t3 {
31:   int v1;
31:   int v2;
31: };
31: 
31: struct probe_result_t4 {
31:   u64  v1;
31:   char v2[8];
31: };
31: 
31: struct probe_result_t5 {
31:   char v1[8];
31:   u64  v2;
31: };
31: 
31: BPF_PERF_OUTPUT(event1);
31: BPF_PERF_OUTPUT(event2);
31: BPF_PERF_OUTPUT(event3);
31: BPF_PERF_OUTPUT(event4);
31: BPF_PERF_OUTPUT(event5);
31: 
31: __attribute__((section(".bpf.fn.do_trace1")))
31: int do_trace1(struct pt_regs *ctx) {
31: 
31:     struct probe_result_t1 result = {};
31:     _bpf_readarg_do_trace1_1(ctx, &result.v1, sizeof(*(&result.v1)));
31:     _bpf_readarg_do_trace1_2(ctx, &result.v2, sizeof(*(&result.v2)));
31:     bpf_perf_event_output(ctx, bpf_pseudo_fd(1, -1), CUR_CPU_IDENTIFIER, &result, sizeof(result));
31:     return 0;
31: };
31: __attribute__((section(".bpf.fn.do_trace2")))
31: int do_trace2(struct pt_regs *ctx) {
31: 
31:     struct probe_result_t2 result = {};
31:     _bpf_readarg_do_trace2_1(ctx, &result.v1, sizeof(*(&result.v1)));
31:     _bpf_readarg_do_trace2_2(ctx, &result.v2, sizeof(*(&result.v2)));
31:     bpf_perf_event_output(ctx, bpf_pseudo_fd(1, -2), CUR_CPU_IDENTIFIER, &result, sizeof(result));
31:     return 0;
31: }
31: __attribute__((section(".bpf.fn.do_trace3")))
31: int do_trace3(struct pt_regs *ctx) {
31: 
31:     struct probe_result_t3 result = {};
31:     _bpf_readarg_do_trace3_1(ctx, &result.v1, sizeof(*(&result.v1)));
31:     _bpf_readarg_do_trace3_2(ctx, &result.v2, sizeof(*(&result.v2)));
31:     bpf_perf_event_output(ctx, bpf_pseudo_fd(1, -3), CUR_CPU_IDENTIFIER, &result, sizeof(result));
31:     return 0;
31: }
31: __attribute__((section(".bpf.fn.do_trace4")))
31: int do_trace4(struct pt_regs *ctx) {
31: 
31:     struct probe_result_t4 result = {};
31:     _bpf_readarg_do_trace4_1(ctx, &result.v1, sizeof(*(&result.v1)));
31:     ({ u64 __addr = 0x0; _bpf_readarg_do_trace4_2(ctx, &__addr, sizeof(__addr));bpf_probe_read(&result.v2, sizeof(result.v2), (void *)__addr);});
31:     bpf_perf_event_output(ctx, bpf_pseudo_fd(1, -4), CUR_CPU_IDENTIFIER, &result, sizeof(result));
31:     return 0;
31: }
31: __attribute__((section(".bpf.fn.do_trace5")))
31: int do_trace5(struct pt_regs *ctx) {
31: 
31:     struct probe_result_t5 result = {};
31:     ({ u64 __addr = 0x0; _bpf_readarg_do_trace5_1(ctx, &__addr, sizeof(__addr));bpf_probe_read(&result.v1, sizeof(result.v1), (void *)__addr);});
31:     _bpf_readarg_do_trace5_2(ctx, &result.v2, sizeof(*(&result.v2)));
31:     bpf_perf_event_output(ctx, bpf_pseudo_fd(1, -5), CUR_CPU_IDENTIFIER, &result, sizeof(result));
31:     return 0;
31: }
31: 
31: #include <bcc/footer.h>
31: .
31: ----------------------------------------------------------------------
31: Ran 1 test in 3.059s
31: 
31: OK
31: Running from kernel directory at: /lib/modules/4.13.0-38-generic/build
31: str4
31: str5
31: str7
31: str6
31/40 Test #31: py_test_usdt .....................   Passed    3.36 sec
test 32
      Start 32: py_test_usdt2

32: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_usdt2" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_usdt2.py"
32: Test timeout computed to be: 9.99988e+06
32: .
32: ----------------------------------------------------------------------
32: Ran 1 test in 1.056s
32: 
32: OK
32/40 Test #32: py_test_usdt2 ....................   Passed    1.25 sec
test 33
      Start 33: py_test_usdt3

33: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_usdt3" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_usdt3.py"
33: Test timeout computed to be: 9.99988e+06
33: test:probe [sema 0x0]
33:   location #1 /proc/7953/root/tmp/tmp5YQnvN/liba.so 0x5d1
33:     argument #1 4 signed   bytes @ *(bp - 4)
33:   location #2 /proc/7953/root/tmp/tmp5YQnvN/libb.so 0x5d1
33:     argument #1 4 signed   bytes @ *(bp - 4)
33:   location #3 /proc/7953/root/tmp/tmp5YQnvN/a.out 0x7b1
33:     argument #1 4 signed   bytes @ *(bp - 4)
33: libc:setjmp [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x36dd1
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ si
33:     argument #3 8 unsigned bytes @ ax
33: libc:longjmp [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x36eb3
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ si
33:     argument #3 8 unsigned bytes @ dx
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x127703
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ si
33:     argument #3 8 unsigned bytes @ dx
33: libc:longjmp_target [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x36ecf
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ ax
33:     argument #3 8 unsigned bytes @ dx
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x12771f
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ ax
33:     argument #3 8 unsigned bytes @ dx
33: libc:memory_mallopt_arena_max [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x87e73
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 32)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91120
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&mp_ + 32)
33: libc:memory_mallopt_arena_test [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x87e83
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 24)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91179
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&mp_ + 24)
33: libc:memory_tunable_tcache_max_bytes [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x87e9b
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 88)
33: libc:memory_tunable_tcache_count [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x87ed3
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 96)
33: libc:memory_tunable_tcache_unsorted_limit [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x87ee3
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 104)
33: libc:memory_mallopt_trim_threshold [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88133
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 0)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x911f0
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&mp_ + 0)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33: libc:memory_mallopt_top_pad [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88153
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 8)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x911d0
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&mp_ + 8)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33: libc:memory_mallopt_mmap_threshold [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8817b
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ *(&mp_ + 16)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x911af
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&mp_ + 16)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33: libc:memory_mallopt_mmap_max [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88193
33:     argument #1 4 signed   bytes @ ax
33:     argument #2 4 signed   bytes @ *(&mp_ + 44)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91188
33:     argument #1 4 signed   bytes @ bx
33:     argument #2 4 signed   bytes @ *(&mp_ + 44)
33:     argument #3 4 signed   bytes @ *(&mp_ + 52)
33: libc:memory_mallopt_perturb [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x881b3
33:     argument #1 4 signed   bytes @ ax
33:     argument #2 4 signed   bytes @ *(&perturb_byte + 0)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91210
33:     argument #1 4 signed   bytes @ bx
33:     argument #2 4 signed   bytes @ *(&perturb_byte + 0)
33: libc:memory_heap_new [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x882d8
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ bp
33: libc:memory_sbrk_less [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x886ee
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 signed   bytes @ r12
33: libc:memory_arena_reuse_free_list [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8880c
33:     argument #1 8 unsigned bytes @ dx
33: libc:memory_arena_reuse_wait [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8893c
33:     argument #1 8 unsigned bytes @ r8
33:     argument #2 8 unsigned bytes @ r8
33:     argument #3 8 unsigned bytes @ bx
33: libc:memory_arena_reuse [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88a6c
33:     argument #1 8 unsigned bytes @ dx
33:     argument #2 8 unsigned bytes @ bx
33: libc:memory_arena_new [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88ce8
33:     argument #1 8 unsigned bytes @ dx
33:     argument #2 8 unsigned bytes @ bp
33: libc:memory_arena_retry [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x88ee9
33:     argument #1 8 unsigned bytes @ si
33:     argument #2 8 unsigned bytes @ di
33: libc:memory_heap_free [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8abf1
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 8 unsigned bytes @ ax
33: libc:memory_heap_less [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8acad
33:     argument #1 8 unsigned bytes @ r15
33:     argument #2 8 unsigned bytes @ r10
33: libc:memory_heap_more [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8b4b5
33:     argument #1 8 unsigned bytes @ r8
33:     argument #2 8 unsigned bytes @ cx
33: libc:memory_sbrk_more [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8b7af
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 signed   bytes @ dx
33: libc:memory_malloc_retry [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8da68
33:     argument #1 8 unsigned bytes @ bp
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8f0b8
33:     argument #1 8 unsigned bytes @ bp
33: libc:memory_mallopt_check_action [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8ee93
33:     argument #1 4 signed   bytes @ ax
33:     argument #2 4 signed   bytes @ *(&check_action + 0)
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91228
33:     argument #1 4 signed   bytes @ bx
33:     argument #2 4 signed   bytes @ *(&check_action + 0)
33: libc:memory_memalign_retry [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8f2e8
33:     argument #1 8 unsigned bytes @ r12
33:     argument #2 8 unsigned bytes @ bx
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8ff18
33:     argument #1 8 unsigned bytes @ r12
33:     argument #2 8 unsigned bytes @ bx
33:   location #3 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x901a0
33:     argument #1 8 unsigned bytes @ r12
33:     argument #2 8 unsigned bytes @ bx
33:   location #4 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x90470
33:     argument #1 8 unsigned bytes @ r12
33:     argument #2 8 unsigned bytes @ bx
33:   location #5 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x91488
33:     argument #1 8 unsigned bytes @ bx
33:     argument #2 8 unsigned bytes @ r12
33: libc:memory_mallopt_free_dyn_thresholds [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8f4b1
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ cx
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x18c3a8
33:     argument #1 8 unsigned bytes @ ax
33:     argument #2 8 unsigned bytes @ di
33: libc:memory_realloc_retry [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8f980
33:     argument #1 8 unsigned bytes @ r12
33:     argument #2 8 unsigned bytes @ bp
33:   location #2 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x8fcf0
33:     argument #1 8 unsigned bytes @ r15
33:     argument #2 8 unsigned bytes @ bx
33: libc:memory_calloc_retry [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x90790
33:     argument #1 8 unsigned bytes @ r12
33: libc:memory_mallopt [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x910c4
33:     argument #1 4 signed   bytes @ bp
33:     argument #2 4 signed   bytes @ bx
33: libc:memory_mallopt_mxfast [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x910f2
33:     argument #1 4 signed   bytes @ bx
33:     argument #2 8 unsigned bytes @ *(&global_max_fast + 0)
33: libc:lll_lock_wait_private [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/libc-2.26.so 0x123154
33:     argument #1 8 unsigned bytes @ di
33: rtld:init_start [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x3a5f
33:     argument #1 4 signed   bytes @ 0
33:     argument #2 8 unsigned bytes @ bx
33: rtld:init_complete [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x41c8
33:     argument #1 4 signed   bytes @ 0
33:     argument #2 8 unsigned bytes @ bx
33: rtld:map_failed [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x5ac6
33:     argument #1 8 signed   bytes @ *(sp + 72)
33:     argument #2 8 unsigned bytes @ bp
33: rtld:map_start [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x6a3a
33:     argument #1 8 signed   bytes @ *(bp + 40)
33:     argument #2 8 unsigned bytes @ bx
33: rtld:map_complete [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x15a17
33:     argument #1 8 signed   bytes @ *(r15 + 40)
33:     argument #2 8 unsigned bytes @ bx
33:     argument #3 8 unsigned bytes @ *(bp - 104)
33: rtld:reloc_complete [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x15be1
33:     argument #1 8 signed   bytes @ *(ax + 40)
33:     argument #2 8 unsigned bytes @ *(bp - 120)
33:     argument #3 8 unsigned bytes @ *(bp - 104)
33: rtld:reloc_start [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x15d96
33:     argument #1 8 signed   bytes @ *(cx + 40)
33:     argument #2 8 unsigned bytes @ *(bp - 120)
33: rtld:unmap_start [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x1698a
33:     argument #1 8 signed   bytes @ r15
33:     argument #2 8 unsigned bytes @ r14
33: rtld:unmap_complete [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x16c11
33:     argument #1 8 signed   bytes @ *(bp - 112)
33:     argument #2 8 unsigned bytes @ bx
33: rtld:setjmp [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x1d5ad
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ si
33:     argument #3 8 unsigned bytes @ ax
33: rtld:longjmp [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x1d5ed
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ si
33:     argument #3 8 unsigned bytes @ dx
33: rtld:longjmp_target [sema 0x0]
33:   location #1 /proc/7953/root/lib/x86_64-linux-gnu/ld-2.26.so 0x1d609
33:     argument #1 8 unsigned bytes @ di
33:     argument #2 4 signed   bytes @ ax
33:     argument #3 8 unsigned bytes @ dx
33: .
33: ----------------------------------------------------------------------
33: Ran 1 test in 1.150s
33: 
33: OK
33: temp directory: /tmp/tmp5YQnvN
33/40 Test #33: py_test_usdt3 ....................   Passed    1.33 sec
test 34
      Start 34: py_test_license

34: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_license" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_license.py"
34: Test timeout computed to be: 9.99988e+06
34: /virtual/main.c:2:2: error: BPF_LICENSE cannot be specified through cflags
34: #error BPF_LICENSE cannot be specified through cflags
34:  ^
34: 1 error generated.
34: x/virtual/main.c:2:2: error: BPF_LICENSE cannot be specified through cflags
34: #error BPF_LICENSE cannot be specified through cflags
34:  ^
34: 1 error generated.
34: x.bpf: Failed to load program: Invalid argument
34: 0: (bf) r6 = r1
34: 1: (85) call bpf_ktime_get_ns#5
34: cannot call GPL only function from proprietary program
34: 
34: x../virtual/main.c:2:2: error: BPF_LICENSE cannot be specified through cflags
34: #error BPF_LICENSE cannot be specified through cflags
34:  ^
34: 1 error generated.
34: xbpf: Failed to load program: Invalid argument
34: 0: (bf) r6 = r1
34: 1: (85) call bpf_ktime_get_ns#5
34: cannot call GPL only function from proprietary program
34: 
34: x..
34: ----------------------------------------------------------------------
34: Ran 10 tests in 1.705s
34: 
34: OK (expected failures=5)
34/40 Test #34: py_test_license ..................   Passed    1.76 sec
test 35
      Start 35: py_test_free_bcc_memory

35: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_free_bcc_memory" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_free_bcc_memory.py"
35: Test timeout computed to be: 9.99988e+06
35: .
35: ----------------------------------------------------------------------
35: Ran 1 test in 0.148s
35: 
35: OK
35: Before freeing llvm memory: RssFile:  34992 kB
35: After  freeing llvm memory: RssFile:  10288 kB
35/40 Test #35: py_test_free_bcc_memory ..........   Passed    0.21 sec
test 36
      Start 36: py_test_rlimit

36: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "py_test_rlimit" "sudo" "/home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/python/test_rlimit.py"
36: Test timeout computed to be: 9.99988e+06
36: could not open bpf map: unused, error: Operation not permitted
36: .
36: ----------------------------------------------------------------------
36: Ran 1 test in 0.224s
36: 
36: OK
36/40 Test #36: py_test_rlimit ...................   Passed    0.28 sec
test 37
      Start 37: lua_test_clang

37: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "lua_test_clang" "sudo" "/usr/bin/luajit" "test_clang.lua"
37: Test timeout computed to be: 9.99988e+06
37: /virtual/main.c:1:30: error: expected expression
37: int failure(void *ctx) { if (); return 0; }
37:                              ^
37: 1 error generated.
37: ....................
37: Ran 20 tests in 9.652 seconds, 20 successes, 0 failures
37: OK
37/40 Test #37: lua_test_clang ...................   Passed    9.68 sec
test 38
      Start 38: lua_test_uprobes

38: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "lua_test_uprobes" "sudo" "/usr/bin/luajit" "test_uprobes.lua"
38: Test timeout computed to be: 9.99988e+06
38: Python 2.7.14
38: Arena 0:
38: system bytes     =   18354176
38: in use bytes     =    1194848
38: Total (incl. mmap):
38: system bytes     =   18354176
38: in use bytes     =    1194848
38: max mmap regions =          6
38: max mmap bytes   =    1990656
38: ..
38: Ran 2 tests in 0.253 seconds, 2 successes, 0 failures
38: OK
38/40 Test #38: lua_test_uprobes .................   Passed    0.39 sec
test 39
      Start 39: lua_test_dump

39: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/build/tests/wrapper.sh "lua_test_dump" "sudo" "/usr/bin/luajit" "test_dump.lua"
39: Test timeout computed to be: 9.99988e+06
39: .
39: Ran 1 tests in 0.106 seconds, 1 successes, 0 failures
39: OK
39/40 Test #39: lua_test_dump ....................   Passed    0.13 sec
test 40
      Start 40: lua_test_standalone

40: Test command: /home/iovisor/jenkins/workspace/bcc-pr/label/ubuntu1710/tests/lua/test_standalone.sh
40: Test timeout computed to be: 9.99988e+06
40: + cd src/lua
40: + [[ ! -x bcc-lua ]]
40: + echo 'bcc-lua not built --- skipping'
40: bcc-lua not built --- skipping
40: + exit 0
40/40 Test #40: lua_test_standalone ..............   Passed    0.00 sec

100% tests passed, 0 tests failed out of 40

Total Test time (real) = 449.89 sec
+ head -n 1 Testing/TAG
+ cp Testing/20200304-1958/Test.xml ./CTestResults.xml
Taking single-use slave ubuntu1710-slave-ae1 offline.
Finished: SUCCESS