Home
last modified time | relevance | path

Searched refs:readq (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/netgraph7/
H A Dng_device.c89 struct ifqueue readq; member
184 mtx_destroy(&priv->readq.ifq_mtx); in ng_device_constructor()
269 IF_LOCK(&priv->readq); in ng_device_rcvdata()
270 if (_IF_QFULL(&priv->readq)) { in ng_device_rcvdata()
271 _IF_DROP(&priv->readq); in ng_device_rcvdata()
272 IF_UNLOCK(&priv->readq); in ng_device_rcvdata()
277 _IF_ENQUEUE(&priv->readq, m); in ng_device_rcvdata()
278 IF_UNLOCK(&priv->readq); in ng_device_rcvdata()
302 IF_DRAIN(&priv->readq); in ng_device_disconnect()
419 IF_DEQUEUE(&priv->readq, m); in ngdread()
[all …]
/dragonfly/sys/netgraph/
H A Dng_device.c89 char *readq; member
295 new_connection->readq = in ng_device_newhook()
297 if(new_connection->readq == NULL) { in ng_device_newhook()
372 memcpy(connection->readq+connection->loc, buffer, m->m_len); in ng_device_rcvdata()
407 kfree(connection->readq, M_DEVBUF); in ng_device_disconnect()
531 memcpy(buffer, connection->readq, amnt); in ngdread()
532 memcpy(connection->readq, connection->readq+amnt, in ngdread()
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_os_linux.h43 #define DRM_READ64(map, offset) readq(((void __iomem *)(map)->handle) + (offset))
/dragonfly/sys/cpu/x86_64/include/
H A Dcpufunc.h57 #define readq(va) (*(volatile u_int64_t *) (va)) macro