Commit a1144f9f authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

zdtm: mountpoints -- Explicitly remove old /dev/null

We should explicitly unlink old /dev/null instance, otherwise
if such device already exist we might hit a problem as

 | (00.002984) 7412 fdinfo 0: pos: 0x               0 flags:           100002/0
 | (00.003015) Dumping path for 0 fd via self 42 [/dev/null]
 | (00.003025) Error (files-reg.c:422): Unaccessible path opened 2049:109720, need 5:10
 | (00.003033) Error (cr-dump.c:1565): Dump files (pid: 7412) failed with -1
Reported-by: 's avatarAlexander Kartashov <alekskartashov@parallels.com>
Tested-by: 's avatarAlexander Kartashov <alekskartashov@parallels.com>
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 087739d4
...@@ -92,6 +92,7 @@ done: ...@@ -92,6 +92,7 @@ done:
return 1; return 1;
} }
unlink("/dev/null");
mknod("/dev/null", 0777 | S_IFCHR, makedev(1, 3)); mknod("/dev/null", 0777 | S_IFCHR, makedev(1, 3));
setup_outfile(); setup_outfile();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment