[v2] framework/project_dpdk: fix pylama errors

Message ID 1642596881-11419-1-git-send-email-juraj.linkes@pantheon.tech (mailing list archive)
State Accepted
Headers
Series [v2] framework/project_dpdk: fix pylama errors |

Checks

Context Check Description
ci/Intel-dts-suite-test success Testing OK

Commit Message

Juraj Linkeš Jan. 19, 2022, 12:54 p.m. UTC
  Pylama found the following errors:
framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
---
Lijuan, please add additional people to review if needed.
---
 framework/project_dpdk.py | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)
  

Comments

Jun Dong Jan. 25, 2022, 5:32 a.m. UTC | #1
> -----Original Message-----
> From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> Sent: Wednesday, January 19, 2022 8:55 PM
> To: Tu, Lijuan <lijuan.tu@intel.com>; ohilyard@iol.unh.edu; Dong, JunX
> <junx.dong@intel.com>
> Cc: dts@dpdk.org; Juraj Linkeš <juraj.linkes@pantheon.tech>
> Subject: [PATCH v2] framework/project_dpdk: fix pylama errors
> 
> Pylama found the following errors:
> framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> 
> Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>

Reviewed-by: Jun Dong <junx.dong@intel.com>
  
Tu, Lijuan Jan. 25, 2022, 5:57 a.m. UTC | #2
> -----Original Message-----
> From: Dong, JunX <junx.dong@intel.com>
> Sent: 2022年1月25日 13:32
> To: Juraj Linkeš <juraj.linkes@pantheon.tech>; Tu, Lijuan <lijuan.tu@intel.com>;
> ohilyard@iol.unh.edu
> Cc: dts@dpdk.org
> Subject: RE: [PATCH v2] framework/project_dpdk: fix pylama errors
> 
> > -----Original Message-----
> > From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> > Sent: Wednesday, January 19, 2022 8:55 PM
> > To: Tu, Lijuan <lijuan.tu@intel.com>; ohilyard@iol.unh.edu; Dong, JunX
> > <junx.dong@intel.com>
> > Cc: dts@dpdk.org; Juraj Linkeš <juraj.linkes@pantheon.tech>
> > Subject: [PATCH v2] framework/project_dpdk: fix pylama errors
> >
> > Pylama found the following errors:
> > framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> >
> > Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> 
> Reviewed-by: Jun Dong <junx.dong@intel.com>

Applied, thanks
  

Patch

diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py
index 9927bcc1..9b579b68 100644
--- a/framework/project_dpdk.py
+++ b/framework/project_dpdk.py
@@ -286,15 +286,6 @@  class DPDKdut(Dut):
         shared_lib_path = load_global_setting(HOST_SHARED_LIB_PATH)
         if use_shared_lib == 'true' and 'Virt' not in str(self):
             self.set_build_options({'RTE_BUILD_SHARED_LIB': 'y'})
-        kernel_driver = ''
-        nic_name = ''
-        if 'Virt' in str(self):
-            if self.host_dut.nic:
-                kernel_driver = self.host_dut.nic.default_driver
-                nic_name = self.host_dut.nic.name
-        elif self.nic:
-            kernel_driver = self.nic.default_driver
-            nic_name = self.nic.name
 
         build_type = load_global_setting(HOST_BUILD_TYPE_SETTING)
         build_install_dpdk = getattr(self, 'build_install_dpdk_%s_%s' % (self.get_os_type(), build_type))
@@ -418,7 +409,7 @@  class DPDKdut(Dut):
                                     "--snapshot when run dts")
                 # if ':' in session, this is vm dut, use the dut session
                 if ':' in self.session.name:
-                    session_info = self.host_dut.alt_session
+                    session_info = self.host_session
                 else:
                      session_info = self.alt_session
                 out = session_info.send_expect('ls -F %s' % self.package, '# ')