You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Crash when compiling Linux Kernel Library files: lkl/net/core/dev.c, lkl/net/core/sock_reuseport.c, lkl/drivers/net/virtio_net.c, lkl/net/ipv4/af_inet.c
Added debug msgs show:
Internal error when inlining callee: __dev_xmit_skb into __dev_queue_xmit: VTablePtr not of PointerType
Internal error when inlining callee: __dev_xmit_skb into __dev_queue_xmit: VTablePtr not of PointerType
Internal error when inlining callee: run_bpf into reuseport_select_sock: VTablePtr not of PointerType
Internal error when inlining callee: bpf_prog_run_xdp into receive_mergeable: VTablePtr not of PointerType
Internal error when inlining callee: bpf_prog_run_xdp into receive_small: VTablePtr not of PointerType
Internal error when inlining callee: call_gro_receive into inet_gro_receive: VTablePtr not of PointerType
All creduce to the same or very similar code:
void *a;
void b(void *c) { *(long *)c = a; }
struct d {
int (*e)()
} f(struct d *c) {
c->e();
}
void g() {
struct d *h = ({
typeof(0) *i = ({
union {
typeof(&g) j;
char k[1]
} l;
b(l.k);
l.j;
});
i;
});
f(h);
}
The text was updated successfully, but these errors were encountered:
Crash when compiling Linux Kernel Library files: lkl/net/core/dev.c, lkl/net/core/sock_reuseport.c, lkl/drivers/net/virtio_net.c, lkl/net/ipv4/af_inet.c
Added debug msgs show:
All creduce to the same or very similar code:
The text was updated successfully, but these errors were encountered: