From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cSF3B-0000TE-Ma for qemu-devel@nongnu.org; Fri, 13 Jan 2017 22:30:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cSF3A-0005yk-PE for qemu-devel@nongnu.org; Fri, 13 Jan 2017 22:30:41 -0500 Received: from mail-pg0-x243.google.com ([2607:f8b0:400e:c05::243]:33991) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cSF3A-0005yB-II for qemu-devel@nongnu.org; Fri, 13 Jan 2017 22:30:40 -0500 Received: by mail-pg0-x243.google.com with SMTP id b1so96379pgc.1 for ; Fri, 13 Jan 2017 19:30:40 -0800 (PST) Sender: Richard Henderson References: <148434048970.31446.17153056211582691244.stgit@frigg.lan> <148434050231.31446.10929552655201551997.stgit@frigg.lan> From: Richard Henderson Message-ID: <597a44c3-2518-2d24-598c-4867f57dfa7b@twiddle.net> Date: Fri, 13 Jan 2017 19:30:37 -0800 MIME-Version: 1.0 In-Reply-To: <148434050231.31446.10929552655201551997.stgit@frigg.lan> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v7 2/7] trace: Make trace_get_vcpu_event_count() inlinable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Llu=c3=ads_Vilanova?= , qemu-devel@nongnu.org Cc: Eric Blake , Eduardo Habkost , Stefan Hajnoczi On 01/13/2017 12:48 PM, Lluís Vilanova wrote: > uring and controlling the state of tracing events. > * > - * Copyright (C) 2011-2016 Lluís Vilanova > + * Copyright (C) 2011-2017 Lluís Vilanova > * > * This work is licensed under the terms of the GNU GPL, version 2 or later. > * See the COPYING file in the top-level directory. > @@ -237,7 +237,7 @@ char *trace_opt_parse(const char *optarg); > * > * Return the number of known vcpu-specific events > */ > -uint32_t trace_get_vcpu_event_count(void); > +static uint32_t trace_get_vcpu_event_count(void); > Why is this declaration still here? It's redundant with the inline. r~