From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eqgbu-0006zk-4a for guix-patches@gnu.org; Tue, 27 Feb 2018 09:52:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eqgbq-0006Zr-BH for guix-patches@gnu.org; Tue, 27 Feb 2018 09:52:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54968) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eqgbq-0006YN-5g for guix-patches@gnu.org; Tue, 27 Feb 2018 09:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eqgbp-0004B8-Vc for guix-patches@gnu.org; Tue, 27 Feb 2018 09:52:01 -0500 Subject: [bug#30604] [PATCH v5 6/7] vm: Make the virtio-blk is uniquely identifyable in /sys. Resent-Message-ID: From: Danny Milosavljevic Date: Tue, 27 Feb 2018 16:50:50 +0100 Message-Id: <20180227155051.1141-7-dannym@scratchpost.org> In-Reply-To: <20180227155051.1141-1-dannym@scratchpost.org> References: <20180227112619.5071-1-dannym@scratchpost.org> <20180227155051.1141-1-dannym@scratchpost.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30604@debbugs.gnu.org * gnu/build/vm.scm (load-in-linux-vm): Set virtio-blk pci addr to 0x10. * gnu/system/vm.scm (common-qemu-options): Set virtio-blk pci addr to 0x10. --- gnu/build/vm.scm | 2 +- gnu/system/vm.scm | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index fe003ea45..ebf9e9f6e 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm @@ -154,7 +154,7 @@ the #:references-graphs parameter of 'derivation'." builder) (append (if make-disk-image? - `("-device" "virtio-blk,drive=myhd" + `("-device" "virtio-blk-pci,addr=0x10,drive=myhd" "-drive" ,(string-append "if=none,file=" output ",format=" disk-image-format ",id=myhd")) diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index b5a559012..fdff64ed9 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -706,7 +706,8 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." #$@(map virtfs-option shared-fs) "-vga std" - (format #f "-drive file=~a,if=virtio,cache=writeback,werror=report,readonly" + "-device" "virtio-blk-pci,addr=0x10,drive=myhd" + (format #f "-drive id=myhd,file=~a,if=none,cache=writeback,werror=report,readonly" #$image))) (define* (system-qemu-image/shared-store-script os