diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2018-07-24 14:00:41 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-07-25 12:05:29 +0000 |
commit | 4e6014fc9e8611eef16d9267151f1039ff00c190 (patch) | |
tree | 4fb9652a20399925f57f4a86064ec83b2e38d2d1 /src/plugins/avf/avf.api | |
parent | e8b68a3da28aa0a2c5f2b7db8e4a59b787c3c4d1 (diff) |
avf: api fix
avf_create_reply returns software index for the new interface
Change-Id: I8a6b1a1985b072efafa24eb258b1f2cb1bea1110
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'src/plugins/avf/avf.api')
-rw-r--r-- | src/plugins/avf/avf.api | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/plugins/avf/avf.api b/src/plugins/avf/avf.api index 096d45b8c82..cbded705e49 100644 --- a/src/plugins/avf/avf.api +++ b/src/plugins/avf/avf.api @@ -27,7 +27,7 @@ option version = "1.0.0"; @param txq_size - transmit queue size */ -autoreply define avf_create +define avf_create { u32 client_index; u32 context; @@ -39,6 +39,19 @@ autoreply define avf_create }; /** \brief + @param context - sender context, to match reply w/ request + @param retval - return value for request + @param sw_if_index - software index for the new avf interface +*/ + +define avf_create_reply +{ + u32 context; + i32 retval; + u32 sw_if_index; +}; + +/** \brief @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request @param sw_if_index - interface index |