[PATCH v1 03/12] bhyve: process: don't bother seeking to end of log

Ryan Moeller ryan at ixsystems.com
Mon Feb 24 06:46:15 UTC 2020


The file is opened O_APPEND.

Signed-off-by: Ryan Moeller <ryan at iXsystems.com>
---
 src/bhyve/bhyve_process.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/bhyve/bhyve_process.c b/src/bhyve/bhyve_process.c
index b0b428eeb4..a11f75a894 100644
--- a/src/bhyve/bhyve_process.c
+++ b/src/bhyve/bhyve_process.c
@@ -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)
-- 
2.24.1





More information about the libvir-list mailing list