From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id E07401075 for ; Thu, 16 Mar 2017 21:12:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1489695154; x=1521231154; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=ZlfPqs9zS+i3usRGND37wTo/X5GCowo8itJBqkKivv8=; b=Gp6I3Imi+pD3KawylHi9oWKu2PTJTRUoS7UPOzgjZX3Xp2oFO83gBXSy mT8Ail8REbjhXdJNxClBZ/SBzBY65Q==; Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Mar 2017 13:12:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,173,1486454400"; d="scan'208";a="68150129" Received: from txasoft-yocto.an.intel.com (HELO txasoft-yocto.an.intel.com.) ([10.123.72.111]) by orsmga004.jf.intel.com with ESMTP; 16 Mar 2017 13:12:32 -0700 From: Gage Eads To: dev@dpdk.org Cc: jerin.jacob@caviumnetworks.com, bruce.richardson@intel.com, hemant.agrawal@nxp.com, harry.van.haaren@intel.com, nipun.gupta@nxp.com Date: Thu, 16 Mar 2017 15:12:19 -0500 Message-Id: <1489695139-13111-1-git-send-email-gage.eads@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1487178594-12912-1-git-send-email-gage.eads@intel.com> References: <1487178594-12912-1-git-send-email-gage.eads@intel.com> Subject: [dpdk-dev] [PATCH v3] eventdev: add errno-style return values 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: Thu, 16 Mar 2017 20:12:35 -0000 This commit adds rte_errno return values to rte_event_enqueue_burst() and rte_event_dequeue_burst(). These return values allows user software to differentiate between an invalid argument (such as an invalid queue_id or sched_type in an enqueued event) and backpressure from the event device. The port and device ID checks are placed in RTE_LIBRTE_EVENTDEV_DEBUG header guards to avoid the performance hit in non-debug execution. Signed-off-by: Gage Eads --- Changes for v2: - Remove rte_errno initialization Changes for v3: - Fix checkpatch and check-git-log.sh errors lib/librte_eventdev/rte_eventdev.h | 42 +++++++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h index 2b30a35..3e54b27 100644 --- a/lib/librte_eventdev/rte_eventdev.h +++ b/lib/librte_eventdev/rte_eventdev.h @@ -245,6 +245,7 @@ extern "C" { #include #include +#include struct rte_mbuf; /* we just use mbuf pointers; no need to include rte_mbuf.h */ @@ -1118,9 +1119,14 @@ rte_event_schedule(uint8_t dev_id) * The number of event objects actually enqueued on the event device. The * return value can be less than the value of the *nb_events* parameter when * the event devices queue is full or if invalid parameters are specified in a - * *rte_event*. If return value is less than *nb_events*, the remaining events - * at the end of ev[] are not consumed,and the caller has to take care of them - * + * *rte_event*. If the return value is less than *nb_events*, the remaining + * events at the end of ev[] are not consumed and the caller has to take care + * of them, and rte_errno is set accordingly. Possible errno values include: + * -(-EINVAL) The port ID is invalid, device ID is invalid, an event's queue + * ID is invalid, or an event's sched type doesn't match the + * capabilities of the destination queue. + * -(-ENOSPC) The event port was backpressured and unable to enqueue + * one or more events. * @see rte_event_port_enqueue_depth() */ static inline uint16_t @@ -1129,6 +1135,21 @@ rte_event_enqueue_burst(uint8_t dev_id, uint8_t port_id, { struct rte_eventdev *dev = &rte_eventdevs[dev_id]; + rte_errno = 0; +#ifdef RTE_LIBRTE_EVENTDEV_DEBUG + if (rte_eventdevs[dev_id].attached == RTE_EVENTDEV_DETACHED) { + RTE_EDEV_LOG_DEBUG("Invalid dev_id=%d\n", dev_id); + rte_errno = -EINVAL; + return 0; + } + + if (port_id >= dev->data->nb_ports) { + RTE_EDEV_LOG_DEBUG("Invalid port_id=%d\n", port_id); + rte_errno = -EINVAL; + return 0; + } +#endif + /* * Allow zero cost non burst mode routine invocation if application * requests nb_events as const one @@ -1239,6 +1260,21 @@ rte_event_dequeue_burst(uint8_t dev_id, uint8_t port_id, struct rte_event ev[], { struct rte_eventdev *dev = &rte_eventdevs[dev_id]; +#ifdef RTE_LIBRTE_EVENTDEV_DEBUG + rte_errno = 0; + if (rte_eventdevs[dev_id].attached == RTE_EVENTDEV_DETACHED) { + RTE_EDEV_LOG_DEBUG("Invalid dev_id=%d\n", dev_id); + rte_errno = -EINVAL; + return 0; + } + + if (port_id >= dev->data->nb_ports) { + RTE_EDEV_LOG_DEBUG("Invalid port_id=%d\n", port_id); + rte_errno = -EINVAL; + return 0; + } +#endif + /* * Allow zero cost non burst mode routine invocation if application * requests nb_events as const one -- 2.7.4