From: Andreas Herrmann <andreas.herrmann@caviumnetworks.com>
To: James Hogan <james.hogan@imgtec.com>
Cc: Pekka Enberg <penberg@kernel.org>,
David Daney <ddaney.cavm@gmail.com>, <kvm@vger.kernel.org>,
<linux-mips@linux-mips.org>
Subject: Re: [PATCH 07/11] kvm tools: Provide per arch macro to specify type for KVM_CREATE_VM
Date: Mon, 12 May 2014 12:46:58 +0200 [thread overview]
Message-ID: <20140512104658.GC15623@alberich> (raw)
In-Reply-To: <536D49E6.5050201@imgtec.com>
On Fri, May 09, 2014 at 10:34:30PM +0100, James Hogan wrote:
> Hi Andreas,
>
> On 06/05/14 16:51, Andreas Herrmann wrote:
> > This is is usually 0 for most archs. On mips we have two types.
> > TE (type 0) and MIPS-VZ (type 1). Default to 1 on mips.
> >
> > Signed-off-by: Andreas Herrmann <andreas.herrmann@caviumnetworks.com>
> > ---
> > tools/kvm/arm/include/arm-common/kvm-arch.h | 2 ++
> > tools/kvm/kvm.c | 2 +-
> > tools/kvm/mips/include/kvm/kvm-arch.h | 2 ++
> > tools/kvm/powerpc/include/kvm/kvm-arch.h | 2 ++
> > tools/kvm/x86/include/kvm/kvm-arch.h | 2 ++
> > 5 files changed, 9 insertions(+), 1 deletion(-)
> >
> > diff --git a/tools/kvm/arm/include/arm-common/kvm-arch.h b/tools/kvm/arm/include/arm-common/kvm-arch.h
> > index b6c4bf8..a552163 100644
> > --- a/tools/kvm/arm/include/arm-common/kvm-arch.h
> > +++ b/tools/kvm/arm/include/arm-common/kvm-arch.h
> > @@ -32,6 +32,8 @@
> >
> > #define KVM_IRQ_OFFSET GIC_SPI_IRQ_BASE
> >
> > +#define KVM_VM_TYPE 0
> > +
> > #define VIRTIO_DEFAULT_TRANS(kvm) \
> > ((kvm)->cfg.arch.virtio_trans_pci ? VIRTIO_PCI : VIRTIO_MMIO)
> >
> > diff --git a/tools/kvm/kvm.c b/tools/kvm/kvm.c
> > index cfc0693..278b915 100644
> > --- a/tools/kvm/kvm.c
> > +++ b/tools/kvm/kvm.c
> > @@ -284,7 +284,7 @@ int kvm__init(struct kvm *kvm)
> > goto err_sys_fd;
> > }
> >
> > - kvm->vm_fd = ioctl(kvm->sys_fd, KVM_CREATE_VM, 0);
> > + kvm->vm_fd = ioctl(kvm->sys_fd, KVM_CREATE_VM, KVM_VM_TYPE);
> > if (kvm->vm_fd < 0) {
> > pr_err("KVM_CREATE_VM ioctl");
> > ret = kvm->vm_fd;
> > diff --git a/tools/kvm/mips/include/kvm/kvm-arch.h b/tools/kvm/mips/include/kvm/kvm-arch.h
> > index 4a8407b..0210f0b 100644
> > --- a/tools/kvm/mips/include/kvm/kvm-arch.h
> > +++ b/tools/kvm/mips/include/kvm/kvm-arch.h
> > @@ -17,6 +17,8 @@
> >
> > #define KVM_IRQ_OFFSET 1
> >
> > +#define KVM_VM_TYPE 1
>
> A comment or define to clarify this wouldn't hurt.
Ok.
Thanks,
Andreas
WARNING: multiple messages have this Message-ID (diff)
From: Andreas Herrmann <andreas.herrmann@caviumnetworks.com>
To: James Hogan <james.hogan@imgtec.com>
Cc: Pekka Enberg <penberg@kernel.org>,
David Daney <ddaney.cavm@gmail.com>,
kvm@vger.kernel.org, linux-mips@linux-mips.org
Subject: Re: [PATCH 07/11] kvm tools: Provide per arch macro to specify type for KVM_CREATE_VM
Date: Mon, 12 May 2014 12:46:58 +0200 [thread overview]
Message-ID: <20140512104658.GC15623@alberich> (raw)
Message-ID: <20140512104658.hXYA_1u6ZnrK80cPDcBe98gjaqBrT64Kp9SieeHo_SI@z> (raw)
In-Reply-To: <536D49E6.5050201@imgtec.com>
On Fri, May 09, 2014 at 10:34:30PM +0100, James Hogan wrote:
> Hi Andreas,
>
> On 06/05/14 16:51, Andreas Herrmann wrote:
> > This is is usually 0 for most archs. On mips we have two types.
> > TE (type 0) and MIPS-VZ (type 1). Default to 1 on mips.
> >
> > Signed-off-by: Andreas Herrmann <andreas.herrmann@caviumnetworks.com>
> > ---
> > tools/kvm/arm/include/arm-common/kvm-arch.h | 2 ++
> > tools/kvm/kvm.c | 2 +-
> > tools/kvm/mips/include/kvm/kvm-arch.h | 2 ++
> > tools/kvm/powerpc/include/kvm/kvm-arch.h | 2 ++
> > tools/kvm/x86/include/kvm/kvm-arch.h | 2 ++
> > 5 files changed, 9 insertions(+), 1 deletion(-)
> >
> > diff --git a/tools/kvm/arm/include/arm-common/kvm-arch.h b/tools/kvm/arm/include/arm-common/kvm-arch.h
> > index b6c4bf8..a552163 100644
> > --- a/tools/kvm/arm/include/arm-common/kvm-arch.h
> > +++ b/tools/kvm/arm/include/arm-common/kvm-arch.h
> > @@ -32,6 +32,8 @@
> >
> > #define KVM_IRQ_OFFSET GIC_SPI_IRQ_BASE
> >
> > +#define KVM_VM_TYPE 0
> > +
> > #define VIRTIO_DEFAULT_TRANS(kvm) \
> > ((kvm)->cfg.arch.virtio_trans_pci ? VIRTIO_PCI : VIRTIO_MMIO)
> >
> > diff --git a/tools/kvm/kvm.c b/tools/kvm/kvm.c
> > index cfc0693..278b915 100644
> > --- a/tools/kvm/kvm.c
> > +++ b/tools/kvm/kvm.c
> > @@ -284,7 +284,7 @@ int kvm__init(struct kvm *kvm)
> > goto err_sys_fd;
> > }
> >
> > - kvm->vm_fd = ioctl(kvm->sys_fd, KVM_CREATE_VM, 0);
> > + kvm->vm_fd = ioctl(kvm->sys_fd, KVM_CREATE_VM, KVM_VM_TYPE);
> > if (kvm->vm_fd < 0) {
> > pr_err("KVM_CREATE_VM ioctl");
> > ret = kvm->vm_fd;
> > diff --git a/tools/kvm/mips/include/kvm/kvm-arch.h b/tools/kvm/mips/include/kvm/kvm-arch.h
> > index 4a8407b..0210f0b 100644
> > --- a/tools/kvm/mips/include/kvm/kvm-arch.h
> > +++ b/tools/kvm/mips/include/kvm/kvm-arch.h
> > @@ -17,6 +17,8 @@
> >
> > #define KVM_IRQ_OFFSET 1
> >
> > +#define KVM_VM_TYPE 1
>
> A comment or define to clarify this wouldn't hurt.
Ok.
Thanks,
Andreas
next prev parent reply other threads:[~2014-05-12 10:47 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-06 15:51 [PATCH 00/11] kvm tools: Misc patches (mips support) Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 01/11] kvm tools: Print message on failure of KVM_CREATE_VM Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 02/11] kvm tools: Fix print format warnings Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 03/11] kvm tools: Move definition of TERM_MAX_DEVS to header Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 04/11] kvm tools: Allow to load ELF binary Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 05/11] kvm tools, mips: Add MIPS support Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-09 21:15 ` James Hogan
2014-05-09 21:15 ` James Hogan
2014-05-12 13:01 ` Andreas Herrmann
2014-05-12 14:09 ` James Hogan
2014-05-12 14:09 ` James Hogan
2014-05-19 13:37 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 06/11] kvm tools, mips: Enable build of mips support Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-09 21:22 ` James Hogan
2014-05-09 21:22 ` James Hogan
2014-05-12 10:46 ` Andreas Herrmann
2014-05-12 10:46 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 07/11] kvm tools: Provide per arch macro to specify type for KVM_CREATE_VM Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-09 21:34 ` James Hogan
2014-05-09 21:34 ` James Hogan
2014-05-12 10:46 ` Andreas Herrmann [this message]
2014-05-12 10:46 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 08/11] kvm tools: Handle virtio/pci I/O space as little endian Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 09/11] kvm tools, mips: Add support for loading elf binaries Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 10/11] kvm tools: Introduce weak (default) load_bzimage function Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-09 21:44 ` James Hogan
2014-05-09 21:44 ` James Hogan
2014-05-12 10:47 ` Andreas Herrmann
2014-05-12 10:47 ` Andreas Herrmann
2014-05-06 15:51 ` [PATCH 11/11] kvm tools: Modify term_putc to write more than one char Andreas Herrmann
2014-05-06 15:51 ` Andreas Herrmann
2014-05-07 15:58 ` Sergei Shtylyov
2014-05-12 11:21 ` Andreas Herrmann
2014-05-12 11:21 ` Andreas Herrmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140512104658.GC15623@alberich \
--to=andreas.herrmann@caviumnetworks.com \
--cc=ddaney.cavm@gmail.com \
--cc=james.hogan@imgtec.com \
--cc=kvm@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=penberg@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.