Searched refs:enr (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/block/drbd/ |
H A D | drbd_actlog.c | 206 static struct bm_extent *find_active_resync_extent(struct drbd_device *device, unsigned int enr) in find_active_resync_extent() argument 209 tmp = lc_find(device->resync, enr/AL_EXT_PER_BM_SECT); in find_active_resync_extent() 218 static struct lc_element *_al_get(struct drbd_device *device, unsigned int enr, bool nonblock) in _al_get() argument 225 bm_ext = find_active_resync_extent(device, enr); in _al_get() 234 al_ext = lc_try_get(device->act_log, enr); in _al_get() 236 al_ext = lc_get(device->act_log, enr); in _al_get() 264 unsigned enr; in drbd_al_begin_io_prepare() local 270 for (enr = first; enr <= last; enr++) { in drbd_al_begin_io_prepare() 273 (al_ext = _al_get(device, enr, false)) != NULL); in drbd_al_begin_io_prepare() 274 if (al_ext->lc_number != enr) in drbd_al_begin_io_prepare() [all …]
|
H A D | drbd_bitmap.c | 1667 int drbd_bm_e_weight(struct drbd_device *device, unsigned long enr) in drbd_bm_e_weight() argument 1683 s = S2W(enr); in drbd_bm_e_weight() 1684 e = min((size_t)S2W(enr+1), b->bm_words); in drbd_bm_e_weight()
|
H A D | drbd_int.h | 1290 extern int drbd_bm_e_weight(struct drbd_device *device, unsigned long enr);
|
/linux/lib/ |
H A D | lru_cache.c | 233 static struct hlist_head *lc_hash_slot(struct lru_cache *lc, unsigned int enr) in lc_hash_slot() argument 235 return lc->lc_slot + (enr % lc->nr_elements); in lc_hash_slot() 239 static struct lc_element *__lc_find(struct lru_cache *lc, unsigned int enr, in __lc_find() argument 246 hlist_for_each_entry(e, lc_hash_slot(lc, enr), collision) { in __lc_find() 250 if (e->lc_new_number != enr) in __lc_find() 270 struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr) in lc_find() argument 272 return __lc_find(lc, enr, 0); in lc_find() 285 bool lc_is_used(struct lru_cache *lc, unsigned int enr) in lc_is_used() argument 287 struct lc_element *e = __lc_find(lc, enr, 1); in lc_is_used() 351 static struct lc_element *__lc_get(struct lru_cache *lc, unsigned int enr, unsigned int flags) in __lc_get() argument [all …]
|
/linux/include/linux/ |
H A D | lru_cache.h | 245 extern struct lc_element *lc_get_cumulative(struct lru_cache *lc, unsigned int enr); 246 extern struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr); 247 extern struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr); 248 extern struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr); 292 extern bool lc_is_used(struct lru_cache *lc, unsigned int enr);
|