From patchwork Sat Jan 26 21:07:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ramsay Jones X-Patchwork-Id: 10782601 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4A05313B4 for ; Sat, 26 Jan 2019 21:07:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 385A62CB4B for ; Sat, 26 Jan 2019 21:07:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2BBB42CD6B; Sat, 26 Jan 2019 21:07:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C9FAF2CB4B for ; Sat, 26 Jan 2019 21:07:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726377AbfAZVHJ (ORCPT ); Sat, 26 Jan 2019 16:07:09 -0500 Received: from avasout05.plus.net ([84.93.230.250]:51976 "EHLO avasout05.plus.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726233AbfAZVHJ (ORCPT ); Sat, 26 Jan 2019 16:07:09 -0500 Received: from [10.0.2.15] ([146.198.133.33]) by smtp with ESMTPA id nVARg69fbuQOBnVASg5nAv; Sat, 26 Jan 2019 21:07:08 +0000 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.3 cv=JtDfUvwC c=1 sm=1 tr=0 a=VCDsReDbrwk4B7AcQzWGLw==:117 a=VCDsReDbrwk4B7AcQzWGLw==:17 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=jzjey2Ge5yg2apLU3XUA:9 a=QEXdDO2ut3YA:10 a=yJM6EZoI5SlJf8ks9Ge_:22 X-AUTH: ramsayjones@:2500 To: Jeff Hostetler Cc: Junio C Hamano , GIT Mailing-list From: Ramsay Jones Subject: [PATCH] trace2: fix hdr-check warnings Message-ID: Date: Sat, 26 Jan 2019 21:07:06 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 Content-Language: en-GB X-CMAE-Envelope: MS4wfHYmel5BBPx2q5AN0xWHZRq8iYmU5Y1rWSTE3Q/fkn0K+wSYbeTUh7zwD5kwwrR25lx6zw8pHPlK1tqyDCy4heQ7YKpQKqdNrxG7k1XJZUOxtIxbMY3D nCCC+ufxKZ2ClfiDumFVN63hOz2avOVRzYr4w53mAGPE8QH7zE6lnpf3u87UHJv2TyuXmZMUbI/8uA== Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Ramsay Jones --- Hi Jeff, If you need to re-roll your 'jh/trace2' branch, could you please squash this into the relevant patches (sorry, I didn't look to see which patches need to be modified). Thanks! ATB, Ramsay Jones trace2/tr2_tgt.h | 4 ++++ trace2/tr2_tls.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/trace2/tr2_tgt.h b/trace2/tr2_tgt.h index 4fdf253b57..8a46bbad4e 100644 --- a/trace2/tr2_tgt.h +++ b/trace2/tr2_tgt.h @@ -1,6 +1,10 @@ #ifndef TR2_TGT_H #define TR2_TGT_H +struct child_process; +struct repository; +struct json_writer; + /* * Function prototypes for a TRACE2 "target" vtable. */ diff --git a/trace2/tr2_tls.h b/trace2/tr2_tls.h index 99ea9018ce..bb80e3f8e7 100644 --- a/trace2/tr2_tls.h +++ b/trace2/tr2_tls.h @@ -1,6 +1,8 @@ #ifndef TR2_TLS_H #define TR2_TLS_H +#include "strbuf.h" + /* * Arbitry limit for thread names for column alignment. */