Searched defs:next_index (Results 1 - 5 of 5) sorted by relevance

/drivers/misc/ibmasm/
H A Dibmasm.h127 unsigned int next_index; member in struct:event_buffer
/drivers/net/bonding/
H A Dbond_alb.c156 u32 next_index = tx_hash_table[index].next; local
158 index = next_index;
258 u32 next_index = slave_info->head; local
261 hash_table[hash_index].next = next_index;
264 if (next_index != TLB_NULL_INDEX) {
265 hash_table[next_index].prev = hash_index;
439 u32 index, next_index; local
446 for (; index != RLB_NULL_INDEX; index = next_index) {
447 next_index = rx_hash_table[index].next;
831 u32 next_index local
[all...]
/drivers/scsi/libfc/
H A Dfc_exch.c59 * @next_index: Next possible free exchange index
71 u16 next_index; member in struct:fc_exch_pool
418 pool->next_index = index;
744 index = pool->next_index;
748 if (index == pool->next_index)
751 pool->next_index = index == mp->pool_max_index ? 0 : index + 1;
1798 pool->next_index = 0;
2299 pool->next_index = 0;
/drivers/infiniband/hw/ehca/
H A Dehca_classes.h179 static inline unsigned int next_index(unsigned int cur_index, unsigned int limit) function
/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c140 u16 next_index = 0; local
160 next_index = 1;
162 next_index = num_active_cmds >> ep->ec_shift;
163 if (next_index > num_active_cmds - event_coal_min)
164 next_index = num_active_cmds - event_coal_min;
166 if (!next_index)
167 next_index = 1;
168 cq_index = ep->qp.cqe_exp_seq_sn + next_index - 1;
176 return next_index;

Completed in 1084 milliseconds