xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Ian Campbell <ian.campbell@citrix.com>,
	Mike Belopuhov <mike.belopuhov@esdenera.com>,
	xen-devel@lists.xen.org, Wei Liu <wei.liu2@citrix.com>
Cc: Keir Fraser <keir@xen.org>
Subject: Re: [PATCH] Add missing license and copyright statements to public interface headers.
Date: Thu, 24 Sep 2015 09:17:08 -0400	[thread overview]
Message-ID: <5603F7D4.9020009@oracle.com> (raw)
In-Reply-To: <1443091556.10338.267.camel@citrix.com>

On 09/24/2015 06:45 AM, Ian Campbell wrote:
> On Tue, 2015-09-22 at 16:02 +0200, Mike Belopuhov wrote:
>> The copyright line indicates a person, a group of people and/or a company
>> granting rights stated in the license text and is a required part of the
>> license.
>>
>> The year of the copyright is chosen to be the same as when the license has
>> been applied to the file or when the file has been created in case there
>> was no license.  It is possible to update or add additional years if major
>> changes have been done to the the file, but is generally not a requirement.
>>
>> Signed-off-by: Mike Belopuhov <mike.belopuhov@esdenera.com>
> LGTM, thanks. I'll wait for Konrad and/or Boris to confirm that Oracle are
> happy with this wording etc.

This looks like we were told it should look, so I am OK with this.

-boris

