Lines Matching defs:hrz_dev
408 struct hrz_dev { struct
410 u32 iobase;
411 u32 * membase;
413 struct sk_buff * rx_skb; // skb being RXed
414 unsigned int rx_bytes; // bytes remaining to RX within region
415 void * rx_addr; // addr to send bytes to (for PIO)
416 unsigned int rx_channel; // channel that the skb is going out on
418 struct sk_buff * tx_skb; // skb being TXed
419 unsigned int tx_bytes; // bytes remaining to TX within region
420 void * tx_addr; // addr to send bytes from (for PIO)
421 struct iovec * tx_iovec; // remaining regions
422 unsigned int tx_regions; // number of remaining regions
424 spinlock_t mem_lock;
426 wait_queue_head_t tx_queue;
428 struct wait_queue * tx_queue;
431 u8 irq;
432 u8 flags;
433 u8 tx_last;
434 u8 tx_idle;
436 rx_q_entry * rx_q_reset;
437 rx_q_entry * rx_q_entry;
438 rx_q_entry * rx_q_wrap;
440 struct atm_dev * atm_dev;
465 struct hrz_dev * prev; argument
468 typedef struct hrz_dev hrz_dev; typedef