Home
last modified time | relevance | path

Searched refs:atx (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/dev/disk/ahci/
H A Dahci_cam.c175 target = atx ? atx->at_target : CAM_TARGET_WILDCARD; in ahci_cam_changed()
283 at = atx; in ahci_cam_probe()
286 ATANAME(ap, atx), atx->at_target); in ahci_cam_probe()
358 if (atx == NULL) in ahci_cam_probe()
501 if (atx == NULL) in ahci_cam_probe()
520 at = atx ? atx : ap->ap_ata[0]; in ahci_cam_probe_disk()
634 at = atx ? atx : ap->ap_ata[0]; in ahci_set_xfer()
797 atx = NULL; in ahci_xpt_action()
832 atx = at; in ahci_xpt_action()
1042 at = atx ? atx : ap->ap_ata[0]; in ahci_xpt_scsi_disk_io()
[all …]
H A Dahci.c1701 rc = ahci_port_reset(ap, atx, 0);
3989 ahci_set_feature(struct ahci_port *ap, struct ata_port *atx,
3996 at = atx ? atx : ap->ap_ata[0];
3998 xa = ahci_ata_get_xfer(ap, atx);
H A Dahci.h614 int ahci_set_feature(struct ahci_port *ap, struct ata_port *atx,
/dragonfly/sys/dev/disk/sili/
H A Dsili_cam.c164 target = atx ? atx->at_target : CAM_TARGET_WILDCARD; in sili_cam_changed()
272 at = atx; in sili_cam_probe()
275 ATANAME(ap, atx), atx->at_target); in sili_cam_probe()
342 if (atx == NULL) in sili_cam_probe()
495 if (atx == NULL) in sili_cam_probe()
514 at = atx ? atx : ap->ap_ata; in sili_cam_probe_disk()
628 at = atx ? atx : ap->ap_ata; in sili_set_xfer()
792 atx = NULL; in sili_xpt_action()
827 atx = at; in sili_xpt_action()
1021 at = atx ? atx : &ap->ap_ata[0]; in sili_xpt_scsi_disk_io()
[all …]
/dragonfly/sys/kern/
H A Dkern_event.c948 struct timespec atx = *tsp; in kern_kevent() local
951 timespecsub(&atx, &ats, &atx); in kern_kevent()
952 if (atx.tv_sec < 0 || in kern_kevent()
953 (atx.tv_sec == 0 && atx.tv_nsec <= 0)) { in kern_kevent()
958 if (atx.tv_sec == 0 && in kern_kevent()
959 atx.tv_nsec < kq_sleep_threshold) { in kern_kevent()
962 } else if (atx.tv_sec < 60) { in kern_kevent()
964 atx.tv_sec * 1000000 + in kern_kevent()
965 atx.tv_nsec / 1000; in kern_kevent()
972 } else if (atx.tv_sec > 60 * 60) { in kern_kevent()
[all …]