| Submitter | Jeff Kirsher |
|---|---|
| Date | Dec. 20, 2008, 12:15 a.m. |
| Message ID | <20081220001520.5908.65998.stgit@lost.foo-projects.org> |
| Download | mbox | patch |
| Permalink | /patch/15009/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Date: Fri, 19 Dec 2008 16:15:20 -0800 > Priority flow contol statistics for Data Center Bridging (DCB) weren't > included in ethtool. This patch adds them. > > Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com> > Signed-off-by: Eric W Multanen <eric.w.multanen@intel.com> > Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Also applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c index ad9759d..849c1fe 100644 --- a/drivers/net/ixgbe/ixgbe_ethtool.c +++ b/drivers/net/ixgbe/ixgbe_ethtool.c @@ -881,8 +881,15 @@ static void ixgbe_get_strings(struct net_device *netdev, u32 stringset, if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) { for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) { sprintf(p, "tx_pb_%u_pxon", i); + p += ETH_GSTRING_LEN; + sprintf(p, "tx_pb_%u_pxoff", i); + p += ETH_GSTRING_LEN; } for (i = 0; i < MAX_RX_PACKET_BUFFERS; i++) { + sprintf(p, "rx_pb_%u_pxon", i); + p += ETH_GSTRING_LEN; + sprintf(p, "rx_pb_%u_pxoff", i); + p += ETH_GSTRING_LEN; } } /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */