From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by dpdk.org (Postfix) with ESMTP id 346FB1B27B for ; Fri, 6 Oct 2017 10:40:15 +0200 (CEST) Received: by mail-wm0-f68.google.com with SMTP id b189so11063703wmd.2 for ; Fri, 06 Oct 2017 01:40:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=Sj4CELV26BAfiOMEtcr63lTkqhqiRUznDsdVLwelSEU=; b=kV9iy07Yc7yDZvD3/ZT2QMgjTo4b2AEL+yLTdPNAdUtp8CCVH8jWHX/rHiSLJ6d4ol sHfF75IurUini7QA+ifjiO0ON+Tl74HlVmxujLDgre0jcT8tG4t9Rj/Gey6F86jj/Mki JnxYBixMAY0uFe4MGbLIwAFMwWBc30F0HVuQtt8FOauACMW+9Bi02dVMAPy1R2UrE+Xb ePENSUZgwyBrKdC6cW/tVfpe8eca63frJGg0Okd1AZYJ5orROwi3ggdeliUdupYhFStg HoVpCN0NxK9imMJzlMbMEeeUyahKjXdrDKW5Kwpfx4GzyX5C81kD6JLsEtxMO+kTxt+n 7H1g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:from:to:cc:subject:date:message-id :in-reply-to:references; bh=Sj4CELV26BAfiOMEtcr63lTkqhqiRUznDsdVLwelSEU=; b=aQfZO47aobdfwmaClHg2nsTv9gThdUiiLQd9Mp4amJTUewTm6m1HpGPv37DeYRJ0OP eSFlmIFE3CFmq0HKSespMd6CuWaAQq08IRxTSufvg+pIMMCT2VqsiQPdGDD2AILGYRd+ WE/SZGHTVZ2nGZUVviaOTSiQzF1RYaPBCU5xpsdAA/0XuWNJNE0reg2O/9bXZnvKQHLZ kktpHAG7flVj9/AJl9Nn+odE46PjqRif5CGanNjedJFWiqL95zJCQTvy8JTXO92rZBSd PtQStpBHw0XPzC5i2/RvQhUWMxyG5oZl0XWqe6lLcmm8tCYc4pUgB356S7urCUnQ6al2 UVAg== X-Gm-Message-State: AMCzsaXOX6OW3kyf7Vsnp1xv9fev6Ylo7RkRqVRZwU3tx2OMT9m9BfNi +yrC9Oss+nVLx46wuPEpMVUKf++6cNU= X-Google-Smtp-Source: AOwi7QBsWTs3TbfI5kKrlwo8jiuAaqcyoxtRiqfU4FCLlK26nCEsm6Kcz1Wu9wpyC7rnxbw4Cym7Rg== X-Received: by 10.80.213.211 with SMTP id g19mr2330725edj.277.1507279215148; Fri, 06 Oct 2017 01:40:15 -0700 (PDT) Received: from localhost.localdomain ([37.228.147.16]) by smtp.gmail.com with ESMTPSA id e2sm622871edi.65.2017.10.06.01.40.13 (version=TLS1 cipher=AES128-SHA bits=128/128); Fri, 06 Oct 2017 01:40:14 -0700 (PDT) Sender: Jan Blunck From: Jan Blunck To: dev@dpdk.org Cc: declan.doherty@intel.com, pablo.de.lara.guarch@intel.com Date: Fri, 6 Oct 2017 10:39:30 +0200 Message-Id: <20171006083934.34819-1-jblunck@infradead.org> X-Mailer: git-send-email 2.13.2 In-Reply-To: <20170712195846.65286-1-jblunck@infradead.org> References: <20170712195846.65286-1-jblunck@infradead.org> Subject: [dpdk-dev] [PATCH v3 0/4] cryptodev vdev changes for 17.11-rc1 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: Fri, 06 Oct 2017 08:40:16 -0000 This series is a preparation to move the vdev bus out of librte_eal. For that the newly added cryptodev vdev functions need to change signature to not require the rte_vdev.h header. Changes since v1: - move params parsing into new header - make rte_cryptodev_vdev_pmd_init() static inline Changes since v2: - fix bisect compile errors - workaround check-git-log.sh stupidity Jan Blunck (4): cryptodev: remove obsolete include cryptodev: move initialization cryptodev: rework dependency on vdev header cryptodev: move parameter parsing to its own header lib/librte_cryptodev/Makefile | 1 + lib/librte_cryptodev/rte_cryptodev.c | 3 + lib/librte_cryptodev/rte_cryptodev.h | 1 - lib/librte_cryptodev/rte_cryptodev_pmd.c | 37 +--------- lib/librte_cryptodev/rte_cryptodev_vdev.h | 71 ++++++++----------- lib/librte_cryptodev/rte_cryptodev_vdev_params.h | 89 ++++++++++++++++++++++++ lib/librte_cryptodev/rte_cryptodev_version.map | 1 - 7 files changed, 122 insertions(+), 81 deletions(-) create mode 100644 lib/librte_cryptodev/rte_cryptodev_vdev_params.h -- 2.13.2