From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 8B793D486 for ; Wed, 29 Mar 2017 14:46:25 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP; 29 Mar 2017 05:46:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,241,1486454400"; d="scan'208";a="1113269133" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.140]) by orsmga001.jf.intel.com with SMTP; 29 Mar 2017 05:46:22 -0700 Received: by (sSMTP sendmail emulation); Wed, 29 Mar 2017 13:46:21 +0100 Date: Wed, 29 Mar 2017 13:46:21 +0100 From: Bruce Richardson To: "De Lara Guarch, Pablo" Cc: "Zhang, Roy Fan" , "dev@dpdk.org" , "Gonzalez Monroy, Sergio" , "Doherty, Declan" Message-ID: <20170329124621.GA10200@bricha3-MOBL3.ger.corp.intel.com> References: <1490711441-55895-1-git-send-email-roy.fan.zhang@intel.com> <1490775868-65199-1-git-send-email-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Intel Research and =?iso-8859-1?Q?De=ACvel?= =?iso-8859-1?Q?opment?= Ireland Ltd. User-Agent: Mutt/1.8.0 (2017-02-23) Subject: Re: [dpdk-dev] [PATCH v4 0/3] crypto/scheduler: add fail-over mode X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2017 12:46:25 -0000 On Wed, Mar 29, 2017 at 11:29:31AM +0000, De Lara Guarch, Pablo wrote: > > > > -----Original Message----- > > From: Zhang, Roy Fan > > Sent: Wednesday, March 29, 2017 9:24 AM > > To: dev@dpdk.org > > Cc: De Lara Guarch, Pablo; Gonzalez Monroy, Sergio; Doherty, Declan > > Subject: [PATCH v4 0/3] crypto/scheduler: add fail-over mode > > > > This patch adds fail-over mode for cryptodev scheduler PMD. Fail-over > > mode > > works with 2 slaves, the primary slave and the secondary slave. In this > > mode, the scheduler will enqueues the incoming crypto operation burst to > > the > > primary slave. When one or more crypto operations fail to be enqueued, > > then > > they will be enqueued to the secondary slave. > > > > v4: > > - Polished documentation. > > - Fixed documentation grammer errors. > > > > v3: > > - More detailed commit messages. > > - Removed device flush. > > - Updated dequeue_ordering function > > > > v2: > > - Update with new reorder method > > > > Fan Zhang (3): > > crypto/scheduler: add fail-over scheduling mode file > > crypto/scheduler: enable fail-over scheduling mode > > doc: update cryptodev scheduler PMD documentation > > > > doc/guides/cryptodevs/scheduler.rst | 8 + > > drivers/crypto/scheduler/Makefile | 1 + > > drivers/crypto/scheduler/rte_cryptodev_scheduler.c | 7 + > > drivers/crypto/scheduler/rte_cryptodev_scheduler.h | 3 + > > drivers/crypto/scheduler/scheduler_failover.c | 285 > > +++++++++++++++++++++ > > 5 files changed, 304 insertions(+) > > create mode 100644 drivers/crypto/scheduler/scheduler_failover.c > > > > -- > > 2.7.4 > > Series-acked-by: Pablo de Lara Can this driver be enabled by default in DPDK builds? It doesn't seem to have any external dependencies. /Bruce