Lines Matching refs:slotid
83 u32 slotid = slot->slot_nr; in nfs4_free_slot() local
86 __clear_bit(slotid, tbl->used_slots); in nfs4_free_slot()
89 if (slotid == tbl->highest_used_slotid) { in nfs4_free_slot()
90 u32 new_max = find_last_bit(tbl->used_slots, slotid); in nfs4_free_slot()
91 if (new_max < slotid) in nfs4_free_slot()
99 slotid, tbl->highest_used_slotid); in nfs4_free_slot()
103 u32 slotid, u32 seq_init, gfp_t gfp_mask) in nfs4_new_slot() argument
110 slot->slot_nr = slotid; in nfs4_new_slot()
117 u32 slotid, u32 seq_init, gfp_t gfp_mask) in nfs4_find_or_create_slot() argument
131 if (slot->slot_nr == slotid) in nfs4_find_or_create_slot()
150 u32 slotid; in nfs4_alloc_slot() local
155 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slotid + 1); in nfs4_alloc_slot()
156 if (slotid > tbl->max_slotid) in nfs4_alloc_slot()
158 ret = nfs4_find_or_create_slot(tbl, slotid, 1, GFP_NOWAIT); in nfs4_alloc_slot()
161 __set_bit(slotid, tbl->used_slots); in nfs4_alloc_slot()
162 if (slotid > tbl->highest_used_slotid || in nfs4_alloc_slot()
164 tbl->highest_used_slotid = slotid; in nfs4_alloc_slot()