diff options
author | David Howells <dhowells@redhat.com> | 2020-03-20 12:32:50 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-05-31 17:19:52 +0300 |
commit | a310082f6d0afe28797e148726cd52118a8a4428 (patch) | |
tree | 18bd14d3ea9f95b9b513e477012bdd4458e3b8b4 /fs/afs/write.c | |
parent | 7126ead910aa9fcc9e16e9e7a8c9179658261f1d (diff) | |
download | linux-a310082f6d0afe28797e148726cd52118a8a4428.tar.xz |
afs: Rename struct afs_fs_cursor to afs_operation
As a prelude to implementing asynchronous fileserver operations in the afs
filesystem, rename struct afs_fs_cursor to afs_operation.
This struct is going to form the core of the operation management and is
going to acquire more members in later.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/write.c')
-rw-r--r-- | fs/afs/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/write.c b/fs/afs/write.c index cb76566763db..1a8af44ea36b 100644 --- a/fs/afs/write.c +++ b/fs/afs/write.c @@ -356,7 +356,7 @@ static int afs_store_data(struct address_space *mapping, unsigned offset, unsigned to) { struct afs_vnode *vnode = AFS_FS_I(mapping->host); - struct afs_fs_cursor fc; + struct afs_operation fc; struct afs_status_cb *scb; struct afs_wb_key *wbk = NULL; struct list_head *p; |