• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/net/

Lines Matching refs:p_this_ccw

867         struct ccwbk*             p_this_ccw;
953 p_this_ccw=privptr->p_read_active_first;
954 while (p_this_ccw!=NULL) {
955 p_this_ccw->header.length=0xffff;
956 p_this_ccw->header.opcode=0xff;
957 p_this_ccw->header.flag=0x00;
958 p_this_ccw=p_this_ccw->next;
962 p_this_ccw=privptr->p_write_active_first;
963 p_this_ccw->header.flag=CLAW_PENDING;
964 privptr->p_write_active_first=p_this_ccw->next;
965 p_this_ccw->next=privptr->p_write_free_chain;
966 privptr->p_write_free_chain=p_this_ccw;
1310 struct ccwbk *p_this_ccw;
1398 p_this_ccw=privptr->p_write_free_chain; /* get a block */
1399 if (p_this_ccw == NULL) { /* lost the race */
1405 privptr->p_write_free_chain=p_this_ccw->next;
1406 p_this_ccw->next=NULL;
1412 memcpy( p_this_ccw->p_buffer,pDataAddress, bytesInThisBuffer);
1416 p_this_ccw->write.cmd_code = (linkid * 8) +1;
1418 p_this_ccw->write.cmd_code+=MORE_to_COME_FLAG;
1420 p_this_ccw->write.count=bytesInThisBuffer;
1423 p_first_ccw=p_this_ccw;
1426 p_last_ccw->next=p_this_ccw;
1429 (__u32)__pa(&p_this_ccw->write);
1431 p_last_ccw=p_this_ccw; /* save new last block */
2536 struct ccwbk *p_this_ccw;
2561 p_this_ccw=privptr->p_read_active_first;
2562 while (p_this_ccw!=NULL && p_this_ccw->header.flag!=CLAW_PENDING) {
2565 p_this_ccw->header.flag=CLAW_PENDING;
2566 privptr->p_read_active_first=p_this_ccw->next;
2567 p_this_ccw->next=NULL;
2568 p_packh = (struct clawph *)p_this_ccw->p_buffer;
2582 link_num=p_this_ccw->header.opcode / 8;
2583 if ((p_this_ccw->header.opcode & MORE_to_COME_FLAG)!=0) {
2585 if (p_this_ccw->header.length!=
2591 dev->name, p_this_ccw->header.length);
2612 claw_process_control(dev, p_this_ccw);
2620 p_packd = p_this_ccw->p_buffer+pack_off;
2629 bytes_to_mov=p_this_ccw->header.length;
2654 p_this_ccw->p_buffer, bytes_to_mov);
2690 p_this_ccw->header.length=0xffff;
2691 p_this_ccw->header.opcode=0xff;
2696 p_first_ccw = p_this_ccw;
2699 p_last_ccw->next = p_this_ccw;
2701 p_last_ccw = p_this_ccw;
2705 p_this_ccw = privptr->p_read_active_first;
2820 struct ccwbk*p_this_ccw;
2827 p_this_ccw=privptr->p_write_active_first;
2828 while ( (p_this_ccw!=NULL) && (p_this_ccw->header.flag!=CLAW_PENDING))
2830 p_next_ccw = p_this_ccw->next;
2833 ((p_this_ccw == privptr->p_write_active_last) &&
2834 (p_this_ccw->header.flag!=CLAW_PENDING))) {
2837 privptr->p_write_active_first=p_this_ccw->next;
2838 p_this_ccw->header.flag=CLAW_PENDING;
2839 p_this_ccw->next=privptr->p_write_free_chain;
2840 privptr->p_write_free_chain=p_this_ccw;
2842 privptr->stats.tx_bytes+= p_this_ccw->write.count;
2843 p_this_ccw=privptr->p_write_active_first;