Lines Matching defs:stash
1167 void __libeth_xdp_return_stash(struct libeth_xdp_buff_stash *stash);
1172 * @src: XDP buffer stash placed on the queue
1176 * the previously saved stash or initializes the buffer from scratch.
1194 * @dst: XDP buffer stash placed on the queue
1199 * completed during the next poll. Otherwise, clears the stash.
1211 * libeth_xdp_return_stash - free an XDP buffer stash from a queue
1212 * @stash: stash to free
1215 * buffer stash, this helper should be called to free it.
1217 static inline void libeth_xdp_return_stash(struct libeth_xdp_buff_stash *stash)
1219 if (stash->data)
1220 __libeth_xdp_return_stash(stash);