Lines Matching refs:volume
81 vnode->cb_v_break = vnode->volume->cb_v_break;
106 * Look up a volume by volume ID under RCU conditions.
111 struct afs_volume *volume = NULL;
125 volume = rb_entry(p, struct afs_volume, cell_node);
127 if (volume->vid < vid)
129 else if (volume->vid > vid)
133 volume = NULL;
139 return volume;
148 static void afs_break_one_callback(struct afs_volume *volume,
156 /* The callback break applies to an entire volume. */
157 write_lock(&volume->cb_v_break_lock);
158 volume->cb_v_break++;
159 trace_afs_cb_break(fid, volume->cb_v_break,
161 write_unlock(&volume->cb_v_break_lock);
169 sb = rcu_dereference(volume->sb);
187 struct afs_volume *volume;
191 volume = afs_lookup_volume_rcu(server->cell, vid);
204 if (volume)
205 afs_break_one_callback(volume, &cbb->fid);