Re: [dpdk-dev] [PATCH v3] ethdev: get rxq interrupt fd

2018-10-04 Thread Ferruh Yigit
On 10/2/2018 11:48 AM, Ferruh Yigit wrote: > On 9/29/2018 3:12 AM, Xiaoyun Li wrote: >> Some users want to use their own epoll instances to control both >> DPDK rxq interrupt fds and their own other fds. So added a function >> to get rxq interrupt fd based on port id and queue id. >> >> Signed-off-

Re: [dpdk-dev] [PATCH v3] ethdev: get rxq interrupt fd

2018-10-02 Thread Ferruh Yigit
On 9/29/2018 3:12 AM, Xiaoyun Li wrote: > Some users want to use their own epoll instances to control both > DPDK rxq interrupt fds and their own other fds. So added a function > to get rxq interrupt fd based on port id and queue id. > > Signed-off-by: Xiaoyun Li Reviewed-by: Ferruh Yigit

[dpdk-dev] [PATCH v3] ethdev: get rxq interrupt fd

2018-09-28 Thread Xiaoyun Li
Some users want to use their own epoll instances to control both DPDK rxq interrupt fds and their own other fds. So added a function to get rxq interrupt fd based on port id and queue id. Signed-off-by: Xiaoyun Li --- v3: * Since the API only wants to return fd, return fd or -1. v2: * Added mis