diff options
author | David Howells <dhowells@redhat.com> | 2019-05-14 11:44:26 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-05-16 16:25:21 +0100 |
commit | 4571577f16c82f8db8133b228cdca5fd61042c77 (patch) | |
tree | 70bf2518622a0b4d0c172f7ebbd05a193805224d /fs/afs/internal.h | |
parent | 87182759cd6f94875d6aaaac74eaa52aa6aa6f98 (diff) | |
download | linux-4571577f16c82f8db8133b228cdca5fd61042c77.tar.bz2 |
afs: Always get the reply time
Always ask for the reply time from AF_RXRPC as it's used to calculate the
callback expiry time and lock expiry times, so it's needed by most FS
operations.
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 2a100be91721..9b44307bd934 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -167,7 +167,7 @@ struct afs_call { bool need_attention; /* T if RxRPC poked us */ bool async; /* T if asynchronous */ bool upgrade; /* T to request service upgrade */ - bool want_reply_time; /* T if want reply_time */ + bool have_reply_time; /* T if have got reply_time */ bool intr; /* T if interruptible */ u16 service_id; /* Actual service ID (after upgrade) */ unsigned int debug_id; /* Trace ID */ |