> -----Original Message----- > From: Dooley, Brian <[email protected]> > Sent: Wednesday, February 16, 2022 11:15 PM > To: [email protected] > Cc: Dooley, Brian <[email protected]>; [email protected]; > [email protected]; Zhang, Roy Fan <[email protected]>; > [email protected]; [email protected]; Richardson, Bruce > <[email protected]>; Xia, Chenbo <[email protected]>; Jay Zhou > <[email protected]>; Thomas Monjalon <[email protected]> > Subject: [PATCH v2 09/11] vhost: fix missing C++ guards > > Some public header files were missing 'extern "C"' C++ guards, > and couldn't be used by C++ applications. Add the missing guards. > > Fixes: d7280c9fffcb ("vhost: support selective datapath") > Fixes: 78639d54563a ("vhost: introduce async enqueue registration API") > Fixes: 3bb595ecd682 ("vhost/crypto: add request handler") > Fixes: 94c16e89d779 ("vhost: mark vDPA driver API as internal") > Cc: [email protected] > Cc: [email protected]
Zhihong and Patrick is no longer in intel, can delete both if there's new version For this patch: Reviewed-by: Chenbo Xia <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > > Signed-off-by: Brian Dooley <[email protected]> > Acked-by: Bruce Richardson <[email protected]> > > --- > v2: Added missing apostrophe to commit message. > --- > lib/vhost/rte_vdpa.h | 9 +++++++++ > lib/vhost/rte_vhost_async.h | 8 ++++++++ > lib/vhost/rte_vhost_crypto.h | 8 ++++++++ > lib/vhost/vdpa_driver.h | 8 ++++++++ > 4 files changed, 33 insertions(+)

