diff options
author | David Howells <dhowells@redhat.com> | 2018-10-20 01:57:58 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2018-10-24 01:41:08 +0200 |
commit | 06aeb2971457b33c1123af9f307a55f3dc4052c9 (patch) | |
tree | d3f0e14d2b4110159829152d1c372d2afbd75681 /fs/afs/afs.h | |
parent | afs: Commit the status on a new file/dir/symlink (diff) | |
download | linux-06aeb2971457b33c1123af9f307a55f3dc4052c9.tar.xz linux-06aeb2971457b33c1123af9f307a55f3dc4052c9.zip |
afs: Remove callback details from afs_callback_break struct
Remove unnecessary details of a broken callback, such as version, expiry
and type, from the afs_callback_break struct as they're not actually used
and make the list take more memory.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/afs.h')
-rw-r--r-- | fs/afs/afs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/afs.h b/fs/afs/afs.h index c23b31b742fa..fb9bcb8758ea 100644 --- a/fs/afs/afs.h +++ b/fs/afs/afs.h @@ -75,7 +75,7 @@ struct afs_callback { struct afs_callback_break { struct afs_fid fid; /* File identifier */ - struct afs_callback cb; /* Callback details */ + //struct afs_callback cb; /* Callback details */ }; #define AFSCBMAX 50 /* maximum callbacks transferred per bulk op */ |