Searched refs:cio (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/dev/pci/
H A Dpci_user.c694 pci_conf_io_init(struct pci_conf_io *cio, caddr_t data, u_long cmd) argument
705 *cio = *(struct pci_conf_io *)data;
714 cio->pat_buf_len = cio32->pat_buf_len;
715 cio->num_patterns = cio32->num_patterns;
716 cio->patterns = (void *)(uintptr_t)cio32->patterns;
717 cio->match_buf_len = cio32->match_buf_len;
718 cio->num_matches = cio32->num_matches;
719 cio->matches = (void *)(uintptr_t)cio32->matches;
720 cio->offset = cio32->offset;
721 cio
733 pci_conf_io_update_data(const struct pci_conf_io *cio, caddr_t data, u_long cmd) argument
928 struct pci_conf_io *cio = NULL; local
[all...]
/freebsd-13-stable/sys/dev/ppc/
H A Dppc.c711 #define cio csr+1 /* config IO port is either 0x3F1 or 0x371 */ macro
722 if (inb(cio) == 0x65) {
734 if (inb(cio) == 0x66) {
756 r = inb(cio) & SMC_CR1_ADDR;
772 inb(cio) & 0xff);
775 printf(" CR4=0x%x", inb(cio) & 0xff);
792 if ((inb(cio) & SMC_CR1_MODE) == 0) {
795 r = (inb(cio) & SMC_CR4_EMODE);
837 r = inb(cio);
840 outb(cio,
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dzio.c588 zio_walk_parents(zio_t *cio, zio_link_t **zl) argument
590 list_t *pl = &cio->io_parent_list;
596 ASSERT((*zl)->zl_child == cio);
616 zio_unique_parent(zio_t *cio) argument
619 zio_t *pio = zio_walk_parents(cio, &zl);
621 VERIFY3P(zio_walk_parents(cio, &zl), ==, NULL);
626 zio_add_child(zio_t *pio, zio_t *cio) argument
636 ASSERT3S(cio->io_child_type, <=, pio->io_child_type);
639 zl->zl_child = cio;
642 mutex_enter(&cio
660 zio_remove_child(zio_t *pio, zio_t *cio, zio_link_t *zl) argument
2005 zio_t *cio, *cio_next; local
2291 zio_t *cio, *cio_next; local
2890 zio_t *cio = zio_write(zio, spa, txg, &gbh->zg_blkptr[g], local
3272 zio_t *cio = NULL; local
3914 zio_t *cio, *cio_next; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/include/sys/
H A Dzio.h598 extern zio_t *zio_walk_parents(zio_t *cio, zio_link_t **);
600 extern zio_t *zio_unique_parent(zio_t *cio);
601 extern void zio_add_child(zio_t *pio, zio_t *cio);

Completed in 69 milliseconds