Lines Matching refs:volume
66 * Look up a volume by volume ID under RCU conditions.
71 struct afs_volume *volume = NULL;
85 volume = rb_entry(p, struct afs_volume, cell_node);
87 if (volume->vid < vid)
89 else if (volume->vid > vid)
93 volume = NULL;
99 return volume;
108 static void afs_break_one_callback(struct afs_volume *volume,
116 /* The callback break applies to an entire volume. */
117 write_lock(&volume->cb_v_break_lock);
118 volume->cb_v_break++;
119 trace_afs_cb_break(fid, volume->cb_v_break,
121 write_unlock(&volume->cb_v_break_lock);
129 sb = rcu_dereference(volume->sb);
147 struct afs_volume *volume;
151 volume = afs_lookup_volume_rcu(server->cell, vid);
164 if (volume)
165 afs_break_one_callback(volume, &cbb->fid);