Lines Matching defs:vio9p_softc
89 struct vio9p_softc { struct
90 device_t sc_dev;
92 struct virtio_softc *sc_virtio;
93 struct virtqueue sc_vq[1];
95 uint16_t sc_taglen;
96 uint8_t sc_tag[P9_MAX_TAG_LEN + 1];
98 int sc_flags;
101 int sc_state;
106 kcondvar_t sc_wait;
107 struct selinfo sc_sel;
108 kmutex_t sc_lock;
110 bus_dmamap_t sc_dmamap_tx;
134 static void vio9p_read_config(struct vio9p_softc *); argument