• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/s390/crypto/

Lines Matching defs:ap_msg

125  * @ap_msg: pointer to AP message
131 struct ap_message *ap_msg,
156 } __attribute__((packed)) *msg = ap_msg->message;
184 ap_msg->length = size;
192 * @ap_msg: pointer to AP message
198 struct ap_message *ap_msg,
224 } __attribute__((packed)) *msg = ap_msg->message;
251 ap_msg->length = size;
259 * @ap_msg: pointer to AP message
270 struct ap_message *ap_msg,
280 } __attribute__((packed)) *msg = ap_msg->message;
284 char *req_data = ap_msg->message + sizeof(struct type6_hdr) + rcblen;
288 ap_msg->length = sizeof(struct type6_hdr) +
291 if (ap_msg->length > PCIXCC_MAX_XCRB_MESSAGE_SIZE) {
627 struct ap_message ap_msg;
633 ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL);
634 if (!ap_msg.message)
636 ap_msg.psmid = (((unsigned long long) current->pid) << 32) +
638 ap_msg.private = &resp_type;
639 rc = ICAMEX_msg_to_type6MEX_msgX(zdev, &ap_msg, mex);
643 ap_queue_message(zdev->ap_dev, &ap_msg);
647 rc = convert_response_ica(zdev, &ap_msg, mex->outputdata,
651 ap_cancel_message(zdev->ap_dev, &ap_msg);
657 free_page((unsigned long) ap_msg.message);
671 struct ap_message ap_msg;
677 ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL);
678 if (!ap_msg.message)
680 ap_msg.psmid = (((unsigned long long) current->pid) << 32) +
682 ap_msg.private = &resp_type;
683 rc = ICACRT_msg_to_type6CRT_msgX(zdev, &ap_msg, crt);
687 ap_queue_message(zdev->ap_dev, &ap_msg);
691 rc = convert_response_ica(zdev, &ap_msg, crt->outputdata,
695 ap_cancel_message(zdev->ap_dev, &ap_msg);
701 free_page((unsigned long) ap_msg.message);
715 struct ap_message ap_msg;
721 ap_msg.message = kmalloc(PCIXCC_MAX_XCRB_MESSAGE_SIZE, GFP_KERNEL);
722 if (!ap_msg.message)
724 ap_msg.psmid = (((unsigned long long) current->pid) << 32) +
726 ap_msg.private = &resp_type;
727 rc = XCRB_msg_to_type6CPRB_msgX(zdev, &ap_msg, xcRB);
731 ap_queue_message(zdev->ap_dev, &ap_msg);
735 rc = convert_response_xcrb(zdev, &ap_msg, xcRB);
738 ap_cancel_message(zdev->ap_dev, &ap_msg);
744 memset(ap_msg.message, 0x0, ap_msg.length);
745 kfree(ap_msg.message);