From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by dpdk.org (Postfix) with ESMTP id 2800D5939 for ; Tue, 6 Oct 2015 10:54:22 +0200 (CEST) Received: by wicfx3 with SMTP id fx3so148610906wic.0 for ; Tue, 06 Oct 2015 01:54:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=YrlCxOWKnP12bnVc9vqqIjsLCN3f9b8tcPvujELQ9EI=; b=WNiI0uKQPSRikKY9c7Gm9Tej3fyzlzBalUaskbRSzzY47SWOf5qmEUenVv0rAfeXAr jANJe+jpNBt3+3bnk/UN4Y6pWMBGUEKrDJfYpDBGD/yvHPKmfv8Oq1yHXu3Tn70Ivuow a6vR8gGkqVH2NVQD3+YY3YU+n0n5C9ErJQWYRJLhQwxRJxmcQTp3OdUp9DwxbobkJgOz 1mAfv9GQ7oGP6iL2cdNlqR6EXP9CpZELTMLsc3I/stSIaZeChAs3AikaUz+/WSJoA9O9 U+pWE5GuEfWsFP3JeQOg8Y60Nk67YCas2iKElFs1UaXOGn8jJVnKPNW35G7cMGBQCJ1Q Mu5w== X-Gm-Message-State: ALoCoQldtN59N3VzCL9rMsQ/5q7mO6Qfua+sFztBnXmwHlCGMuLc/2LJq1/qFjEySasIMhPAjrmV X-Received: by 10.180.8.232 with SMTP id u8mr17529593wia.10.1444121661931; Tue, 06 Oct 2015 01:54:21 -0700 (PDT) Received: from uryu.home.lan ([89.101.192.72]) by smtp.gmail.com with ESMTPSA id r9sm31232227wjz.35.2015.10.06.01.54.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Oct 2015 01:54:21 -0700 (PDT) Date: Tue, 6 Oct 2015 09:54:16 +0100 From: Stephen Hemminger To: Adrien Mazarguil Message-ID: <20151006095416.55a16e0c@uryu.home.lan> In-Reply-To: <1444067692-29645-1-git-send-email-adrien.mazarguil@6wind.com> References: <1444067692-29645-1-git-send-email-adrien.mazarguil@6wind.com> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 00/17] Enhance mlx5 with Mellanox OFED 3.1 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: , X-List-Received-Date: Tue, 06 Oct 2015 08:54:22 -0000 On Mon, 5 Oct 2015 19:54:35 +0200 Adrien Mazarguil wrote: > Mellanox OFED 3.1 [1] comes with improved APIs that Mellanox ConnectX-4 > (mlx5) adapters can take advantage of, such as: > > - Separate post and doorbell operations on all queues. > - Lightweight RX queues called Work Queues (WQs). > - Low-level RSS indirection table and hash key configuration. > > This patchset enhances mlx5 with all of these for better performance and > flexibility. Documentation is updated accordingly. Has anybody explored doing a driver without the dependency on OFED? It is certainly possible. The Linux kernel drivers don't depend on it. And dropping OFED would certainly be faster.