Re: [dpdk-dev] [PATCH v3] eventdev: add errno-style return values

2017-03-17 Thread Eads, Gage
Ah, sorry about that! I revised the v1 patch, not the v2 patch. I'll fix and resubmit. > -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Thursday, March 16, 2017 10:11 PM > To: Eads, Gage > Cc: dev@dpdk.org; Richardson, Bruce ; > hemant.agra..

Re: [dpdk-dev] [PATCH v3] eventdev: add errno-style return values

2017-03-16 Thread Jerin Jacob
On Thu, Mar 16, 2017 at 03:12:19PM -0500, Gage Eads wrote: > 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

[dpdk-dev] [PATCH v3] eventdev: add errno-style return values

2017-03-16 Thread Gage Eads
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 p