Lines Matching defs:xw
555 struct xdomain_request_work *xw = container_of(work, typeof(*xw), work);
556 const struct tb_xdp_header *pkg = xw->pkg;
558 struct tb *tb = xw->tb;
628 kfree(xw->pkg);
629 kfree(xw);
638 struct xdomain_request_work *xw;
640 xw = kmalloc(sizeof(*xw), GFP_KERNEL);
641 if (!xw)
644 INIT_WORK(&xw->work, tb_xdp_handle_request);
645 xw->pkg = kmemdup(hdr, size, GFP_KERNEL);
646 if (!xw->pkg) {
647 kfree(xw);
650 xw->tb = tb_domain_get(tb);
652 schedule_work(&xw->work);