Przeglądaj źródła

Fixed #TSB-1234 test

ilucky.si 1 rok temu
rodzic
commit
d8cdee8523
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      ebpftracer/ebpf/l7/l7.c

+ 1 - 1
ebpftracer/ebpf/l7/l7.c

@@ -306,7 +306,7 @@ void perf_event_batch_output(void *ctx,  struct l7_event *e) {
     // unsigned char *dst = e_buff->data + e_buff->len;
     for (int i = 0; i < e_length; i++) {   //IK:ERROR: IK: BPF stack limit of 512 bytes is exceeded. Please move large on stack variables into BPF per-cpu array map.
         // *dst++ = *src++;
-        e_buff->data[i] = src[i]
+        e_buff->data[i] = src[i];
     }
 //    int remaining_space = sizeof(e_buff->data) - e_buff->len;
 //    bpf_printk("IK...perf_event_batch_output...remaining_space=%d", remaining_space);