> Keir's one matches all his others so I think
> we can assume it is ok unless we hear otherwise.
>
> Wei, I can't think of a reason not to include this in 4.6, does that work
> for you?
>
>> ---
>>   xen/include/public/arch-x86/pmu.h       | 22 ++++++++++++++++++++++
>>   xen/include/public/hvm/e820.h           |  3 ++-
>>   xen/include/public/hvm/hvm_info_table.h |  2 ++
>>   xen/include/public/hvm/hvm_op.h         |  2 ++
>>   xen/include/public/hvm/hvm_xs_strings.h |  2 ++
>>   xen/include/public/hvm/params.h         |  2 ++
>>   xen/include/public/io/protocols.h       |  2 ++
>>   xen/include/public/physdev.h            |  2 ++
>>   xen/include/public/pmu.h                | 22 ++++++++++++++++++++++
>>   9 files changed, 58 insertions(+), 1 deletion(-)
>>
>> diff --git xen/include/public/arch-x86/pmu.h xen/include/public/arch
>> -x86/pmu.h
>> index 1a53888..68ebf12 100644
>> --- xen/include/public/arch-x86/pmu.h
>> +++ xen/include/public/arch-x86/pmu.h
>> @@ -1,5 +1,27 @@
>> +/*
>> + * Permission is hereby granted, free of charge, to any person obtaining
>> a copy
>> + * of this software and associated documentation files (the "Software"),
>> to
>> + * deal in the Software without restriction, including without
>> limitation the
>> + * rights to use, copy, modify, merge, publish, distribute, sublicense,
>> and/or
>> + * sell copies of the Software, and to permit persons to whom the
>> Software is
>> + * furnished to do so, subject to the following conditions:
>> + *
>> + * The above copyright notice and this permission notice shall be
>> included in
>> + * all copies or substantial portions of the Software.
>> + *
>> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
>> EXPRESS OR
>> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
>> MERCHANTABILITY,
>> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>> + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>> + * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
>> + */
>> +
>>   #ifndef __XEN_PUBLIC_ARCH_X86_PMU_H__
>>   #define __XEN_PUBLIC_ARCH_X86_PMU_H__
>>   
>>   /* x86-specific PMU definitions */
>>   
>> diff --git xen/include/public/hvm/e820.h xen/include/public/hvm/e820.h
>> index 5bdc227..6c58a37 100644
>> --- xen/include/public/hvm/e820.h
>> +++ xen/include/public/hvm/e820.h
>> @@ -1,6 +1,5 @@
>> -
>>   /*
>>    * Permission is hereby granted, free of charge, to any person obtaining
>> a copy
>>    * of this software and associated documentation files (the "Software"),
>> to
>>    * deal in the Software without restriction, including without
>> limitation the
>>    * rights to use, copy, modify, merge, publish, distribute, sublicense,
>> and/or
>> @@ -15,10 +14,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2006, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_HVM_E820_H__
>>   #define __XEN_PUBLIC_HVM_E820_H__
>>   
>> diff --git xen/include/public/hvm/hvm_info_table.h
>> xen/include/public/hvm/hvm_info_table.h
>> index 36085fa..9e3f807 100644
>> --- xen/include/public/hvm/hvm_info_table.h
>> +++ xen/include/public/hvm/hvm_info_table.h
>> @@ -18,10 +18,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2006, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_HVM_HVM_INFO_TABLE_H__
>>   #define __XEN_PUBLIC_HVM_HVM_INFO_TABLE_H__
>>   
>> diff --git xen/include/public/hvm/hvm_op.h
>> xen/include/public/hvm/hvm_op.h
>> index 014546a..1606185 100644
>> --- xen/include/public/hvm/hvm_op.h
>> +++ xen/include/public/hvm/hvm_op.h
>> @@ -14,10 +14,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2007, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_HVM_HVM_OP_H__
>>   #define __XEN_PUBLIC_HVM_HVM_OP_H__
>>   
>> diff --git xen/include/public/hvm/hvm_xs_strings.h
>> xen/include/public/hvm/hvm_xs_strings.h
>> index 8aec935..146b0b0 100644
>> --- xen/include/public/hvm/hvm_xs_strings.h
>> +++ xen/include/public/hvm/hvm_xs_strings.h
>> @@ -18,10 +18,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2013, Citrix Systems
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_HVM_HVM_XS_STRINGS_H__
>>   #define __XEN_PUBLIC_HVM_HVM_XS_STRINGS_H__
>>   
>> diff --git xen/include/public/hvm/params.h
>> xen/include/public/hvm/params.h
>> index 147d9b8..356dfd3 100644
>> --- xen/include/public/hvm/params.h
>> +++ xen/include/public/hvm/params.h
>> @@ -14,10 +14,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2007, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_HVM_PARAMS_H__
>>   #define __XEN_PUBLIC_HVM_PARAMS_H__
>>   
>> diff --git xen/include/public/io/protocols.h
>> xen/include/public/io/protocols.h
>> index 80b196b..40a9b30 100644
>> --- xen/include/public/io/protocols.h
>> +++ xen/include/public/io/protocols.h
>> @@ -16,10 +16,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2008, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PROTOCOLS_H__
>>   #define __XEN_PROTOCOLS_H__
>>   
>> diff --git xen/include/public/physdev.h xen/include/public/physdev.h
>> index c9be6de..0e54635 100644
>> --- xen/include/public/physdev.h
>> +++ xen/include/public/physdev.h
>> @@ -14,10 +14,12 @@
>>    * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>>    * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>>    * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>>    * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>>    * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2006, Keir Fraser
>>    */
>>   
>>   #ifndef __XEN_PUBLIC_PHYSDEV_H__
>>   #define __XEN_PUBLIC_PHYSDEV_H__
>>   
>> diff --git xen/include/public/pmu.h xen/include/public/pmu.h
>> index 1149678..7753df0 100644
>> --- xen/include/public/pmu.h
>> +++ xen/include/public/pmu.h
>> @@ -1,5 +1,27 @@
>> +/*
>> + * Permission is hereby granted, free of charge, to any person obtaining
>> a copy
>> + * of this software and associated documentation files (the "Software"),
>> to
>> + * deal in the Software without restriction, including without
>> limitation the
>> + * rights to use, copy, modify, merge, publish, distribute, sublicense,
>> and/or
>> + * sell copies of the Software, and to permit persons to whom the
>> Software is
>> + * furnished to do so, subject to the following conditions:
>> + *
>> + * The above copyright notice and this permission notice shall be
>> included in
>> + * all copies or substantial portions of the Software.
>> + *
>> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
>> EXPRESS OR
>> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
>> MERCHANTABILITY,
>> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
>> SHALL THE
>> + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
>> OTHER
>> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
>> ARISING
>> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
>> + * DEALINGS IN THE SOFTWARE.
>> + *
>> + * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
>> + */
>> +
>>   #ifndef __XEN_PUBLIC_PMU_H__
>>   #define __XEN_PUBLIC_PMU_H__
>>   
>>   #include "xen.h"
>>   #if defined(__i386__) || defined(__x86_64__)

  reply	other threads:[~2015-09-24 13:17 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-22 14:02 [PATCH] Add missing license and copyright statements to public interface headers Mike Belopuhov
2015-09-24 10:45 ` Ian Campbell
2015-09-24 13:17   ` Boris Ostrovsky [this message]
2015-09-24 15:04     ` Konrad Rzeszutek Wilk
2015-09-24 16:06   ` Wei Liu
2015-09-25  7:12 ` Jan Beulich
2015-09-28  9:24   ` Mike Belopuhov
2015-09-29 12:03     ` Mike Belopuhov
2015-09-29 12:23       ` Andrew Cooper
2015-09-29 13:34         ` Mike Belopuhov
  -- strict thread matches above, loose matches on Subject: below --
2015-09-17 11:53 Mike Belopuhov
2015-09-17 18:52 ` Konrad Rzeszutek Wilk
2015-09-18  8:44 ` Ian Campbell
2015-09-18 12:00   ` Boris Ostrovsky
2015-09-18 14:13     ` Konrad Rzeszutek Wilk
2015-09-22 11:42       ` Mike Belopuhov
2015-09-22 13:00         ` Konrad Rzeszutek Wilk
2015-09-22 13:58           ` Mike Belopuhov

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=5603F7D4.9020009@oracle.com \
    --to=boris.ostrovsky@oracle.com \
    --cc=ian.campbell@citrix.com \
    --cc=keir@xen.org \
    --cc=mike.belopuhov@esdenera.com \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).