Otherwise lima_dump_file_next() always opens a new file and creates the
dumps regardless of what the environment variables say.
Fixes
d71cd245d74 ('lima: Rotate dump files after each finished pp frame')
Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Andreas Baierl <ichgeh@imkreisrum.de>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3179>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3179>
void
lima_dump_file_next(void)
{
- lima_dump_file_close();
- lima_dump_frame_count++;
- lima_dump_file_open();
+ if (lima_dump_command_stream) {
+ lima_dump_file_close();
+ lima_dump_frame_count++;
+ lima_dump_file_open();
+ }
}
void