Lines Matching refs:lookup_data
26 struct cachefiles_lookup_data *lookup_data;
38 lookup_data = kmalloc(sizeof(*lookup_data), cachefiles_gfp);
39 if (!lookup_data)
95 lookup_data->auxdata = auxdata;
96 lookup_data->key = key;
97 object->lookup_data = lookup_data;
99 _leave(" = %p [%p]", &object->fscache, lookup_data);
109 kfree(lookup_data);
121 struct cachefiles_lookup_data *lookup_data;
133 lookup_data = object->lookup_data;
135 ASSERTCMP(lookup_data, !=, NULL);
140 lookup_data->key,
141 lookup_data->auxdata);
168 _enter("{OBJ%x,%p}", object->fscache.debug_id, object->lookup_data);
170 if (object->lookup_data) {
171 kfree(object->lookup_data->key);
172 kfree(object->lookup_data->auxdata);
173 kfree(object->lookup_data);
174 object->lookup_data = NULL;
357 if (object->lookup_data) {
358 kfree(object->lookup_data->key);
359 kfree(object->lookup_data->auxdata);
360 kfree(object->lookup_data);
361 object->lookup_data = NULL;