• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/powerpc/pseries/

Lines Matching defs:crq

496 	struct vscsi_crq crq;
510 crq.iu_length = htobe16(xp->srp_iu_size);
526 crq.valid = 0x80;
527 crq.format = 0x01;
528 crq.iu_data = htobe64(xp->sc->srp_iu_phys + xp->srp_iu_offset);
532 be64toh(((uint64_t *)(&crq))[0]),
533 be64toh(((uint64_t *)(&crq))[1]));
543 struct vscsi_crq crq;
556 crq.iu_length = htobe16(xp->srp_iu_size);
581 crq.valid = 0x80;
582 crq.format = 0x01;
583 crq.iu_data = htobe64(xp->sc->srp_iu_phys + xp->srp_iu_offset);
586 be64toh(((uint64_t *)(&crq))[0]),
587 be64toh(((uint64_t *)(&crq))[1]));
602 struct vscsi_crq crq;
614 crq.iu_length = htobe16(xp->srp_iu_size);
709 crq.valid = 0x80;
710 crq.format = 0x01;
711 crq.iu_data = htobe64(xp->sc->srp_iu_phys + xp->srp_iu_offset);
714 be64toh(((uint64_t *)(&crq))[0]),
715 be64toh(((uint64_t *)(&crq))[1]));
737 struct vscsi_crq crq;
757 bzero(&crq, sizeof(crq));
760 crq.valid = 0xc0;
761 crq.format = 0x01;
778 be64toh(((uint64_t *)(&crq))[0]),
779 be64toh(((uint64_t *)(&crq))[1]));
810 crq.iu_length = htobe16(xp->srp_iu_size);
817 crq.valid = 0x80;
818 crq.format = 0x02;
819 crq.iu_data = htobe64(xp->sc->srp_iu_phys + xp->srp_iu_offset);
822 be64toh(((uint64_t *)(&crq))[0]),
823 be64toh(((uint64_t *)(&crq))[1]));
847 vscsi_srp_response(struct vscsi_xfer *xp, struct vscsi_crq *crq)
864 if (crq->status != 0)
910 vscsi_login_response(struct vscsi_xfer *xp, struct vscsi_crq *crq)
938 struct vscsi_crq *crq;
949 crq = &sc->crq_queue[sc->cur_crq];
951 switch (crq->valid) {
953 if (crq->format == 0x02)
958 xp = (struct vscsi_xfer *)crq->iu_data;
960 switch (crq->format) {
966 vscsi_srp_response(xp, crq);
969 vscsi_login_response(xp, crq);
981 panic("Unknown CRQ format %d\n", crq->format);
991 "Unknown CRQ message type %d\n", crq->valid);
995 crq->valid = 0;