From: Greg Kurz <groug@kaod.org>
To: "Alex Bennée" <alex.bennee@linaro.org>
Cc: pbonzini@redhat.com, doug16k@gmail.com,
imbrenda@linux.vnet.ibm.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 2/4] gdbstub: rename cpu_index -> cpu_gdb_index
Date: Thu, 1 Jun 2017 17:13:37 +0200 [thread overview]
Message-ID: <20170601171337.5c81515e@bahia.lan> (raw)
In-Reply-To: <20170601144915.20778-3-alex.bennee@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 3865 bytes --]
On Thu, 1 Jun 2017 15:49:13 +0100
Alex Bennée <alex.bennee@linaro.org> wrote:
> This is to make it clear the index is purely a gdbstub function and
> should not be confused with the value of cpu->cpu_index.
>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
Reviewed-by: Greg Kurz <groug@kaod.org>
> gdbstub.c | 12 ++++++------
> include/exec/gdbstub.h | 7 ++++++-
> 2 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/gdbstub.c b/gdbstub.c
> index a249846954..026d1fe6bb 100644
> --- a/gdbstub.c
> +++ b/gdbstub.c
> @@ -837,7 +837,7 @@ static CPUState *find_cpu(uint32_t thread_id)
> CPUState *cpu;
>
> CPU_FOREACH(cpu) {
> - if (cpu_index(cpu) == thread_id) {
> + if (cpu_gdb_index(cpu) == thread_id) {
> return cpu;
> }
> }
> @@ -925,7 +925,7 @@ static int gdb_handle_vcont(GDBState *s, const char *p)
> idx = tmp;
> /* 0 means any thread, so we pick the first valid CPU */
> if (!idx) {
> - idx = cpu_index(first_cpu);
> + idx = cpu_gdb_index(first_cpu);
> }
>
> /*
> @@ -975,7 +975,7 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
> case '?':
> /* TODO: Make this return the correct value for user-mode. */
> snprintf(buf, sizeof(buf), "T%02xthread:%02x;", GDB_SIGNAL_TRAP,
> - cpu_index(s->c_cpu));
> + cpu_gdb_index(s->c_cpu));
> put_packet(s, buf);
> /* Remove all the breakpoints when this query is issued,
> * because gdb is doing and initial connect and the state
> @@ -1243,7 +1243,7 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
> } else if (strcmp(p,"sThreadInfo") == 0) {
> report_cpuinfo:
> if (s->query_cpu) {
> - snprintf(buf, sizeof(buf), "m%x", cpu_index(s->query_cpu));
> + snprintf(buf, sizeof(buf), "m%x", cpu_gdb_index(s->query_cpu));
> put_packet(s, buf);
> s->query_cpu = CPU_NEXT(s->query_cpu);
> } else
> @@ -1400,7 +1400,7 @@ static void gdb_vm_state_change(void *opaque, int running, RunState state)
> }
> snprintf(buf, sizeof(buf),
> "T%02xthread:%02x;%swatch:" TARGET_FMT_lx ";",
> - GDB_SIGNAL_TRAP, cpu_index(cpu), type,
> + GDB_SIGNAL_TRAP, cpu_gdb_index(cpu), type,
> (target_ulong)cpu->watchpoint_hit->vaddr);
> cpu->watchpoint_hit = NULL;
> goto send_packet;
> @@ -1434,7 +1434,7 @@ static void gdb_vm_state_change(void *opaque, int running, RunState state)
> break;
> }
> gdb_set_stop_cpu(cpu);
> - snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_index(cpu));
> + snprintf(buf, sizeof(buf), "T%02xthread:%02x;", ret, cpu_gdb_index(cpu));
>
> send_packet:
> put_packet(s, buf);
> diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h
> index f9708bbcd6..c4fe567600 100644
> --- a/include/exec/gdbstub.h
> +++ b/include/exec/gdbstub.h
> @@ -58,7 +58,12 @@ void gdb_register_coprocessor(CPUState *cpu,
> gdb_reg_cb get_reg, gdb_reg_cb set_reg,
> int num_regs, const char *xml, int g_pos);
>
> -static inline int cpu_index(CPUState *cpu)
> +/* Return the GDB index for a given vCPU state.
> + *
> + * For user mode this is simply the thread id. In system mode GDB
> + * numbers CPUs from 1 as 0 is reserved as an "any cpu" index.
> + */
> +static inline int cpu_gdb_index(CPUState *cpu)
> {
> #if defined(CONFIG_USER_ONLY)
> return cpu->host_tid;
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
next prev parent reply other threads:[~2017-06-01 15:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-01 14:49 [Qemu-devel] [PATCH v2 0/4] some gdbstub fixes for debug and vcont Alex Bennée
2017-06-01 14:49 ` [Qemu-devel] [PATCH v2 1/4] gdbstub: modernise DEBUG_GDB Alex Bennée
2017-06-01 14:49 ` [Qemu-devel] [PATCH v2 2/4] gdbstub: rename cpu_index -> cpu_gdb_index Alex Bennée
2017-06-01 15:13 ` Greg Kurz [this message]
2017-06-01 15:48 ` Claudio Imbrenda
2017-06-02 5:02 ` Philippe Mathieu-Daudé
2017-06-01 14:49 ` [Qemu-devel] [PATCH v2 3/4] qom/cpu: remove host_tid field Alex Bennée
2017-06-01 15:32 ` Greg Kurz
2017-06-01 15:54 ` Claudio Imbrenda
2017-06-01 15:52 ` Philippe Mathieu-Daudé
2017-06-01 16:11 ` Laurent Vivier
2017-06-01 14:49 ` [Qemu-devel] [PATCH v2 4/4] gdbstub: don't fail on vCont; C04:0; c packets Alex Bennée
2017-06-01 15:54 ` Philippe Mathieu-Daudé
2017-06-01 15:54 ` Claudio Imbrenda
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=20170601171337.5c81515e@bahia.lan \
--to=groug@kaod.org \
--cc=alex.bennee@linaro.org \
--cc=doug16k@gmail.com \
--cc=imbrenda@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.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).