]> xenbits.xensource.com Git - libvirt.git/commitdiff
bhyve: process: don't bother seeking to end of log
authorRyan Moeller <ryan@ixsystems.com>
Mon, 24 Feb 2020 06:46:15 +0000 (01:46 -0500)
committerDaniel P. Berrangé <berrange@redhat.com>
Mon, 24 Feb 2020 17:24:53 +0000 (17:24 +0000)
The file is opened O_APPEND.

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
src/bhyve/bhyve_process.c

index b0b428eeb4f7534c080a2d06b5714115a98fa630..a11f75a894cc4d15b663df8f31d89be57df3bbeb 100644 (file)
@@ -101,8 +101,6 @@ virBhyveProcessStart(virConnectPtr conn,
     char *devicemap = NULL;
     char *logfile = NULL;
     int logfd = -1;
-    off_t pos = -1;
-    char ebuf[1024];
     virCommandPtr cmd = NULL;
     virCommandPtr load_cmd = NULL;
     bhyveConnPtr driver = conn->privateData;
@@ -172,9 +170,6 @@ virBhyveProcessStart(virConnectPtr conn,
 
         /* Log generated command line */
         virCommandWriteArgLog(load_cmd, logfd);
-        if ((pos = lseek(logfd, 0, SEEK_END)) < 0)
-            VIR_WARN("Unable to seek to end of logfile: %s",
-                     virStrerror(errno, ebuf, sizeof(ebuf)));
 
         VIR_DEBUG("Loading domain '%s'", vm->def->name);
         if (virCommandRun(load_cmd, NULL) < 0)