diff options
author | 2021-06-04 15:59:41 -0700 | |
---|---|---|
committer | 2021-06-07 21:25:09 +0000 | |
commit | 2fea186aeec9c40adf13042669a4de3670f5e5cd (patch) | |
tree | d528cda7b461eef2894f212d006b041d6b799695 /src/vcl/vppcom.h | |
parent | 1c20c2f774d3b415a20c1cb7fb197bd53e82b7a4 (diff) |
vcl: epoll error handling fixes and improvements
- return VPPCOM_EEXIST if attempting to re-add a session
- return VPPCOM_ENOENT if the session to be removed is not epolled
- generate EPOLLIN if adding it through a mod operation on a session
that has data and did not have the event previously set.
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I728a06b8cf84af8d8c1dea7406e284de8886dffc
(cherry picked from commit 2645f68985df4955fd8a161224595dad9f4ab488)
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r-- | src/vcl/vppcom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index ae157ccc8b4..c2a625e974e 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -98,7 +98,8 @@ typedef enum VPPCOM_ECONNREFUSED = -ECONNREFUSED, VPPCOM_ETIMEDOUT = -ETIMEDOUT, VPPCOM_EEXIST = -EEXIST, - VPPCOM_ENOPROTOOPT = -ENOPROTOOPT + VPPCOM_ENOPROTOOPT = -ENOPROTOOPT, + VPPCOM_ENOENT = -ENOENT, } vppcom_error_t; typedef enum |