From patchwork Thu Feb 14 14:07:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Slavomir Kaslev X-Patchwork-Id: 10812809 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 08EAB13A4 for ; Thu, 14 Feb 2019 14:08:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EA8EC2E6B5 for ; Thu, 14 Feb 2019 14:08:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DC0452E6C1; Thu, 14 Feb 2019 14:08:38 +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 6BBC12E6B5 for ; Thu, 14 Feb 2019 14:08:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389253AbfBNOIi (ORCPT ); Thu, 14 Feb 2019 09:08:38 -0500 Received: from mail-wm1-f65.google.com ([209.85.128.65]:53834 "EHLO mail-wm1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388106AbfBNOHi (ORCPT ); Thu, 14 Feb 2019 09:07:38 -0500 Received: by mail-wm1-f65.google.com with SMTP id d15so6436352wmb.3 for ; Thu, 14 Feb 2019 06:07:37 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=wX6Tb5dK6vOJarWEgtra+dhFLMjvVO6pzuwP6dVDh8M=; b=PcENor2ukB/D+MCxDLbuaNI3URHerp2dfYlNVo3EGhj0dxOBn0KXC53bq+UDvneawH DZN37fQ92CvygL4RTKGiKW6gptaQZC06+jol95kTqwAq6sP3vyY4FUBkXWmZ67Rh4dKk Ge6NvN6Lkd+eKgUXqwM6xfK0A3sAuouVnN5jcBEc9yPfhd+9CZ65uJDwIoDiQ5sFVmyK /TNsaat6K4KdWS+3fD05yJn0NczC7zqtoq9Xaugq6rC28brHmdENQUOI8m3joBVbXIoe 67bJWr0EXvVbodGjWcXTA7IlHgMM60vx80vdgiNngxyWBGhMK9XMejcE4l8IFftZ9ryq 2cCw== X-Gm-Message-State: AHQUAuYeOiOOdm7D+m7rHzLnLluyA8g8B0H4kvOAfZWkqaMf7P3WFugT cpEc5MECilQE/4CN6fGvrw== X-Google-Smtp-Source: AHgI3IazbQp5y1DHmvPh/OV7iHnnnQZihwf8jz+IR/dBDG8I4WPTmsrCI9MaZu9uKovx1Qdnh368lQ== X-Received: by 2002:a7b:c777:: with SMTP id x23mr2989689wmk.71.1550153256790; Thu, 14 Feb 2019 06:07:36 -0800 (PST) Received: from localhost.localdomain ([213.145.108.55]) by smtp.gmail.com with ESMTPSA id c9sm2067220wrs.84.2019.02.14.06.07.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 14 Feb 2019 06:07:36 -0800 (PST) From: Slavomir Kaslev To: rostedt@goodmis.org Cc: linux-trace-devel@vger.kernel.org, slavomir.kaslev@gmail.com Subject: [PATCH 3/3] trace-cmd: Removed some unused #includes Date: Thu, 14 Feb 2019 16:07:23 +0200 Message-Id: <20190214140723.27804-3-kaslevs@vmware.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190214140723.27804-1-kaslevs@vmware.com> References: <20190214140723.27804-1-kaslevs@vmware.com> MIME-Version: 1.0 Sender: linux-trace-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-trace-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch removes several unused #include directives. No changes in behaviour intended. Signed-off-by: Slavomir Kaslev --- lib/trace-cmd/trace-input.c | 9 --------- lib/trace-cmd/trace-recorder.c | 9 +-------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/lib/trace-cmd/trace-input.c b/lib/trace-cmd/trace-input.c index b628570..34a8301 100644 --- a/lib/trace-cmd/trace-input.c +++ b/lib/trace-cmd/trace-input.c @@ -4,22 +4,13 @@ * */ #define _LARGEFILE64_SOURCE -#include #include #include #include -#include -#include -#include -#include -#include -#include #include -#include #include #include #include -#include #include #include diff --git a/lib/trace-cmd/trace-recorder.c b/lib/trace-cmd/trace-recorder.c index 1b6a995..0b8d98a 100644 --- a/lib/trace-cmd/trace-recorder.c +++ b/lib/trace-cmd/trace-recorder.c @@ -4,18 +4,11 @@ * */ #define _LARGEFILE64_SOURCE -#include #include #include -#include -#include -#include -#include -#include -#include #include +#include #include -#include #include #include "trace-cmd.h"