From: George Dunlap <george.dunlap@citrix.com>
To: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
Roger Pau Monne <roger.pau@citrix.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>,
Wei Liu <wei.liu2@citrix.com>,
George Dunlap <George.Dunlap@eu.citrix.com>,
Andrew Cooper <andrew.cooper3@citrix.com>,
Ian Jackson <ian.jackson@eu.citrix.com>, Tim Deegan <tim@xen.org>,
Jan Beulich <jbeulich@suse.com>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH v3 3/7] coverage: introduce generic file
Date: Thu, 25 Jan 2018 15:02:33 +0000 [thread overview]
Message-ID: <ed990879-5b1e-df4e-4b9c-32c7d1a959cd@citrix.com> (raw)
In-Reply-To: <20180125144748.GD25449@char.us.oracle.com>
On 01/25/2018 02:47 PM, Konrad Rzeszutek Wilk wrote:
> On Wed, Jan 24, 2018 at 10:01:21AM +0000, Roger Pau Monne wrote:
>> It will contain the generic implementation of sysctl_cov_op, which
>> will be shared between all the coverage implementations.
>>
>> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
>> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
>> ---
>> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
>> Cc: George Dunlap <George.Dunlap@eu.citrix.com>
>> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
>> Cc: Jan Beulich <jbeulich@suse.com>
>> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
>> Cc: Stefano Stabellini <sstabellini@kernel.org>
>> Cc: Tim Deegan <tim@xen.org>
>> Cc: Wei Liu <wei.liu2@citrix.com>
>> ---
>> Changes since v1:
>> - Use private coverage.h header.
>> - Sort alphabetically the obj-y list.
>> ---
>> xen/common/coverage/Makefile | 2 +-
>> xen/common/coverage/coverage.c | 73 ++++++++++++++++++++++++++++++++++++++++++
>> xen/common/coverage/coverage.h | 1 +
>> xen/common/coverage/gcov.c | 39 +---------------------
>> 4 files changed, 76 insertions(+), 39 deletions(-)
>> create mode 100644 xen/common/coverage/coverage.c
>>
>> diff --git a/xen/common/coverage/Makefile b/xen/common/coverage/Makefile
>> index a7a48494ca..5387bc6429 100644
>> --- a/xen/common/coverage/Makefile
>> +++ b/xen/common/coverage/Makefile
>> @@ -1,4 +1,4 @@
>> -obj-y += gcov_base.o gcov.o
>> +obj-y += coverage.o gcov_base.o gcov.o
>> obj-y += $(call cc-ifversion,lt,0x040700, \
>> gcc_3_4.o, $(call cc-ifversion,lt,0x040900, \
>> gcc_4_7.o, $(call cc-ifversion,lt,0x050000, \
>> diff --git a/xen/common/coverage/coverage.c b/xen/common/coverage/coverage.c
>> new file mode 100644
>> index 0000000000..bd90f28663
>> --- /dev/null
>> +++ b/xen/common/coverage/coverage.c
>> @@ -0,0 +1,73 @@
>> +/*
>> + * Generic functionality for coverage analysis.
>> + *
>> + * Copyright (C) 2017 Citrix Systems R&D
>
> 2018 now I believe.
I'm pretty sure the copyright starts from the time the work is created,
not the time it gets checked into a public tree. Most of this would
have been written last year.
Since we're being pedantic. ;-)
-George
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2018-01-25 15:02 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-24 10:01 [PATCH v3 0/7] LLVM coverage support for Xen Roger Pau Monne
2018-01-24 10:01 ` [PATCH v3 1/7] gcov: rename sysctl and functions Roger Pau Monne
2018-01-24 11:13 ` Wei Liu
2018-01-24 10:01 ` [PATCH v3 2/7] gcov: introduce hooks for the sysctl Roger Pau Monne
2018-01-24 11:13 ` Wei Liu
2018-01-24 10:01 ` [PATCH v3 3/7] coverage: introduce generic file Roger Pau Monne
2018-01-24 11:14 ` Wei Liu
2018-01-25 14:47 ` Konrad Rzeszutek Wilk
2018-01-25 15:02 ` George Dunlap [this message]
2018-01-25 15:33 ` Ian Jackson
2018-01-24 10:01 ` [PATCH v3 4/7] kconfig/gcov: rename to coverage Roger Pau Monne
2018-01-24 11:17 ` Wei Liu
2018-02-07 10:53 ` [PATCH v4 " Roger Pau Monne
2018-02-07 11:05 ` Wei Liu
[not found] ` <5A7ADAE002000051043D0449@prv-mh.provo.novell.com>
2018-02-07 15:37 ` Jan Beulich
2018-02-07 16:16 ` Roger Pau Monné
2018-01-24 11:27 ` [PATCH v3 " Ian Jackson
2018-01-24 11:33 ` Wei Liu
2018-01-24 11:35 ` Ian Jackson
2018-01-24 11:38 ` Wei Liu
2018-01-24 10:01 ` [PATCH v3 5/7] coverage: introduce support for llvm profiling Roger Pau Monne
2018-01-24 11:18 ` Wei Liu
2018-01-24 10:01 ` [PATCH v3 6/7] xsm: add bodge when compiling with llvm coverage support Roger Pau Monne
2018-01-24 15:07 ` Daniel De Graaf
2018-01-24 10:01 ` [PATCH v3 7/7] coverage: add documentation for LLVM coverage Roger Pau Monne
2018-01-24 11:18 ` Wei Liu
2018-02-13 15:53 ` [PATCH v3 0/7] LLVM coverage support for Xen Roger Pau Monné
2018-02-13 16:16 ` Jan Beulich
2018-02-13 16:28 ` Roger Pau Monné
2018-02-13 17:00 ` Jan Beulich
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=ed990879-5b1e-df4e-4b9c-32c7d1a959cd@citrix.com \
--to=george.dunlap@citrix.com \
--cc=George.Dunlap@eu.citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=konrad.wilk@oracle.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=tim@xen.org \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.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.