Symbol: PKT_BUF_SZ
usr/src/grub/grub-0.97/netboot/epic100.c
270
rx_ring[i].buflength = cpu_to_le32(PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/epic100.c
271
rx_ring[i].bufaddr = virt_to_bus(&rx_packet[i * PKT_BUF_SZ]);
usr/src/grub/grub-0.97/netboot/epic100.c
285
tx_ring[i].bufaddr = virt_to_bus(&tx_packet[i * PKT_BUF_SZ]);
usr/src/grub/grub-0.97/netboot/epic100.c
319
txp = tx_packet + (entry * PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/epic100.c
398
memcpy(nic->packet, &rx_packet[entry * PKT_BUF_SZ], nic->packetlen);
usr/src/grub/grub-0.97/netboot/epic100.c
89
static unsigned char rx_packet[PKT_BUF_SZ * RX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/epic100.c
90
static unsigned char tx_packet[PKT_BUF_SZ * TX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/pcnet32.c
188
static unsigned char txb[PKT_BUF_SZ * TX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/pcnet32.c
194
static unsigned char rxb[RX_RING_SIZE * PKT_BUF_SZ];
usr/src/grub/grub-0.97/netboot/pcnet32.c
413
rx_ring[i].buf_length = le16_to_cpu(-PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/pcnet32.c
566
rx_ring[entry].buf_length = le16_to_cpu(-PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/pcnet32.c
595
ptxb = txb + (lp->cur_tx * PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/sundance.c
258
static unsigned char txb[PKT_BUF_SZ * TX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/sundance.c
265
static unsigned char rxb[RX_RING_SIZE * PKT_BUF_SZ];
usr/src/grub/grub-0.97/netboot/sundance.c
364
rx_ring[i].addr = virt_to_le32desc(&rxb[i * PKT_BUF_SZ]);
usr/src/grub/grub-0.97/netboot/sundance.c
365
rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ | LastFrag);
usr/src/grub/grub-0.97/netboot/sundance.c
382
tx_ring[1].length = cpu_to_le32(LastFrag | PKT_BUF_SZ);
usr/src/grub/grub-0.97/netboot/sundance.c
499
(sdc->cur_rx * PKT_BUF_SZ), nic->packetlen);
usr/src/grub/grub-0.97/netboot/sundance.c
503
rx_ring[entry].length = cpu_to_le32(PKT_BUF_SZ | LastFrag);
usr/src/grub/grub-0.97/netboot/via-rhine.c
1103
static char buf1[RX_RING_SIZE * PKT_BUF_SZ + 32];
usr/src/grub/grub-0.97/netboot/via-rhine.c
1104
static char buf2[RX_RING_SIZE * PKT_BUF_SZ + 32];
usr/src/grub/grub-0.97/netboot/w89c840.c
261
static char rx_packet[PKT_BUF_SZ * RX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/w89c840.c
262
static char tx_packet[PKT_BUF_SZ * TX_RING_SIZE];
usr/src/grub/grub-0.97/netboot/w89c840.c
914
w840private.rx_buf_sz = PKT_BUF_SZ;
usr/src/grub/grub-0.97/netboot/w89c840.c
926
w840private.rx_ring[i].buffer1 = virt_to_le32desc(p + (PKT_BUF_SZ * i));