From patchwork Thu Apr 16 11:48:30 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Boldin X-Patchwork-Id: 4335 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 8B65DC396; Thu, 16 Apr 2015 13:48:48 +0200 (CEST) Received: from mail-la0-f48.google.com (mail-la0-f48.google.com [209.85.215.48]) by dpdk.org (Postfix) with ESMTP id B9F95C346 for ; Thu, 16 Apr 2015 13:48:39 +0200 (CEST) Received: by labbd9 with SMTP id bd9so54598914lab.2 for ; Thu, 16 Apr 2015 04:48:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mirantis.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=JdTta62c3ycso9gbNlZYw5YEigGZD0Lvk5+NLhRp9pE=; b=e4zdvJsCtMzY1bl6cqAg3Y3UevXgIXGjxWUD8jVPLfJjwBdRsLLSwSL5aPZ6mMXJC8 6HfpNTr74oVZhGqw/1TlLR8sWYzeVBmzEMX3a3BOwMZ9UxAd/92Xh1ywKZ3regIOlaST HL/CufFSxr8hRaiicb4BALX1fCMHnndbu/X24= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=JdTta62c3ycso9gbNlZYw5YEigGZD0Lvk5+NLhRp9pE=; b=l1O1wS5NO2NLe0Pd0r0PLHsZAF+S2vJQ1+T0YQKjb9L71jNAO6QNIyRtAPkyeqX0Nd LPQRrwaJ3J6dihy77Jn4GiZhg06UBPn12Y+Pkjna6YFIV5DtnLxd/XFSfFOQpvJoWkGE C6w8vhvG2cXtPfL23fZaZKVueAethhIth3fjjUTV1rvelVxGoCCxn3XgGVDZ9keFn/ke NqdpjLupBM10R0PPofcF2NHdP27LuYkt3zBKUJWZ5VvNa8b90hXBWekZJjP73Sjzv4tY lbbUGEdxqcD9H9Jw2f4Qo7CN1HC2JBYdIXVC1d0nByFGJk9teT1ACtjq23mjaDX4SiMk OVNw== X-Gm-Message-State: ALoCoQkyK7iPcBW+tZjpLylpc4t2HNdvza+r+CaqFTJB30ZQOcOkwHOkEd8g7UOsDenkfO9UTFtm X-Received: by 10.152.6.197 with SMTP id d5mr28358038laa.121.1429184919516; Thu, 16 Apr 2015 04:48:39 -0700 (PDT) Received: from pboldin-pc.kha.mirantis.net ([194.213.110.67]) by mx.google.com with ESMTPSA id oy3sm1636510lbb.1.2015.04.16.04.48.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 16 Apr 2015 04:48:39 -0700 (PDT) From: Pavel Boldin To: dev@dpdk.org Date: Thu, 16 Apr 2015 14:48:30 +0300 Message-Id: <1429184910-30186-6-git-send-email-pboldin@mirantis.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1429184910-30186-1-git-send-email-pboldin@mirantis.com> References: <1427994080-10163-1-git-send-email-pboldin@mirantis.com> <1429184910-30186-1-git-send-email-pboldin@mirantis.com> Subject: [dpdk-dev] [PATCH v5 5/5] vhost: eventfd_link: removing extra #includes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Pavel Boldin --- lib/librte_vhost/eventfd_link/eventfd_link.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/librte_vhost/eventfd_link/eventfd_link.c b/lib/librte_vhost/eventfd_link/eventfd_link.c index 9bc52a3..0ee7357 100644 --- a/lib/librte_vhost/eventfd_link/eventfd_link.c +++ b/lib/librte_vhost/eventfd_link/eventfd_link.c @@ -22,18 +22,11 @@ * Intel Corporation */ -#include #include #include -#include -#include #include -#include -#include -#include -#include -#include #include +#include #include "eventfd_link.h"