Home
last modified time | relevance | path

Searched refs:prev_entry (Results 1 – 11 of 11) sorted by relevance

/Linux-v6.1/net/ipv6/
Dcalipso.c205 struct calipso_map_cache_entry *prev_entry = NULL; in calipso_cache_check() local
223 if (!prev_entry) { in calipso_cache_check()
228 if (prev_entry->activity > 0) in calipso_cache_check()
229 prev_entry->activity -= 1; in calipso_cache_check()
230 if (entry->activity > prev_entry->activity && in calipso_cache_check()
231 entry->activity - prev_entry->activity > in calipso_cache_check()
235 prev_entry->list.prev, in calipso_cache_check()
236 &prev_entry->list); in calipso_cache_check()
242 prev_entry = entry; in calipso_cache_check()
/Linux-v6.1/fs/btrfs/
Dextent_map.c150 struct extent_map *prev_entry = NULL; in __tree_search() local
157 prev_entry = entry; in __tree_search()
168 while (prev && offset >= extent_map_end(prev_entry)) { in __tree_search()
170 prev_entry = rb_entry(prev, struct extent_map, rb_node); in __tree_search()
183 prev_entry = rb_entry(prev, struct extent_map, rb_node); in __tree_search()
184 while (prev && offset < prev_entry->start) { in __tree_search()
186 prev_entry = rb_entry(prev, struct extent_map, rb_node); in __tree_search()
Dordered-data.c68 struct btrfs_ordered_extent *prev_entry = NULL; in __tree_search() local
73 prev_entry = entry; in __tree_search()
85 while (prev && file_offset >= entry_end(prev_entry)) { in __tree_search()
89 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
91 if (file_offset < entry_end(prev_entry)) in __tree_search()
97 prev_entry = rb_entry(prev, struct btrfs_ordered_extent, in __tree_search()
99 while (prev && file_offset < entry_end(prev_entry)) { in __tree_search()
103 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
/Linux-v6.1/drivers/net/ethernet/natsemi/
Dsonic.c559 int prev_entry = lp->eol_rx; in sonic_rx() local
615 prev_entry = entry; in sonic_rx()
621 if (prev_entry != lp->eol_rx) { in sonic_rx()
623 sonic_rda_put(dev, prev_entry, SONIC_RD_LINK, SONIC_EOL | in sonic_rx()
624 sonic_rda_get(dev, prev_entry, SONIC_RD_LINK)); in sonic_rx()
627 lp->eol_rx = prev_entry; in sonic_rx()
/Linux-v6.1/net/ipv4/
Dcipso_ipv4.c239 struct cipso_v4_map_cache_entry *prev_entry = NULL; in cipso_v4_cache_check() local
257 if (!prev_entry) { in cipso_v4_cache_check()
262 if (prev_entry->activity > 0) in cipso_v4_cache_check()
263 prev_entry->activity -= 1; in cipso_v4_cache_check()
264 if (entry->activity > prev_entry->activity && in cipso_v4_cache_check()
265 entry->activity - prev_entry->activity > in cipso_v4_cache_check()
269 prev_entry->list.prev, in cipso_v4_cache_check()
270 &prev_entry->list); in cipso_v4_cache_check()
276 prev_entry = entry; in cipso_v4_cache_check()
/Linux-v6.1/fs/nilfs2/
Dalloc.h89 struct nilfs_bh_assoc prev_entry; member
Dalloc.c321 &cache->prev_entry, &cache->lock); in nilfs_palloc_get_entry_block()
335 &cache->prev_entry, &cache->lock); in nilfs_palloc_delete_entry_block()
851 brelse(cache->prev_entry.bh); in nilfs_palloc_clear_cache()
854 cache->prev_entry.bh = NULL; in nilfs_palloc_clear_cache()
/Linux-v6.1/drivers/net/ethernet/3com/
D3c515.c1002 struct boom_tx_desc *prev_entry; in corkscrew_start_xmit() local
1009 prev_entry = &vp->tx_ring[(vp->cur_tx - 1) % TX_RING_SIZE]; in corkscrew_start_xmit()
1011 prev_entry = NULL; in corkscrew_start_xmit()
1028 if (prev_entry) in corkscrew_start_xmit()
1029 prev_entry->next = isa_virt_to_bus(&vp->tx_ring[entry]); in corkscrew_start_xmit()
1042 if (prev_entry) in corkscrew_start_xmit()
1043 prev_entry->status &= ~0x80000000; in corkscrew_start_xmit()
D3c59x.c2118 struct boom_tx_desc *prev_entry = &vp->tx_ring[(vp->cur_tx-1) % TX_RING_SIZE]; in boomerang_start_xmit() local
2216 prev_entry->next = cpu_to_le32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc)); in boomerang_start_xmit()
2232 prev_entry->status &= cpu_to_le32(~TxIntrUploaded); in boomerang_start_xmit()
/Linux-v6.1/fs/f2fs/
Dextent_cache.c121 struct rb_entry **prev_entry, in f2fs_lookup_rb_tree_ret() argument
133 *prev_entry = NULL; in f2fs_lookup_rb_tree_ret()
174 *prev_entry = rb_entry_safe(tmp_node, struct rb_entry, rb_node); in f2fs_lookup_rb_tree_ret()
181 *prev_entry = rb_entry_safe(tmp_node, struct rb_entry, rb_node); in f2fs_lookup_rb_tree_ret()
Df2fs.h4150 struct rb_entry **prev_entry, struct rb_entry **next_entry,