Lines Matching refs:volume

19 						      struct afs_volume *volume)  in afs_insert_volume_into_cell()  argument
30 if (p->vid < volume->vid) { in afs_insert_volume_into_cell()
32 } else if (p->vid > volume->vid) { in afs_insert_volume_into_cell()
35 volume = afs_get_volume(p, afs_volume_trace_get_cell_insert); in afs_insert_volume_into_cell()
40 rb_link_node_rcu(&volume->cell_node, parent, pp); in afs_insert_volume_into_cell()
41 rb_insert_color(&volume->cell_node, &cell->volumes); in afs_insert_volume_into_cell()
42 hlist_add_head_rcu(&volume->proc_link, &cell->proc_volumes); in afs_insert_volume_into_cell()
46 return volume; in afs_insert_volume_into_cell()
50 static void afs_remove_volume_from_cell(struct afs_volume *volume) in afs_remove_volume_from_cell() argument
52 struct afs_cell *cell = volume->cell; in afs_remove_volume_from_cell()
54 if (!hlist_unhashed(&volume->proc_link)) { in afs_remove_volume_from_cell()
55 trace_afs_volume(volume->vid, refcount_read(&cell->ref), in afs_remove_volume_from_cell()
58 hlist_del_rcu(&volume->proc_link); in afs_remove_volume_from_cell()
59 rb_erase(&volume->cell_node, &cell->volumes); in afs_remove_volume_from_cell()
72 struct afs_volume *volume; in afs_alloc_volume() local
79 volume = kzalloc(sizeof(struct afs_volume), GFP_KERNEL); in afs_alloc_volume()
80 if (!volume) in afs_alloc_volume()
83 volume->vid = vldb->vid[params->type]; in afs_alloc_volume()
84 volume->update_at = ktime_get_real_seconds() + afs_volume_record_life; in afs_alloc_volume()
85 volume->cell = afs_get_cell(params->cell, afs_cell_trace_get_vol); in afs_alloc_volume()
86 volume->type = params->type; in afs_alloc_volume()
87 volume->type_force = params->force; in afs_alloc_volume()
88 volume->name_len = vldb->name_len; in afs_alloc_volume()
90 refcount_set(&volume->ref, 1); in afs_alloc_volume()
91 INIT_HLIST_NODE(&volume->proc_link); in afs_alloc_volume()
92 rwlock_init(&volume->servers_lock); in afs_alloc_volume()
93 rwlock_init(&volume->cb_v_break_lock); in afs_alloc_volume()
94 memcpy(volume->name, vldb->name, vldb->name_len + 1); in afs_alloc_volume()
103 rcu_assign_pointer(volume->servers, slist); in afs_alloc_volume()
104 trace_afs_volume(volume->vid, 1, afs_volume_trace_alloc); in afs_alloc_volume()
105 return volume; in afs_alloc_volume()
108 afs_put_cell(volume->cell, afs_cell_trace_put_vol); in afs_alloc_volume()
109 kfree(volume); in afs_alloc_volume()
121 struct afs_volume *candidate, *volume; in afs_lookup_volume() local
127 volume = afs_insert_volume_into_cell(params->cell, candidate); in afs_lookup_volume()
128 if (volume != candidate) in afs_lookup_volume()
130 return volume; in afs_lookup_volume()
183 struct afs_volume *volume; in afs_create_volume() local
192 volume = ERR_PTR(vldb->error); in afs_create_volume()
197 volume = ERR_PTR(-ENOMEDIUM); in afs_create_volume()
210 volume = afs_lookup_volume(params, vldb, type_mask); in afs_create_volume()
214 return volume; in afs_create_volume()
220 static void afs_destroy_volume(struct afs_net *net, struct afs_volume *volume) in afs_destroy_volume() argument
222 _enter("%p", volume); in afs_destroy_volume()
225 ASSERTCMP(volume->cache, ==, NULL); in afs_destroy_volume()
228 afs_remove_volume_from_cell(volume); in afs_destroy_volume()
229 afs_put_serverlist(net, rcu_access_pointer(volume->servers)); in afs_destroy_volume()
230 afs_put_cell(volume->cell, afs_cell_trace_put_vol); in afs_destroy_volume()
231 trace_afs_volume(volume->vid, refcount_read(&volume->ref), in afs_destroy_volume()
233 kfree_rcu(volume, rcu); in afs_destroy_volume()
241 struct afs_volume *afs_get_volume(struct afs_volume *volume, in afs_get_volume() argument
244 if (volume) { in afs_get_volume()
247 __refcount_inc(&volume->ref, &r); in afs_get_volume()
248 trace_afs_volume(volume->vid, r + 1, reason); in afs_get_volume()
250 return volume; in afs_get_volume()
257 void afs_put_volume(struct afs_net *net, struct afs_volume *volume, in afs_put_volume() argument
260 if (volume) { in afs_put_volume()
261 afs_volid_t vid = volume->vid; in afs_put_volume()
265 zero = __refcount_dec_and_test(&volume->ref, &r); in afs_put_volume()
268 afs_destroy_volume(net, volume); in afs_put_volume()
275 int afs_activate_volume(struct afs_volume *volume) in afs_activate_volume() argument
282 volume->cell->name, volume->vid); in afs_activate_volume()
295 volume->cache = vcookie; in afs_activate_volume()
304 void afs_deactivate_volume(struct afs_volume *volume) in afs_deactivate_volume() argument
306 _enter("%s", volume->name); in afs_deactivate_volume()
309 fscache_relinquish_volume(volume->cache, NULL, in afs_deactivate_volume()
310 test_bit(AFS_VOLUME_DELETED, &volume->flags)); in afs_deactivate_volume()
311 volume->cache = NULL; in afs_deactivate_volume()
320 static int afs_update_volume_status(struct afs_volume *volume, struct key *key) in afs_update_volume_status() argument
332 idsz = sprintf(idbuf, "%llu", volume->vid); in afs_update_volume_status()
334 vldb = afs_vl_lookup_vldb(volume->cell, key, idbuf, idsz); in afs_update_volume_status()
341 if (vldb->name_len != volume->name_len || in afs_update_volume_status()
342 memcmp(vldb->name, volume->name, vldb->name_len) != 0) { in afs_update_volume_status()
344 memcpy(volume->name, vldb->name, AFS_MAXVOLNAME); in afs_update_volume_status()
345 volume->name_len = vldb->name_len; in afs_update_volume_status()
349 new = afs_alloc_server_list(volume->cell, key, in afs_update_volume_status()
350 vldb, (1 << volume->type)); in afs_update_volume_status()
356 write_lock(&volume->servers_lock); in afs_update_volume_status()
359 old = rcu_dereference_protected(volume->servers, in afs_update_volume_status()
360 lockdep_is_held(&volume->servers_lock)); in afs_update_volume_status()
362 new->seq = volume->servers_seq + 1; in afs_update_volume_status()
363 rcu_assign_pointer(volume->servers, new); in afs_update_volume_status()
365 volume->servers_seq++; in afs_update_volume_status()
369 volume->update_at = ktime_get_real_seconds() + afs_volume_record_life; in afs_update_volume_status()
370 write_unlock(&volume->servers_lock); in afs_update_volume_status()
373 afs_put_serverlist(volume->cell->net, discard); in afs_update_volume_status()
384 int afs_check_volume_status(struct afs_volume *volume, struct afs_operation *op) in afs_check_volume_status() argument
391 if (test_bit(AFS_VOLUME_WAIT, &volume->flags)) in afs_check_volume_status()
393 if (volume->update_at <= ktime_get_real_seconds() || in afs_check_volume_status()
394 test_bit(AFS_VOLUME_NEEDS_UPDATE, &volume->flags)) in afs_check_volume_status()
400 if (!test_and_set_bit_lock(AFS_VOLUME_UPDATING, &volume->flags)) { in afs_check_volume_status()
401 clear_bit(AFS_VOLUME_NEEDS_UPDATE, &volume->flags); in afs_check_volume_status()
402 ret = afs_update_volume_status(volume, op->key); in afs_check_volume_status()
404 set_bit(AFS_VOLUME_NEEDS_UPDATE, &volume->flags); in afs_check_volume_status()
405 clear_bit_unlock(AFS_VOLUME_WAIT, &volume->flags); in afs_check_volume_status()
406 clear_bit_unlock(AFS_VOLUME_UPDATING, &volume->flags); in afs_check_volume_status()
407 wake_up_bit(&volume->flags, AFS_VOLUME_WAIT); in afs_check_volume_status()
413 if (!test_bit(AFS_VOLUME_WAIT, &volume->flags)) { in afs_check_volume_status()
418 ret = wait_on_bit(&volume->flags, AFS_VOLUME_WAIT, in afs_check_volume_status()