| tag | line | file | source code |
| vp | 53 | arch/ppc/kernel/mmu.h | unsigned long vp:1; /* User valid */ |
| vp | 53 | arch/ppc/mm/mmu.h | unsigned long vp:1; /* User valid */ |
| vp | 374 | drivers/net/3c59x.c | struct vortex_private *vp; |
| vp | 384 | drivers/net/3c59x.c | vp = (struct vortex_private *)dev->priv; |
| vp | 385 | drivers/net/3c59x.c | dev->name = vp->devname; /* An empty string. */ |
| vp | 389 | drivers/net/3c59x.c | vp->product_name = product_names[product_index]; |
| vp | 390 | drivers/net/3c59x.c | vp->options = options; |
| vp | 392 | drivers/net/3c59x.c | vp->media_override = options & 7; |
| vp | 393 | drivers/net/3c59x.c | vp->full_duplex = (options & 8) ? 1 : 0; |
| vp | 394 | drivers/net/3c59x.c | vp->bus_master = (options & 16) ? 1 : 0; |
| vp | 396 | drivers/net/3c59x.c | vp->media_override = 7; |
| vp | 397 | drivers/net/3c59x.c | vp->full_duplex = 0; |
| vp | 398 | drivers/net/3c59x.c | vp->bus_master = 0; |
| vp | 401 | drivers/net/3c59x.c | vp->next_module = root_vortex_dev; |
| vp | 413 | drivers/net/3c59x.c | vp = (struct vortex_private *)dev->priv; |
| vp | 414 | drivers/net/3c59x.c | vp->product_name = product_names[product_index]; |
| vp | 415 | drivers/net/3c59x.c | vp->options = options; |
| vp | 424 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 428 | drivers/net/3c59x.c | vp->product_name, ioaddr); |
| vp | 466 | drivers/net/3c59x.c | vp->autoselect = config.u.autoselect; |
| vp | 470 | drivers/net/3c59x.c | request_region(ioaddr, VORTEX_TOTAL_SIZE, vp->product_name); |
| vp | 490 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 496 | drivers/net/3c59x.c | if (vp->full_duplex) |
| vp | 500 | drivers/net/3c59x.c | if (vp->media_override != 7) { |
| vp | 503 | drivers/net/3c59x.c | dev->name, vp->media_override, if_names[vp->media_override]); |
| vp | 504 | drivers/net/3c59x.c | config.u.xcvr = vp->media_override; |
| vp | 505 | drivers/net/3c59x.c | dev->if_port = vp->media_override; |
| vp | 530 | drivers/net/3c59x.c | || request_irq(dev->irq, &vortex_interrupt, 0, vp->product_name)) { |
| vp | 592 | drivers/net/3c59x.c | if (vp->autoselect) { |
| vp | 593 | drivers/net/3c59x.c | init_timer(&vp->timer); |
| vp | 594 | drivers/net/3c59x.c | vp->timer.expires = (14*HZ)/10; /* 1.4 sec. */ |
| vp | 595 | drivers/net/3c59x.c | vp->timer.data = (unsigned long)dev; |
| vp | 596 | drivers/net/3c59x.c | vp->timer.function = &vortex_timer; /* timer handler */ |
| vp | 597 | drivers/net/3c59x.c | add_timer(&vp->timer); |
| vp | 613 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 623 | drivers/net/3c59x.c | vp->stats.tx_errors++; |
| vp | 656 | drivers/net/3c59x.c | if (vp->bus_master) { |
| vp | 660 | drivers/net/3c59x.c | vp->tx_skb = skb; |
| vp | 695 | drivers/net/3c59x.c | if (tx_status & 0x04) vp->stats.tx_fifo_errors++; |
| vp | 696 | drivers/net/3c59x.c | if (tx_status & 0x38) vp->stats.tx_aborted_errors++; |
| vp | 840 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 853 | drivers/net/3c59x.c | vp->stats.rx_errors++; |
| vp | 854 | drivers/net/3c59x.c | if (rx_error & 0x01) vp->stats.rx_over_errors++; |
| vp | 855 | drivers/net/3c59x.c | if (rx_error & 0x02) vp->stats.rx_length_errors++; |
| vp | 856 | drivers/net/3c59x.c | if (rx_error & 0x04) vp->stats.rx_frame_errors++; |
| vp | 857 | drivers/net/3c59x.c | if (rx_error & 0x08) vp->stats.rx_crc_errors++; |
| vp | 858 | drivers/net/3c59x.c | if (rx_error & 0x10) vp->stats.rx_length_errors++; |
| vp | 881 | drivers/net/3c59x.c | vp->stats.rx_packets++; |
| vp | 887 | drivers/net/3c59x.c | vp->stats.rx_dropped++; |
| vp | 941 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 948 | drivers/net/3c59x.c | return &vp->stats; |
| vp | 960 | drivers/net/3c59x.c | struct vortex_private *vp = (struct vortex_private *)dev->priv; |
| vp | 965 | drivers/net/3c59x.c | vp->stats.tx_carrier_errors += inb(ioaddr + 0); |
| vp | 966 | drivers/net/3c59x.c | vp->stats.tx_heartbeat_errors += inb(ioaddr + 1); |
| vp | 968 | drivers/net/3c59x.c | vp->stats.collisions += inb(ioaddr + 3); |
| vp | 969 | drivers/net/3c59x.c | vp->stats.tx_window_errors += inb(ioaddr + 4); |
| vp | 970 | drivers/net/3c59x.c | vp->stats.rx_fifo_errors += inb(ioaddr + 5); |
| vp | 971 | drivers/net/3c59x.c | vp->stats.tx_packets += inb(ioaddr + 6); |
| vp | 972 | drivers/net/3c59x.c | vp->stats.tx_packets += (inb(ioaddr + 9)&15) << 8; |
| vp | 53 | include/asm-ppc/mmu.h | unsigned long vp:1; /* User valid */ |
| vp | 49 | mm/kmalloc.c | } vp; |
| vp | 53 | mm/kmalloc.c | #define bh_length vp.ubh_length |
| vp | 54 | mm/kmalloc.c | #define bh_next vp.fbh_next |
| vp | 77 | net/ipv4/ip_fragment.c | void *vp=kmalloc(size,pri); |
| vp | 78 | net/ipv4/ip_fragment.c | if(!vp) |
| vp | 84 | net/ipv4/ip_fragment.c | return vp; |