Lines Matching full:free
31 void (*free)(void *data); member
45 devcd->free(devcd->data); in devcd_dev_release()
178 * This function takes ownership of the vmalloc'ed data and will free
196 * devcd_free_sgtable - free all the memory of the given scatterlist table
201 * @data: pointer to sg_table to free
234 * dev_coredumpm - create device coredump with read/free methods
236 * @owner: the module that contains the read/free functions, use %THIS_MODULE
237 * @data: data cookie for the @read/@free functions
241 * @free: function to free the given buffer
245 * by the device coredump framework and when it is no longer needed the @free
246 * function will be called to free the data.
252 void (*free)(void *data)) in dev_coredumpm()
259 goto free; in dev_coredumpm()
265 goto free; in dev_coredumpm()
269 goto free; in dev_coredumpm()
279 devcd->free = free; in dev_coredumpm()
310 free: in dev_coredumpm()
311 free(data); in dev_coredumpm()
326 * it will free the data.