From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id CE113735CB for ; Fri, 28 May 2021 13:54:25 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id CA72D905F for ; Fri, 28 May 2021 13:54:25 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id A1CF79008 for ; Fri, 28 May 2021 13:54:24 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 7B228466BE for ; Fri, 28 May 2021 13:54:24 +0200 (CEST) Message-ID: Date: Fri, 28 May 2021 13:54:23 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:89.0) Gecko/20100101 Thunderbird/89.0 Content-Language: en-US To: Proxmox VE development discussion , Stefan Reiter References: <20210527102751.15391-1-s.reiter@proxmox.com> From: Thomas Lamprecht In-Reply-To: <20210527102751.15391-1-s.reiter@proxmox.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.233 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [qemuserver.pm] Subject: [pve-devel] applied-series: [PATCH qemu-server 1/2] cfg2cmd: use long form QEMU parameters to avoid warning in 6.0 X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 May 2021 11:54:25 -0000 On 27.05.21 12:27, Stefan Reiter wrote: > QEMU warns us about this: > > kvm: -chardev socket,id=qmp,path=/var/run/qemu-server/100.qmp,server,nowait: warning: short-form boolean option 'server' deprecated > Please use server=on instead > kvm: -chardev socket,id=qmp,path=/var/run/qemu-server/100.qmp,server,nowait: warning: short-form boolean option 'nowait' deprecated > Please use wait=off instead > kvm: -vnc unix:/var/run/qemu-server/100.vnc,password: warning: short-form boolean option 'password' deprecated > Please use password=on instead > > The new syntax is backwards compatible to at least QEMU 4.0. > > Signed-off-by: Stefan Reiter > --- > PVE/QemuServer.pm | 14 +++++++------- > test/cfg2cmd/bootorder-empty.conf.cmd | 4 ++-- > test/cfg2cmd/bootorder-legacy.conf.cmd | 4 ++-- > test/cfg2cmd/bootorder.conf.cmd | 4 ++-- > test/cfg2cmd/custom-cpu-model-defaults.conf.cmd | 4 ++-- > .../custom-cpu-model-host-phys-bits.conf.cmd | 4 ++-- > test/cfg2cmd/custom-cpu-model.conf.cmd | 4 ++-- > test/cfg2cmd/efi-raw-old.conf.cmd | 6 +++--- > test/cfg2cmd/efi-raw.conf.cmd | 6 +++--- > test/cfg2cmd/i440fx-win10-hostpci.conf.cmd | 6 +++--- > test/cfg2cmd/minimal-defaults.conf.cmd | 4 ++-- > test/cfg2cmd/netdev.conf.cmd | 4 ++-- > test/cfg2cmd/pinned-version-pxe-pve.conf.cmd | 4 ++-- > test/cfg2cmd/pinned-version-pxe.conf.cmd | 4 ++-- > test/cfg2cmd/pinned-version.conf.cmd | 4 ++-- > .../q35-linux-hostpci-multifunction.conf.cmd | 6 +++--- > test/cfg2cmd/q35-linux-hostpci.conf.cmd | 6 +++--- > test/cfg2cmd/q35-win10-hostpci.conf.cmd | 6 +++--- > test/cfg2cmd/simple-virtio-blk.conf.cmd | 4 ++-- > test/cfg2cmd/simple1.conf.cmd | 4 ++-- > test/cfg2cmd/spice-enhancments.conf.cmd | 4 ++-- > test/cfg2cmd/spice-linux-4.1.conf.cmd | 4 ++-- > test/cfg2cmd/spice-usb3.conf.cmd | 4 ++-- > test/cfg2cmd/spice-win.conf.cmd | 4 ++-- > 24 files changed, 59 insertions(+), 59 deletions(-) > > applied both patches, thanks!