/*
  * Fetch file data from the volume.
  */
-int afs_fetch_data(struct afs_vnode *vnode, struct key *key, struct afs_read *desc)
+int afs_fetch_data(struct afs_vnode *vnode, struct key *key, struct afs_read *req)
 {
        struct afs_fs_cursor fc;
        struct afs_status_cb *scb;
 
                while (afs_select_fileserver(&fc)) {
                        fc.cb_break = afs_calc_vnode_cb_break(vnode);
-                       afs_fs_fetch_data(&fc, scb, desc);
+                       afs_fs_fetch_data(&fc, scb, req);
                }
 
                afs_check_for_remote_deletion(&fc, vnode);
 
        if (ret == 0) {
                afs_stat_v(vnode, n_fetches);
-               atomic_long_add(desc->actual_len,
+               atomic_long_add(req->actual_len,
                                &afs_v2net(vnode)->n_fetch_bytes);
        }