From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <pboldin@mirantis.com>
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 <dev@dpdk.org>; Thu, 16 Apr 2015 13:48:39 +0200 (CEST)
Received: by labbd9 with SMTP id bd9so54598914lab.2
 for <dev@dpdk.org>; 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 <pboldin@mirantis.com>
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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 16 Apr 2015 11:48:40 -0000

Signed-off-by: Pavel Boldin <pboldin@mirantis.com>
---
 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 <linux/eventfd.h>
 #include <linux/miscdevice.h>
 #include <linux/module.h>
-#include <linux/moduleparam.h>
-#include <linux/rcupdate.h>
 #include <linux/file.h>
-#include <linux/slab.h>
-#include <linux/fs.h>
-#include <linux/mmu_context.h>
-#include <linux/sched.h>
-#include <asm/mmu_context.h>
 #include <linux/fdtable.h>
+#include <linux/syscalls.h>
 
 #include "eventfd_link.h"
 
-- 
1.9.1