Lines Matching refs:auxdata
19 struct cachefiles_xattr *auxdata; /* auxiliary data */ member
35 struct cachefiles_xattr *auxdata; in cachefiles_alloc_object() local
84 auxdata = buffer; in cachefiles_alloc_object()
88 auxdata->data, 511); in cachefiles_alloc_object()
92 auxdata->len = auxlen + 1; in cachefiles_alloc_object()
93 auxdata->type = cookie->def->type; in cachefiles_alloc_object()
95 lookup_data->auxdata = auxdata; in cachefiles_alloc_object()
141 lookup_data->auxdata); in cachefiles_lookup_object()
173 kfree(object->lookup_data->auxdata); in cachefiles_lookup_complete()
204 struct cachefiles_xattr *auxdata; in cachefiles_update_object() local
222 auxdata = kmalloc(2 + 512 + 3, GFP_KERNEL); in cachefiles_update_object()
223 if (!auxdata) { in cachefiles_update_object()
228 auxlen = cookie->def->get_aux(cookie->netfs_data, auxdata->data, 511); in cachefiles_update_object()
231 auxdata->len = auxlen + 1; in cachefiles_update_object()
232 auxdata->type = cookie->def->type; in cachefiles_update_object()
235 cachefiles_update_object_xattr(object, auxdata); in cachefiles_update_object()
237 kfree(auxdata); in cachefiles_update_object()
331 kfree(object->lookup_data->auxdata); in cachefiles_put_object()