From: Eric Blake <eblake@redhat.com>
To: "gchen gchen" <xili_gchen_5257@hotmail.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"rth@twiddle.net" <rth@twiddle.net>,
"Chris Metcalf" <cmetcalf@ezchip.com>,
"Andreas Färber" <afaerber@suse.de>,
"walt@tilera.com" <walt@tilera.com>,
"Riku Voipio" <riku.voipio@iki.fi>
Cc: qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] Subject: [PATCH 01/16] linux-user: tilegx: Firstly add architecture related features
Date: Thu, 20 Aug 2015 23:30:42 -0700 [thread overview]
Message-ID: <55D6C592.3000204@redhat.com> (raw)
In-Reply-To: <COL130-W66D46811C80929921A582EB9660@phx.gbl>
[-- Attachment #1: Type: text/plain, Size: 1300 bytes --]
On 08/20/2015 10:09 AM, gchen gchen wrote:
In the subject line,
s/Firstly add/Add/
('Firstly' is seldom used in English, and certainly not in the context
you were trying to use it)
> They are based on Linux kernel tilegx architecture for 64 bit binary,
> and also based on tilegx ABI reference document, and also reference from
> other targets implementations.
s/targets/targets'/
>
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> --- /dev/null
> +++ b/linux-user/tilegx/syscall.h
> @@ -0,0 +1,40 @@
> +#ifndef TILEGX_SYSCALLS_H
> +#define TILEGX_SYSCALLS_H
> +
> +#define UNAME_MACHINE "tilegx"
> +#define UNAME_MINIMUM_RELEASE "3.19"
New files should have a copyright license, particularly if the license
differs from the default of GPLv2+.
> --- /dev/null
> +++ b/linux-user/tilegx/syscall_nr.h
> @@ -0,0 +1,324 @@
> +#ifndef TILEGX_SYSCALL_NR
> +#define TILEGX_SYSCALL_NR
> +
> +/*
> + * Copy from linux kernel asm-generic/unistd.h, which tilegx uses.
and since you appear to be copying from the kernel (which is often
GPLv2-only rather than GPLv2+), it matters.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2015-08-21 6:30 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <55D608BF.4050806@hotmail.com>
2015-08-20 17:04 ` [Qemu-devel] [PATCH 00/16] tilegx: Firstly add tilegx target for linux-user gchen gchen
[not found] ` <55D609D2.9050309@hotmail.com>
2015-08-20 17:09 ` [Qemu-devel] Subject: [PATCH 01/16] linux-user: tilegx: Firstly add architecture related features gchen gchen
2015-08-21 6:30 ` Eric Blake [this message]
2015-08-21 6:38 ` Eric Blake
[not found] ` <55D79D6C.9020001@hotmail.com>
2015-08-21 21:51 ` gchen gchen
[not found] ` <55D60A0A.5010802@hotmail.com>
2015-08-20 17:12 ` [Qemu-devel] [PATCH 02/16] linux-user: Support tilegx architecture in linux-user gchen gchen
[not found] ` <55D60B31.6010001@hotmail.com>
2015-08-20 17:14 ` [Qemu-devel] [PATCH 03/16] linux-user/syscall.c: conditionalize syscalls which are not defined in tilegx gchen gchen
[not found] ` <55D60BB3.6000005@hotmail.com>
2015-08-20 17:16 ` [Qemu-devel] [PATCH 04/16] target-tilegx: Add opcode basic implementation from Tilera Corporation gchen gchen
[not found] ` <55D60C1A.5030206@hotmail.com>
2015-08-20 17:18 ` [Qemu-devel] [PATCH 05/16] target-tilegx/opcode_tilegx.h: Modify it to fit QEMU usage gchen gchen
[not found] ` <55D60C72.1050003@hotmail.com>
2015-08-20 17:19 ` [Qemu-devel] [PATCH 06/16] target-tilegx: Add special register information from Tilera Corporation gchen gchen
[not found] ` <55D60CD0.3070605@hotmail.com>
2015-08-20 17:21 ` [Qemu-devel] [PATCH 07/16] target-tilegx: Add cpu basic features for linux-user gchen gchen
[not found] ` <55D60D32.2030705@hotmail.com>
2015-08-20 17:22 ` [Qemu-devel] [PATCH 08/16] target-tilegx: Add several helpers for instructions translation gchen gchen
[not found] ` <55D60DB2.3070605@hotmail.com>
2015-08-20 17:25 ` [Qemu-devel] [PATCH 09/16] target-tilegx: Generate tcg instructions to finish "Hello world" gchen gchen
[not found] ` <55D60F06.30008@hotmail.com>
2015-08-20 17:30 ` [Qemu-devel] [PATCH 00/16] tilegx: Firstly add tilegx target for linux-user gchen gchen
2015-08-20 21:32 ` [Qemu-devel] [PATCH 00/16 v1] " Chen Gang
2015-08-20 21:35 ` [Qemu-devel] [PATCH 01/16 v1] linux-user: tilegx: Firstly add architecture related features Chen Gang
2015-08-20 21:36 ` [Qemu-devel] [PATCH 02/16 v1] linux-user: Support tilegx architecture in linux-user Chen Gang
2015-08-20 21:37 ` [Qemu-devel] [PATCH 03/16 v1] linux-user/syscall.c: conditionalize syscalls which are not defined in tilegx Chen Gang
2015-08-20 21:38 ` [Qemu-devel] [PATCH 04/16 v1] target-tilegx: Add opcode basic implementation from Tilera Corporation Chen Gang
2015-08-20 21:39 ` [Qemu-devel] [PATCH 05/16 v1] target-tilegx/opcode_tilegx.h: Modify it to fit QEMU usage Chen Gang
2015-08-20 21:40 ` [Qemu-devel] [PATCH 06/16 v1] target-tilegx: Add special register information from Tilera Corporation Chen Gang
2015-08-20 21:41 ` [Qemu-devel] [PATCH 07/16 v1] target-tilegx: Add cpu basic features for linux-user Chen Gang
2015-08-20 21:41 ` [Qemu-devel] [PATCH 08/16 v1] target-tilegx: Add several helpers for instructions translation Chen Gang
2015-08-20 21:42 ` [Qemu-devel] [PATCH 09/16 v1] target-tilegx: Generate tcg instructions to finish "Hello world" Chen Gang
2015-08-20 21:44 ` [Qemu-devel] [PATCH 11/16 v1] target-tilegx: Add related feature to support iret instruction Chen Gang
2015-08-20 21:47 ` [Qemu-devel] [PATCH 14/16 v1] linux-user: main: Use negative qemu errno for syscall return errno Chen Gang
2015-08-20 21:47 ` [Qemu-devel] [PATCH 15/16 v1] tilegx: Match with the latest qemu master tree Chen Gang
2015-08-20 21:48 ` [Qemu-devel] [PATCH 16/16 v1] target-tilegx: Implement additional instructions in normal working flow Chen Gang
2015-08-21 5:15 ` [Qemu-devel] [PATCH 00/16 v1] tilegx: Firstly add tilegx target for linux-user Richard Henderson
[not found] ` <55D79810.2040902@hotmail.com>
2015-08-21 21:27 ` gchen gchen
2015-08-30 3:13 [Qemu-devel] Subject: [PATCH 01/16] linux-user: tilegx: Firstly add architecture related features gang.chen.5i5j
-- strict thread matches above, loose matches on Subject: below --
2015-08-30 3:15 gang.chen.5i5j
2015-08-30 3:18 gang.chen.5i5j
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=55D6C592.3000204@redhat.com \
--to=eblake@redhat.com \
--cc=afaerber@suse.de \
--cc=cmetcalf@ezchip.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=rth@twiddle.net \
--cc=walt@tilera.com \
--cc=xili_gchen_5257@hotmail.com \
/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).