Lines Matching refs:auxdata
17 struct cachefiles_xattr *auxdata; /* auxiliary data */ member
33 struct cachefiles_xattr *auxdata; in cachefiles_alloc_object() local
86 auxdata = buffer; in cachefiles_alloc_object()
93 memcpy(auxdata->data, p, auxlen); in cachefiles_alloc_object()
96 auxdata->len = auxlen + 1; in cachefiles_alloc_object()
97 auxdata->type = cookie->type; in cachefiles_alloc_object()
99 lookup_data->auxdata = auxdata; in cachefiles_alloc_object()
145 lookup_data->auxdata); in cachefiles_lookup_object()
176 kfree(object->lookup_data->auxdata); in cachefiles_lookup_complete()
211 struct cachefiles_xattr *auxdata; in cachefiles_update_object() local
238 auxdata = kmalloc(2 + auxlen + 3, cachefiles_gfp); in cachefiles_update_object()
239 if (!auxdata) { in cachefiles_update_object()
248 memcpy(auxdata->data, aux, auxlen); in cachefiles_update_object()
251 auxdata->len = auxlen + 1; in cachefiles_update_object()
252 auxdata->type = cookie->type; in cachefiles_update_object()
255 cachefiles_update_object_xattr(object, auxdata); in cachefiles_update_object()
257 kfree(auxdata); in cachefiles_update_object()
363 kfree(object->lookup_data->auxdata); in cachefiles_put_object()