diff options
author | David Howells <dhowells@redhat.com> | 2017-11-02 16:27:49 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2017-11-13 16:38:18 +0100 |
commit | d0676a16781d0972969dff8b3f3f819599cc4b07 (patch) | |
tree | 0ccc593980a8947c68b5f21f49b287920bebc7ba /fs/afs/internal.h | |
parent | afs: Fix the afs_uuid struct to make the char-sized fields signed (diff) | |
download | linux-d0676a16781d0972969dff8b3f3f819599cc4b07.tar.xz linux-d0676a16781d0972969dff8b3f3f819599cc4b07.zip |
afs: Rename struct afs_call server member to cm_server
Rename the server member of struct afs_call to cm_server as we're only
going to be using it for incoming calls for the Cache Manager service.
This makes it easier to differentiate from the pointer to the target server
for the client, which will point to a different structure to allow for
callback handling.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/internal.h')
-rw-r--r-- | fs/afs/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/internal.h b/fs/afs/internal.h index 94b676c433c7..6fa81e04aff3 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -76,7 +76,7 @@ struct afs_call { struct rxrpc_call *rxcall; /* RxRPC call handle */ struct key *key; /* security for this call */ struct afs_net *net; /* The network namespace */ - struct afs_server *server; /* server affected by incoming CM call */ + struct afs_server *cm_server; /* Server affected by incoming CM call */ void *request; /* request data (first part) */ struct address_space *mapping; /* page set */ struct afs_writeback *wb; /* writeback being performed */ |