Searched refs:page_link (Results 1 - 9 of 9) sorted by relevance

/linux-master/tools/virtio/linux/
H A Dscatterlist.h8 unsigned long page_link; member in struct:scatterlist
15 #define sg_is_chain(sg) ((sg)->page_link & 0x01)
16 #define sg_is_last(sg) ((sg)->page_link & 0x02)
18 ((struct scatterlist *) ((sg)->page_link & ~0x03))
32 unsigned long page_link = sg->page_link & 0x3; local
42 sg->page_link = page_link | (unsigned long) page;
72 return (struct page *)((sg)->page_link & ~0x3);
104 prv[prv_nents - 1].page_link
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dloop6.c30 unsigned long page_link; member in struct:scatterlist
35 #define sg_is_chain(sg) ((sg)->page_link & SG_CHAIN)
36 #define sg_is_last(sg) ((sg)->page_link & SG_END)
38 ((struct scatterlist *) ((sg)->page_link & ~(SG_CHAIN | SG_END)))
/linux-master/include/linux/
H A Dscatterlist.h12 unsigned long page_link; member in struct:scatterlist
54 * We use the unsigned long page_link field in the scatterlist struct to place
58 * If bit 0 is set, then the page_link contains a pointer to the next sg
79 return sg->page_link & SG_PAGE_LINK_MASK;
84 return (struct scatterlist *)(sg->page_link & ~SG_PAGE_LINK_MASK);
109 unsigned long page_link = sg->page_link & (SG_CHAIN | SG_END); local
119 sg->page_link = page_link | (unsigned long) page;
173 return (struct page *)((sg)->page_link
[all...]
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_dma_buf.c218 if (sgt->sgl->page_link) {
/linux-master/net/ipv4/
H A Dtcp_bpf.c485 msg->sg.data[msg->sg.start].page_link &&
/linux-master/drivers/dma-buf/
H A Ddma-buf.c773 sg->page_link ^= ~0xffUL;
/linux-master/drivers/gpu/drm/i915/
H A Di915_gpu_error.c69 sg->page_link = (unsigned long)virt_to_page(addr);
102 e->cur->page_link =
/linux-master/crypto/
H A Dtestmgr.c717 if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
/linux-master/net/core/
H A Dfilter.c2734 msg->sg.data[move_from].page_link = 0;

Completed in 214 milliseconds