-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(criu/files): patch for support cuda-checkpoint
- Loading branch information
1 parent
266f150
commit d7b9811
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,8 @@ int dump_unsupp_fd(struct fd_parms *p, int lfd, char *more, char *info, FdinfoEn | |
ret = do_dump_gen_file(p, lfd, &ext_dump_ops, e); | ||
if (ret == 0) | ||
return 0; | ||
if (ret == -ENOTSUP) | ||
pr_err("Can't dump file %d of that type [%o] (%s %s)\n", p->fd, p->stat.st_mode, more, info); | ||
if (ret == -ENOTSUP){ | ||
Check warning on line 93 in criu/files-ext.c GitHub Actions / build
Check warning on line 93 in criu/files-ext.c GitHub Actions / build
|
||
pr_info("Can't dump file %d of that type [%o] (%s %s)\n", p->fd, p->stat.st_mode, more, info); | ||
} | ||
return -1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters