diff options
Diffstat (limited to 'fs/fscache/object.c')
-rw-r--r-- | fs/fscache/object.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/fscache/object.c b/fs/fscache/object.c index a7b28f876fde..1085ca12e25c 100644 --- a/fs/fscache/object.c +++ b/fs/fscache/object.c | |||
@@ -922,7 +922,8 @@ static void fscache_dequeue_object(struct fscache_object *object) | |||
922 | * and creation). | 922 | * and creation). |
923 | */ | 923 | */ |
924 | enum fscache_checkaux fscache_check_aux(struct fscache_object *object, | 924 | enum fscache_checkaux fscache_check_aux(struct fscache_object *object, |
925 | const void *data, uint16_t datalen) | 925 | const void *data, uint16_t datalen, |
926 | loff_t object_size) | ||
926 | { | 927 | { |
927 | enum fscache_checkaux result; | 928 | enum fscache_checkaux result; |
928 | 929 | ||
@@ -932,7 +933,7 @@ enum fscache_checkaux fscache_check_aux(struct fscache_object *object, | |||
932 | } | 933 | } |
933 | 934 | ||
934 | result = object->cookie->def->check_aux(object->cookie->netfs_data, | 935 | result = object->cookie->def->check_aux(object->cookie->netfs_data, |
935 | data, datalen); | 936 | data, datalen, object_size); |
936 | switch (result) { | 937 | switch (result) { |
937 | /* entry okay as is */ | 938 | /* entry okay as is */ |
938 | case FSCACHE_CHECKAUX_OKAY: | 939 | case FSCACHE_CHECKAUX_OKAY: |