> -----Original Message----- > From: Thomas Monjalon <[email protected]> > Sent: Tuesday, September 29, 2020 07:14 > To: [email protected] > Cc: Yigit, Ferruh <[email protected]>; [email protected]; Xu, > Rosen <[email protected]>; > Sachin Saxena <[email protected]>; Liron Himi <[email protected]>; > John W. Linville > <[email protected]>; Loftus, Ciara <[email protected]>; Zhang, Qi Z > <[email protected]>; > Shepard Siegel <[email protected]>; Ed Czeck > <[email protected]>; John Miller > <[email protected]>; Igor Russkikh <[email protected]>; > Pavel Belous > <[email protected]>; Steven Webster <[email protected]>; > Matt Peters > <[email protected]>; Somalapuram Amaranath <[email protected]>; Rasesh > Mody <[email protected]>; > Shahed Shaikh <[email protected]>; Ajit Khaparde > <[email protected]>; Somnath Kotur > <[email protected]>; Chas Williams <[email protected]>; Wei Hu (Xavier) > <[email protected]>; > Rahul Lakkireddy <[email protected]>; Hemant Agrawal > <[email protected]>; Guo, Jia > <[email protected]>; Wang, Haiyue <[email protected]>; Marcin Wojtas > <[email protected]>; Michal > Krawczyk <[email protected]>; Guy Tzalik <[email protected]>; Evgeny > Schemeilin <[email protected]>; > Igor Chauskin <[email protected]>; Gagandeep Singh <[email protected]>; John > Daley <[email protected]>; > Hyong Youb Kim <[email protected]>; Gaetan Rivet <[email protected]>; Wang, Xiao > W > <[email protected]>; Ziyang Xuan <[email protected]>; Xiaoyun Wang > <[email protected]>; Guoyang Zhou <[email protected]>; Min Hu > (Connor) > <[email protected]>; Yisen Zhuang <[email protected]>; Xing, Beilei > <[email protected]>; Wu, > Jingjing <[email protected]>; Yang, Qiming <[email protected]>; > Alfredo Cardigliano > <[email protected]>; Shijith Thotton <[email protected]>; > Srisivasubramanian Srinivasan > <[email protected]>; Jakub Grajciar <[email protected]>; Matan Azrad > <[email protected]>; Shahaf > Shuler <[email protected]>; Viacheslav Ovsiienko <[email protected]>; > Zyta Szpak > <[email protected]>; Stephen Hemminger <[email protected]>; K. Y. > Srinivasan <[email protected]>; > Haiyang Zhang <[email protected]>; Long Li <[email protected]>; > Martin Spinler > <[email protected]>; Heinrich Kuhn <[email protected]>; Harman > Kalra <[email protected]>; > Jerin Jacob <[email protected]>; Nithin Dabilpuram > <[email protected]>; Kiran Kumar K > <[email protected]>; Akhil Goyal <[email protected]>; Singh, Jasvinder > <[email protected]>; Dumitrescu, Cristian > <[email protected]>; Wiles, Keith > <[email protected]>; Maciej Czekaj <[email protected]>; Maxime Coquelin > <[email protected]>; Xia, Chenbo <[email protected]>; Wang, > Zhihong > <[email protected]>; Yong Wang <[email protected]> > Subject: [PATCH v3 02/29] ethdev: allow drivers to return error on close > > The device operation .dev_close was returning void. > This driver interface is changed to return an int. > > Note that the API rte_eth_dev_close() is still returning void, > although a deprecation notice is pending to change it as well. > > Signed-off-by: Thomas Monjalon <[email protected]> > Reviewed-by: Rosen Xu <[email protected]> > Reviewed-by: Sachin Saxena <[email protected]> > Reviewed-by: Liron Himi <[email protected]> > ---
> drivers/net/e1000/em_ethdev.c | 6 ++++-- > drivers/net/e1000/igb_ethdev.c | 12 ++++++++---- > drivers/net/igc/igc_ethdev.c | 6 ++++-- > drivers/net/ixgbe/ixgbe_ethdev.c | 11 +++++++---- For e1000/igc/ixgbe Reviewed-by: Haiyue Wang <[email protected]> > 2.28.0

