diff options
author | David Howells <dhowells@redhat.com> | 2019-05-14 15:35:44 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-05-16 22:23:21 +0100 |
commit | 7c712458669f203fb2c59af8aafea4c4767b4bc9 (patch) | |
tree | afea6a2720e7676304b30fd45b124eb14c3993ff /fs/afs/afs.h | |
parent | a58823ac458968f9fb3dbf97ee2749a62be12807 (diff) | |
download | linux-stable-7c712458669f203fb2c59af8aafea4c4767b4bc9.tar.gz linux-stable-7c712458669f203fb2c59af8aafea4c4767b4bc9.tar.bz2 linux-stable-7c712458669f203fb2c59af8aafea4c4767b4bc9.zip |
afs: Don't save callback version and type fields
Don't save callback version and type fields as the version is about the
format of the callback information and the type is relative to the
particular RPC call.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/afs.h')
-rw-r--r-- | fs/afs/afs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/afs/afs.h b/fs/afs/afs.h index 8fa0dffff1cc..819678bd8bec 100644 --- a/fs/afs/afs.h +++ b/fs/afs/afs.h @@ -72,8 +72,8 @@ typedef enum { struct afs_callback { time64_t expires_at; /* Time at which expires */ - unsigned version; /* Callback version */ - afs_callback_type_t type; /* Type of callback */ + //unsigned version; /* Callback version */ + //afs_callback_type_t type; /* Type of callback */ }; struct afs_callback_break { |