[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1] tools: fix incorrect suggestions for XENCONSOLED_TRACE on FreeBSD
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: Olaf Hering <olaf@xxxxxxxxx>
- Date: Tue, 4 May 2021 15:50:21 +0200
- Arc-authentication-results: i=1; strato.com; dkim=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; t=1620136224; s=strato-dkim-0002; d=strato.com; h=Message-Id:Date:Subject:Cc:To:From:Cc:Date:From:Subject:Sender; bh=vDyx0ZuQU8vpmVvwjvDTlZpcimiw0UixQ+F6nK5gDqk=; b=QKHMa4IfSyrr3d9DaGPaYp4DHp6Mnoo7UvcJ9qr5EjbF5B5Ixv65cP6EwLBFOZjD+Z SRcAp3RotZYd5oNY0+DnyvyEXrQdF5wgzt6SVWMrC0+CKaj3bgtiJzvgKAtWb31bG3Go 7D5yQpr85k4sB/hhESQhw0wDvSab3GMpLmWKz+DcPNxCsuvIefMCw4y2B/1q/bUl29HT ouIguslYOZlDSkiZUI4o8NLn+BfiLKW+h9OlaO3ZKGDMKq+hpypmaAcW34Z8hp8thv0u u12p5PhLyBoUhGSRbtTBjpMKXRpy09ojQhfN/WF0xeA9SoHoFEXBbKNVYPdyFRoBghfB CrKg==
- Arc-seal: i=1; a=rsa-sha256; t=1620136224; cv=none; d=strato.com; s=strato-dkim-0002; b=qE8yF2Dns1Tls5uOBaKOIKql6WE9W5vhBtEi5pPPUA0+ClFUzz0DVEeKVdyHz7O8N3 rsTZibD/YRrMbZC4cYV0V61eE28KkqBz2WZX64YVsMP5xQisg3v6El0F6gcnbGsHF3Mt eQAu++0sp338KLqtWhInSgN2LcsMyTJmvOjOzE9eOK1IY1Rm1D4t1BNj/CHi/xjs9XI+ AhFRIl/MKJWoyXKdW1avb93ayqPbS29ro6KxW3AkM3FKkTr2FzGqgfr5kmzRgn8YevXx vQlwA0ElN+9L+LaLEvgAjzDBw4VcGSCy43PuYkumXe4Eqa8AEtTzCiuygRH2dO853/v3 zLWQ==
- Authentication-results: strato.com; dkim=none
- Cc: Olaf Hering <olaf@xxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
- Delivery-date: Tue, 04 May 2021 13:50:33 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
--log does not take a file, it specifies what is supposed to be logged.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
---
tools/hotplug/FreeBSD/rc.d/xencommons.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/hotplug/FreeBSD/rc.d/xencommons.in
b/tools/hotplug/FreeBSD/rc.d/xencommons.in
index ccd5a9b055..36dd717944 100644
--- a/tools/hotplug/FreeBSD/rc.d/xencommons.in
+++ b/tools/hotplug/FreeBSD/rc.d/xencommons.in
@@ -23,7 +23,7 @@ required_files="/dev/xen/xenstored"
XENSTORED_PIDFILE="@XEN_RUN_DIR@/xenstored.pid"
XENCONSOLED_PIDFILE="@XEN_RUN_DIR@/xenconsoled.pid"
-#XENCONSOLED_TRACE="@XEN_LOG_DIR@/xenconsole-trace.log"
+#XENCONSOLED_TRACE="none|guest|hv|all"
#XENSTORED_TRACE="@XEN_LOG_DIR@/xen/xenstore-trace.log"
load_rc_config $name
|