Lines Matching refs:drv_info
195 struct bnad_debug_info *drv_info; in bnad_debugfs_open_drvinfo() local
198 drv_info = kzalloc(sizeof(struct bnad_debug_info), GFP_KERNEL); in bnad_debugfs_open_drvinfo()
199 if (!drv_info) in bnad_debugfs_open_drvinfo()
202 drv_info->buffer_len = sizeof(struct bnad_drvinfo); in bnad_debugfs_open_drvinfo()
204 drv_info->debug_buffer = kzalloc(drv_info->buffer_len, GFP_KERNEL); in bnad_debugfs_open_drvinfo()
205 if (!drv_info->debug_buffer) { in bnad_debugfs_open_drvinfo()
206 kfree(drv_info); in bnad_debugfs_open_drvinfo()
207 drv_info = NULL; in bnad_debugfs_open_drvinfo()
212 rc = bnad_get_debug_drvinfo(bnad, drv_info->debug_buffer, in bnad_debugfs_open_drvinfo()
213 drv_info->buffer_len); in bnad_debugfs_open_drvinfo()
216 kfree(drv_info->debug_buffer); in bnad_debugfs_open_drvinfo()
217 drv_info->debug_buffer = NULL; in bnad_debugfs_open_drvinfo()
218 kfree(drv_info); in bnad_debugfs_open_drvinfo()
219 drv_info = NULL; in bnad_debugfs_open_drvinfo()
225 file->private_data = drv_info; in bnad_debugfs_open_drvinfo()