public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: David Bristow <djbristow@optonline.net>
To: "Hesse, Christian" <mail@earthworm.de>
Cc: Avi Kivity <avi@qumranet.com>, Pavel Machek <pavel@ucw.cz>,
	kvm-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org,
	akpm@osdl.org
Subject: Re: [PATCH 12/14] KVM: x86 emulator
Date: Wed, 08 Nov 2006 11:54:08 -0500	[thread overview]
Message-ID: <1163004849.2652.1.camel@localhost.localdomain> (raw)
In-Reply-To: <200611071412.07196.mail@earthworm.de>

On Tue, 2006-11-07 at 14:12 +0100, Hesse, Christian wrote:
> On Tuesday 07 November 2006 13:55, Avi Kivity wrote:
> > Pavel Machek wrote:
> > >> Index: linux-2.6/drivers/kvm/x86_emulate.c
> > >> ===================================================================
> > >> --- /dev/null
> > >> +++ linux-2.6/drivers/kvm/x86_emulate.c
> > >> @@ -0,0 +1,1370 @@
> > >> +/**********************************************************************
> > >>******** + * x86_emulate.c
> > >> + *
> > >> + * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
> > >> + *
> > >> + * Copyright (c) 2005 Keir Fraser
> > >> + *
> > >> + * Linux coding style, mod r/m decoder, segment base fixes, real-mode
> > >> + * privieged instructions:
> > >> + *
> > >> + * Copyright (C) 2006 Qumranet
> > >> + *
> > >> + *   Avi Kivity <avi@qumranet.com>
> > >> + *   Yaniv Kamay <yaniv@qumranet.com>
> > >> + *
> > >> + * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
> > >> + */
> > >
> > > This needs GPL, I'd say.
> > > 									Pavel
> >
> > The entire patchset is GPL'ed.  Do you mean to make it explicit?  If so,
> > how?  I'd rather not copy the entire license into each file.
> >
> > Doesn't ../../COPYING cover it, presuming it's accepted?
> 
> I think Pavel references to these lines...
> 
> /*
>  *  This program is free software; you can redistribute it and/or modify
>  *  it under the terms of the GNU General Public License as published by
>  *  the Free Software Foundation; either version 2 of the License, or
>  *  (at your option) any later version.
>  *
>  *  This program is distributed in the hope that it will be useful,
>  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
>  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>  *  GNU General Public License for more details.
>  *
>  *  You should have received a copy of the GNU General Public License
>  *  along with this program; if not, write to the Free Software
>  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
>  */
> 
> You should at least add a line like "This file is licensed under the terms of 
> the GPL v2 license (or any later version).".

There is a problem with this boiler-plate that should get fixed:  the
FSF no longer resides at that address, they've moved.  The new address
is:

Free Software Foundation
51 Franklin Street, Fifth Floor
Boston, MA 02110-1301
USA


-- 
David Bristow
djbristow@optonline.net


  reply	other threads:[~2006-11-08 16:54 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-05 20:27 [PATCH 0/14] KVM: Kernel-based Virtual Machine (v4) Avi Kivity
2006-11-05 20:29 ` [PATCH 1/14] KVM: userspace interface Avi Kivity
2006-11-06 10:03   ` Arjan van de Ven
2006-11-06 10:28     ` Avi Kivity
2006-11-06 10:32       ` Arjan van de Ven
2006-11-06 10:47         ` Avi Kivity
2006-11-05 20:30 ` [PATCH 2/14] KVM: Intel virtual mode extensions definitions Avi Kivity
2006-11-05 20:31 ` [PATCH 3/14] KVM: kvm data structures Avi Kivity
2006-11-05 20:32 ` [PATCH 4/14] KVM: random accessors and constants Avi Kivity
2006-11-05 20:33 ` [PATCH 5/14] KVM: virtualization infrastructure Avi Kivity
2006-11-05 20:34 ` [PATCH 6/14] KVM: memory slot management Avi Kivity
2006-11-05 20:35 ` [PATCH 7/14] KVM: vcpu creation and maintenance Avi Kivity
2006-11-05 20:36 ` [PATCH 8/14] KVM: vcpu execution loop Avi Kivity
2006-11-05 20:37 ` [PATCH 9/14] KVM: define exit handlers Avi Kivity
2006-11-05 20:38 ` [PATCH 10/14] KVM: less common " Avi Kivity
2006-11-05 20:39 ` [PATCH 11/14] KVM: mmu Avi Kivity
2006-11-05 20:40 ` [PATCH 12/14] KVM: x86 emulator Avi Kivity
2006-11-07 12:49   ` Pavel Machek
2006-11-07 12:55     ` Avi Kivity
2006-11-07 13:00       ` Arjan van de Ven
2006-11-07 13:22         ` Avi Kivity
2006-11-07 13:35           ` Miguel Ojeda
2006-11-07 13:44           ` Arjan van de Ven
2006-11-07 13:12       ` Hesse, Christian
2006-11-08 16:54         ` David Bristow [this message]
2006-11-05 20:41 ` [PATCH 13/14] KVM: plumbing Avi Kivity
2006-11-05 20:42 ` [PATCH 14/14] KVM: Dynamically determine which msrs to load and save Avi Kivity
2006-11-07 16:59 ` [PATCH 0/14] KVM: Kernel-based Virtual Machine (v4) Yinghai Lu
2006-11-07 19:56   ` Avi Kivity
2006-11-08  4:44 ` Andrew Morton
2006-11-08  4:51   ` Roland Dreier
2006-11-08  7:14     ` Avi Kivity
2006-11-08  7:33       ` Andrew Morton
2006-11-08  8:07         ` Avi Kivity
2006-11-08  8:30           ` Andrew Morton
2006-11-08  9:39           ` Arjan van de Ven
2006-11-08  9:54             ` Avi Kivity
2006-11-08 10:01               ` Arjan van de Ven
2006-11-08 10:10                 ` Avi Kivity
2006-11-08 18:26       ` Roland Dreier

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=1163004849.2652.1.camel@localhost.localdomain \
    --to=djbristow@optonline.net \
    --cc=akpm@osdl.org \
    --cc=avi@qumranet.com \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mail@earthworm.de \
    --cc=pavel@ucw.cz \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox