Lines Matching refs:mystat

268 	int mystat;
310 mystat = ddi_dma_alloc_handle(devinfo, &dma_attr,
314 if (mystat != DDI_SUCCESS) {
316 "Could not allocate tbd dma handle: %d", mystat);
325 mystat = ddi_dma_mem_alloc(tx_ring->tbd_dma_handle,
332 if ((mystat != DDI_SUCCESS) ||
334 if (mystat == DDI_SUCCESS) {
371 mystat = ddi_dma_alloc_handle(devinfo, &dma_attr,
375 if (mystat != DDI_SUCCESS) {
377 "Could not re-allocate tbd dma handle: %d", mystat);
386 mystat = ddi_dma_mem_alloc(tx_ring->tbd_dma_handle,
393 if (mystat != DDI_SUCCESS) {
395 "Could not allocate tbd dma memory: %d", mystat);
432 mystat = ddi_dma_addr_bind_handle(tx_ring->tbd_dma_handle,
437 if (mystat != DDI_SUCCESS) {
439 "Could not bind tbd dma resource: %d", mystat);
473 int mystat;
504 mystat = ddi_dma_alloc_handle(devinfo, &dma_attr,
508 if (mystat != DDI_SUCCESS) {
510 "Could not allocate rbd dma handle: %d", mystat);
518 mystat = ddi_dma_mem_alloc(rx_data->rbd_dma_handle,
529 if ((mystat != DDI_SUCCESS) ||
531 if (mystat == DDI_SUCCESS) {
560 mystat = ddi_dma_alloc_handle(devinfo, &dma_attr,
564 if (mystat != DDI_SUCCESS) {
566 "Could not re-allocate rbd dma handle: %d", mystat);
574 mystat = ddi_dma_mem_alloc(rx_data->rbd_dma_handle,
581 if (mystat != DDI_SUCCESS) {
583 "Could not allocate rbd dma memory: %d", mystat);
614 mystat = ddi_dma_addr_bind_handle(rx_data->rbd_dma_handle,
619 if (mystat != DDI_SUCCESS) {
621 "Could not bind rbd dma resource: %d", mystat);
781 int mystat;
790 mystat = dvma_reserve(devinfo,
795 if (mystat != DDI_SUCCESS) {
798 "Could not allocate dvma buffer handle: %d\n", mystat);
854 int mystat;
865 mystat = ddi_dma_alloc_handle(devinfo,
870 if (mystat != DDI_SUCCESS) {
873 "Could not allocate dma buffer handle: %d\n", mystat);
877 mystat = ddi_dma_mem_alloc(buf->dma_handle,
883 if (mystat != DDI_SUCCESS) {
891 "Could not allocate dma buffer memory: %d\n", mystat);
895 mystat = ddi_dma_addr_bind_handle(buf->dma_handle,
901 if (mystat != DDI_SUCCESS) {
912 "Could not bind buffer dma handle: %d\n", mystat);
952 int mystat;
963 mystat = ddi_dma_alloc_handle(devinfo,
968 if (mystat != DDI_SUCCESS) {
971 "Could not allocate dma buffer handle: %d\n", mystat);
975 mystat = e1000g_dma_mem_alloc_82546(buf, size, &len);
976 if (mystat != DDI_SUCCESS) {
984 "Could not allocate dma buffer memory: %d\n", mystat);
988 mystat = ddi_dma_addr_bind_handle(buf->dma_handle,
994 if (mystat != DDI_SUCCESS) {
1005 "Could not bind buffer dma handle: %d\n", mystat);
1128 int mystat;
1164 mystat = dvma_reserve(devinfo,
1171 mystat = ddi_dma_alloc_handle(devinfo,
1180 if (mystat != DDI_SUCCESS) {
1183 "Could not allocate tx dma handle: %d\n", mystat);
1199 mystat = e1000g_alloc_dvma_buffer(Adapter,
1204 mystat = e1000g_alloc_dma_buffer(Adapter,
1211 if (mystat != DDI_SUCCESS) {
1326 int mystat;
1345 mystat = e1000g_alloc_dvma_buffer(Adapter,
1354 mystat = e1000g_alloc_dma_buffer_82546(Adapter,
1357 mystat = e1000g_alloc_dma_buffer(Adapter,
1366 if (mystat != DDI_SUCCESS) {