• Home
  • Raw
  • Download

Lines Matching refs:lookup_data

30 	struct cachefiles_lookup_data *lookup_data;  in cachefiles_alloc_object()  local
42 lookup_data = kmalloc(sizeof(*lookup_data), cachefiles_gfp); in cachefiles_alloc_object()
43 if (!lookup_data) in cachefiles_alloc_object()
93 lookup_data->auxdata = auxdata; in cachefiles_alloc_object()
94 lookup_data->key = key; in cachefiles_alloc_object()
95 object->lookup_data = lookup_data; in cachefiles_alloc_object()
97 _leave(" = %p [%p]", &object->fscache, lookup_data); in cachefiles_alloc_object()
107 kfree(lookup_data); in cachefiles_alloc_object()
119 struct cachefiles_lookup_data *lookup_data; in cachefiles_lookup_object() local
131 lookup_data = object->lookup_data; in cachefiles_lookup_object()
133 ASSERTCMP(lookup_data, !=, NULL); in cachefiles_lookup_object()
138 lookup_data->key, in cachefiles_lookup_object()
139 lookup_data->auxdata); in cachefiles_lookup_object()
166 _enter("{OBJ%x,%p}", object->fscache.debug_id, object->lookup_data); in cachefiles_lookup_complete()
168 if (object->lookup_data) { in cachefiles_lookup_complete()
169 kfree(object->lookup_data->key); in cachefiles_lookup_complete()
170 kfree(object->lookup_data->auxdata); in cachefiles_lookup_complete()
171 kfree(object->lookup_data); in cachefiles_lookup_complete()
172 object->lookup_data = NULL; in cachefiles_lookup_complete()
341 if (object->lookup_data) { in cachefiles_put_object()
342 kfree(object->lookup_data->key); in cachefiles_put_object()
343 kfree(object->lookup_data->auxdata); in cachefiles_put_object()
344 kfree(object->lookup_data); in cachefiles_put_object()
345 object->lookup_data = NULL; in cachefiles_put_object()