test suite reviews and discussions
 help / color / mirror / Atom feed
From: Ali Alnubani <alialnu@mellanox.com>
To: dts@dpdk.org
Cc: dpdklab@iol.unh.edu
Subject: [dts] [PATCH for-next v2 2/3] nics/net_device: add a function to get nic speed
Date: Fri, 30 Mar 2018 02:47:43 +0300	[thread overview]
Message-ID: <20180329234744.17716-3-alialnu@mellanox.com> (raw)
In-Reply-To: <20180329234744.17716-1-alialnu@mellanox.com>

Needed to differentiate between nics with same
device identifier, but with different speeds.

Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
---
 nics/net_device.py | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/nics/net_device.py b/nics/net_device.py
index 4861145..0f4bac3 100644
--- a/nics/net_device.py
+++ b/nics/net_device.py
@@ -539,6 +539,20 @@ class NetDevice(object):
         """
         return self.crb.get_pci_dev_id(self.domain_id, self.bus_id, self.devfun_id)
 
+    def get_nic_speed(self):
+        """
+        Get the speed of specified pci device.
+        """
+        nic_speed = None
+        command = ('cat /sys/bus/pci/devices/%s\:%s\:%s/net/*/speed' % ( \
+                self.domain_id, self.bus_id, self.devfun_id))
+        try:
+            nic_speed = self.__send_expect(command, '# ')
+        except Exception as e:
+            print 'Failed to get the speed of the pci device [%s:%s:%s]: %s' \
+                    % (self.domain_id, self.bus_id, self.devfun_id, e)
+        return nic_speed
+
     @nic_has_driver
     def get_sriov_vfs_pci(self):
         """
-- 
2.16.2

  parent reply	other threads:[~2018-03-29 23:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-29 23:47 [dts] [PATCH for-next v2 0/3] nic_single_core_perf: add support for Mellanox's nics Ali Alnubani
2018-03-29 23:47 ` [dts] [PATCH for-next v2 1/3] framework/project_dpdk: pass modprobe if driver is mlx5_core Ali Alnubani
2018-03-29 23:47 ` Ali Alnubani [this message]
2018-03-30  8:29   ` [dts] [PATCH for-next v2 2/3] nics/net_device: add a function to get nic speed Liu, Yong
2018-03-30 22:55     ` Ali Alnubani
2018-03-29 23:47 ` [dts] [PATCH for-next v2 3/3] nic_single_core_perf: add support for Mellanox's nics Ali Alnubani

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180329234744.17716-3-alialnu@mellanox.com \
    --to=alialnu@mellanox.com \
    --cc=dpdklab@iol.unh.edu \
    --cc=dts@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).