Lines Matching defs:xw
729 struct xdomain_request_work *xw = container_of(work, typeof(*xw), work);
730 const struct tb_xdp_header *pkg = xw->pkg;
732 struct tb *tb = xw->tb;
847 kfree(xw->pkg);
848 kfree(xw);
857 struct xdomain_request_work *xw;
859 xw = kmalloc(sizeof(*xw), GFP_KERNEL);
860 if (!xw)
863 INIT_WORK(&xw->work, tb_xdp_handle_request);
864 xw->pkg = kmemdup(hdr, size, GFP_KERNEL);
865 if (!xw->pkg) {
866 kfree(xw);
869 xw->tb = tb_domain_get(tb);
871 schedule_work(&xw->work);