From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f182.google.com (mail-ua0-f182.google.com [209.85.217.182]) by dpdk.org (Postfix) with ESMTP id AD690F94 for ; Tue, 19 Sep 2017 22:52:21 +0200 (CEST) Received: by mail-ua0-f182.google.com with SMTP id l24so534818uaa.5 for ; Tue, 19 Sep 2017 13:52:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=eK/9G3j6pm8QFG3YsGYGilWkqiBzaChDZQlNsk0RzoA=; b=YnoA4G2aI6pngFH9ZtrVxOktqyuHMyZv2ht1JCdYqFgZ5+GjOIkIYLOoEQ52ZBOyQm B7BnG6xbizBYHlalQJ6QSkqiy+/nu1OzsOFO2ZDailfH4Enz4FfcWJteXLzF2j/s8q5o sL07huOLW+fLrBQTqMOkAnMTFNnqn5r11rW4O13/GZE2GHv4x17GQJJxWvNUeK6kmn+L 8WaAFSJoD2rRs4eD729Ps3anpkvyPhtQeM8444HAkjdvCXQo2WpkaMSkzRoaZSfNkECC el+l4UVtsMbX5P6CAG0tGBWRKGlj5SWZtsTOAlvPzwhDcufUfWoxsmzWF9Du6JStwTVh bEug== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=eK/9G3j6pm8QFG3YsGYGilWkqiBzaChDZQlNsk0RzoA=; b=FmA2xPmaX7JKdupVNL4p/h74x2t/st7RAKsAF/E/FSLmDBMftDqV7iT2Q2ap/I733z KhY3EdEcW8h9eENPfQ89VFju2tscqzGmPzPTWrE2wPSQ7+bJbQaaKO/r9ZIsg0I2NTqJ aiNxseeNxobm1HF8vbEiJ0WPJfPzxAM+sMtVgQN8XIHsqHajUpbZjTQ4eQ12fGBWk0N5 ZJPZpg4NqdD1AXLkjqaRFQbTo0AMveYG2DqVyogBQpd/uCcTmaNeNtkOrTcBkobndq7x /imzjvut15QSUL0qvK18MNRMIz8O8ohPLc207RQ3Et7bR3n/ZYHB7kAPwSJ16fwE5JFF rd9A== X-Gm-Message-State: AHPjjUjgzDMeMpR9FwoxHgIQwSZsQJRD2YVfot11GLCx+OnE1x01jve1 86Z7Wf0aWnMvABOn/4/ogWgySe8r5KqjhcU16dglKA== X-Google-Smtp-Source: AOwi7QB6bqYR6BPQOBx15C2XxIL8j7nt/Czt0BAgC6WXk7vZEUCDfC/rQ+HjGuwE+5wW5kH2iArbCAUy3QUxYt9DDVY= X-Received: by 10.176.18.210 with SMTP id o18mr2649156uac.89.1505854340653; Tue, 19 Sep 2017 13:52:20 -0700 (PDT) MIME-Version: 1.0 Received: by 10.159.58.193 with HTTP; Tue, 19 Sep 2017 13:52:20 -0700 (PDT) From: Kushal Gautam Date: Tue, 19 Sep 2017 22:52:20 +0200 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Query: decouple the driver and library components X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Sep 2017 20:52:21 -0000 Hi: I am new to DPDK. I had been looking at the i40e driver implementation of DPDK. I see that the code is entirely revamped as compared to the original i40e-driver. My query is that is it possible for me to use this i40e driver(in dpdk source code package) without other non-essential dependencies or in plain words, can I decouple these components ? I am more interested in the pollmode driver. My concern was on the jitter introduced by regular drivers. I did modify the original i40e driver for this, but things did not work out as I wanted to. I understand that this driver package depends on various other libraries that are bundled with the source code. So, could I decouple these components ( for example; the libraries and the driver module) ? Any information on this would be very helpful. Thanks, Kushal.