Re: [patch net-next 1/2] rocker: enable support for scattered packets

2015-08-03 Thread David Miller
From: Jiri Pirko j...@resnulli.us
Date: Sun,  2 Aug 2015 20:56:37 +0200

 From: Ido Schimmel ido...@mellanox.com
 
 rocker supports the transmission of scattered packets, so let the kernel
 know about it by setting the NETIF_F_SG bit in the device's features.
 
 Signed-off-by: Ido Schimmel ido...@mellanox.com
 Signed-off-by: Jiri Pirko j...@resnulli.us

Applied.
--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [patch net-next 1/2] rocker: enable support for scattered packets

2015-08-03 Thread Scott Feldman
On Sun, Aug 2, 2015 at 11:56 AM, Jiri Pirko j...@resnulli.us wrote:
 From: Ido Schimmel ido...@mellanox.com

 rocker supports the transmission of scattered packets, so let the kernel
 know about it by setting the NETIF_F_SG bit in the device's features.

 Signed-off-by: Ido Schimmel ido...@mellanox.com
 Signed-off-by: Jiri Pirko j...@resnulli.us

Acked-by: Scott Feldman sfel...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[patch net-next 1/2] rocker: enable support for scattered packets

2015-08-02 Thread Jiri Pirko
From: Ido Schimmel ido...@mellanox.com

rocker supports the transmission of scattered packets, so let the kernel
know about it by setting the NETIF_F_SG bit in the device's features.

Signed-off-by: Ido Schimmel ido...@mellanox.com
Signed-off-by: Jiri Pirko j...@resnulli.us
---
 drivers/net/ethernet/rocker/rocker.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/rocker/rocker.c 
b/drivers/net/ethernet/rocker/rocker.c
index 7b4c347..730bdc0 100644
--- a/drivers/net/ethernet/rocker/rocker.c
+++ b/drivers/net/ethernet/rocker/rocker.c
@@ -4970,7 +4970,7 @@ static int rocker_probe_port(struct rocker *rocker, 
unsigned int port_number)
   NAPI_POLL_WEIGHT);
rocker_carrier_init(rocker_port);
 
-   dev-features |= NETIF_F_NETNS_LOCAL;
+   dev-features |= NETIF_F_NETNS_LOCAL | NETIF_F_SG;
 
err = register_netdev(dev);
if (err) {
-- 
1.9.3

--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html