Skip to content

Commit

Permalink
afs: Condense afs_call's reply{,2,3,4} into an array
Browse files Browse the repository at this point in the history
Condense struct afs_call's reply anchor members - reply{,2,3,4} - into an
array.

Signed-off-by: David Howells <dhowells@redhat.com>
  • Loading branch information
David Howells committed Nov 13, 2017
1 parent f780c8e commit 97e3043
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 77 deletions.
2 changes: 1 addition & 1 deletion fs/afs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ static int afs_readpage(struct file *file, struct page *page)
static void afs_readpages_page_done(struct afs_call *call, struct afs_read *req)
{
#ifdef CONFIG_AFS_FSCACHE
struct afs_vnode *vnode = call->reply;
struct afs_vnode *vnode = call->reply[0];
#endif
struct page *page = req->pages[req->index];

Expand Down
Loading

0 comments on commit 97e3043

Please sign in to comment.