Lines Matching full:free
72 void (*free)(void *data); member
86 devcd->free(devcd->data); in devcd_dev_release()
252 * This function takes ownership of the vmalloc'ed data and will free
270 * devcd_free_sgtable - free all the memory of the given scatterlist table
275 * @data: pointer to sg_table to free
308 * dev_coredumpm - create device coredump with read/free methods
310 * @owner: the module that contains the read/free functions, use %THIS_MODULE
311 * @data: data cookie for the @read/@free functions
315 * @free: function to free the given buffer
319 * by the device coredump framework and when it is no longer needed the @free
320 * function will be called to free the data.
326 void (*free)(void *data)) in dev_coredumpm()
333 goto free; in dev_coredumpm()
339 goto free; in dev_coredumpm()
343 goto free; in dev_coredumpm()
353 devcd->free = free; in dev_coredumpm()
391 free: in dev_coredumpm()
392 free(data); in dev_coredumpm()
407 * it will free the data.