From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 7846728BF for ; Thu, 10 Mar 2016 17:04:47 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id l68so37125412wml.0 for ; Thu, 10 Mar 2016 08:04:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=ShrupXheA6Wdn4QixHWZkyk/bda4OH+Rplm40FPkUiE=; b=TgUhJKHoABdHdnsyFA760u77+DyIfLKjSivTDA9zlaIUOBtNfQBmjeIUcIQccCx7In vhEy/TVDYGdzqPDbomteULGoE5UtibQd3p9FxDeATezMY6H+n1+8iDGjnKvczRhPQFhV jtE/Mt8SUBSbiThUJYxNF1dGd4++diOdxxpz3aMq0HvADK8ggx7174+WMIz7fxx8C3Mw qZPmFrJ42gRpBgSVqX6N7yJut95JnQzB2wB5lFwBmKWeMcU+xd6SPsl+RTs8k8N02Tda kNooMHZ+Xr6/Ui+Vlwf54v2JOxKBG1k8vEzoFpbkzrqsbhN7k8HyDScxspoM4KFroB5v U9fQ== 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=ShrupXheA6Wdn4QixHWZkyk/bda4OH+Rplm40FPkUiE=; b=lIq30ugmNqFfMNi2m8GwLnPtBHNdeEDimZClnGkj58pPCPEC8KAIdvgtdDO/mrfMxZ seovR7gfvudx4uUZcQcNbp1HjqdGyaUz0exa2JuWxFpG7Yh4qkqhzayL3Hp2Q4xUNw4l 3oZioluIfPcocf6bNKSlR1cMB0EBQBvWnyC9PV1YzPDHS8kkLN5CC/QnSD1MIpM+CX+W ZcYcaGyImeHDVSG3cVGGBa108R56QR14k6Ifbn14MYUF9AnrjWDVvUu3zs8DnZAllfSA 2xOv12VBvXG2PiGzBSWqlUtTmsrSkTtOCFhr6UiJixFH+TpI58zIq1YvMc7hzw8L62+3 igDQ== X-Gm-Message-State: AD7BkJJvQjYIVk3O1xWhqVObO3qupy5SEUETfFDpHhWgNMpEZr13KebH2xyZviBkhgL418yF X-Received: by 10.28.7.196 with SMTP id 187mr5097880wmh.12.1457625887307; Thu, 10 Mar 2016 08:04:47 -0800 (PST) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id v82sm4189400wmv.6.2016.03.10.08.04.46 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Mar 2016 08:04:46 -0800 (PST) From: Thomas Monjalon To: Fiona Trahe Date: Thu, 10 Mar 2016 17:03:04 +0100 Message-ID: <1546962.OW49KDJ4kE@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1457624473-11138-5-git-send-email-fiona.trahe@intel.com> References: <1457617381-8296-1-git-send-email-fiona.trahe@intel.com> <1457624473-11138-5-git-send-email-fiona.trahe@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v9 4/5] cryptodev: change burst API to be crypto op oriented 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: Thu, 10 Mar 2016 16:04:47 -0000 2016-03-10 15:41, Fiona Trahe: > lib/librte_cryptodev/rte_crypto_sym.h | 374 ++++++------ Sorry there is another issue: rte_crypto_sym.h:622: warning: argument 'op' of command @param is not found in the argument list of __rte_crypto_sym_op_attach_sym_session(struct rte_crypto_sym_op *sym_op, struct rte_cryptodev_sym_session *sess) rte_crypto_sym.h:628: warning: The following parameters of __rte_crypto_sym_op_attach_sym_session(struct rte_crypto_sym_op *sym_op, struct rte_cryptodev_sym_session *sess) are not documented: parameter 'sym_op' rte_crypto_sym.h:592: warning: unable to resolve reference to `rte_cryptodev_session_create' for \ref command I've fixed it with the following changes: * The length of the data pointed to by this field is * set up for the session in the @ref * rte_crypto_auth_xform structure as part of the @ref - * rte_cryptodev_session_create function call. This - * length must not exceed 240 bytes. + * rte_cryptodev_sym_session_create function call. + * This length must not exceed 240 bytes. /** * Attach a session to a symmetric crypto operation * - * @param op crypto operation + * @param sym_op crypto operation * @param sess cryptodev session */