Searched refs:copy_buf (Results 1 - 2 of 2) sorted by relevance

/linux-master/drivers/net/ethernet/sfc/
H A Dtx.c138 struct efx_short_copy_buffer *copy_buf)
140 int block_len = len & ~(sizeof(copy_buf->buf) - 1);
148 BUG_ON(copy_buf->used);
149 BUG_ON(len > sizeof(copy_buf->buf));
150 memcpy(copy_buf->buf, data, len);
151 copy_buf->used = len;
160 struct efx_short_copy_buffer *copy_buf)
162 if (copy_buf->used) {
165 min_t(int, sizeof(copy_buf->buf) - copy_buf
136 efx_memcpy_toio_aligned(struct efx_nic *efx, u8 __iomem **piobuf, u8 *data, int len, struct efx_short_copy_buffer *copy_buf) argument
158 efx_memcpy_toio_aligned_cb(struct efx_nic *efx, u8 __iomem **piobuf, u8 *data, int len, struct efx_short_copy_buffer *copy_buf) argument
185 efx_flush_copy_buffer(struct efx_nic *efx, u8 __iomem *piobuf, struct efx_short_copy_buffer *copy_buf) argument
197 efx_skb_copy_bits_to_pio(struct efx_nic *efx, struct sk_buff *skb, u8 __iomem **piobuf, struct efx_short_copy_buffer *copy_buf) argument
236 struct efx_short_copy_buffer copy_buf; local
[all...]
/linux-master/drivers/usb/gadget/function/
H A Df_uac1_legacy.c252 struct f_audio_buf *copy_buf; local
254 copy_buf = kzalloc(sizeof *copy_buf, GFP_ATOMIC);
255 if (!copy_buf)
258 copy_buf->buf = kzalloc(buf_size, GFP_ATOMIC);
259 if (!copy_buf->buf) {
260 kfree(copy_buf);
264 return copy_buf;
284 struct f_audio_buf *copy_buf; member in struct:f_audio
325 struct f_audio_buf *copy_buf local
642 struct f_audio_buf *copy_buf = audio->copy_buf; local
[all...]

Completed in 208 milliseconds