struct fixed_file_table         *table;
        struct io_ring_ctx              *ctx;
 
-       struct percpu_ref               *cur_refs;
+       struct fixed_file_ref_node      *node;
        struct percpu_ref               refs;
        struct completion               done;
        struct list_head                ref_list;
                fd = array_index_nospec(fd, ctx->nr_user_files);
                file = io_file_from_index(ctx, fd);
                if (file) {
-                       req->fixed_file_refs = ctx->file_data->cur_refs;
+                       req->fixed_file_refs = &ctx->file_data->node->refs;
                        percpu_ref_get(req->fixed_file_refs);
                }
        } else {
                return PTR_ERR(ref_node);
        }
 
-       file_data->cur_refs = &ref_node->refs;
+       file_data->node = ref_node;
        spin_lock(&file_data->lock);
        list_add(&ref_node->node, &file_data->ref_list);
        spin_unlock(&file_data->lock);
                                 struct file *file)
 {
        struct io_file_put *pfile;
-       struct percpu_ref *refs = data->cur_refs;
-       struct fixed_file_ref_node *ref_node;
+       struct fixed_file_ref_node *ref_node = data->node;
 
        pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
        if (!pfile)
                return -ENOMEM;
 
-       ref_node = container_of(refs, struct fixed_file_ref_node, refs);
        pfile->file = file;
        list_add(&pfile->list, &ref_node->file_list);
 
        }
 
        if (needs_switch) {
-               percpu_ref_kill(data->cur_refs);
+               percpu_ref_kill(&data->node->refs);
                spin_lock(&data->lock);
                list_add(&ref_node->node, &data->ref_list);
-               data->cur_refs = &ref_node->refs;
+               data->node = ref_node;
                spin_unlock(&data->lock);
                percpu_ref_get(&ctx->file_data->refs);
        } else