Lines Matching refs:auxdata
13 struct cachefiles_xattr *auxdata; /* auxiliary data */ member
29 struct cachefiles_xattr *auxdata; in cachefiles_alloc_object() local
82 auxdata = buffer; in cachefiles_alloc_object()
89 memcpy(auxdata->data, p, auxlen); in cachefiles_alloc_object()
92 auxdata->len = auxlen + 1; in cachefiles_alloc_object()
93 auxdata->type = cookie->type; in cachefiles_alloc_object()
95 lookup_data->auxdata = auxdata; in cachefiles_alloc_object()
141 lookup_data->auxdata); in cachefiles_lookup_object()
172 kfree(object->lookup_data->auxdata); in cachefiles_lookup_complete()
207 struct cachefiles_xattr *auxdata; in cachefiles_update_object() local
234 auxdata = kmalloc(2 + auxlen + 3, cachefiles_gfp); in cachefiles_update_object()
235 if (!auxdata) { in cachefiles_update_object()
244 memcpy(auxdata->data, aux, auxlen); in cachefiles_update_object()
247 auxdata->len = auxlen + 1; in cachefiles_update_object()
248 auxdata->type = cookie->type; in cachefiles_update_object()
251 cachefiles_update_object_xattr(object, auxdata); in cachefiles_update_object()
253 kfree(auxdata); in cachefiles_update_object()
359 kfree(object->lookup_data->auxdata); in cachefiles_put_object()