lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed, 11 May 2011 12:07:26 +0200
From:	Michał Mirosław <mirqus@...il.com>
To:	Shan Wei <shanwei@...fujitsu.com>
Cc:	David Miller <davem@...emloft.net>,
	netdev <netdev@...r.kernel.org>, rusty@...tcorp.com.au,
	"Michael S. Tsirkin" <mst@...hat.com>,
	Eric Dumazet <eric.dumazet@...il.com>, krkumar2@...ibm.com,
	Ben Hutchings <bhutchings@...arflare.com>
Subject: Re: [PATCH net-next 2/2 V3] net: driver: use NETIF_F_GSO_SOFTWARE
 masks directly

2011/5/11 Shan Wei <shanwei@...fujitsu.com>:
> For loopback device can support any offload, so directly using
> NETIF_F_GSO_SOFTWARE offload mask is enough safe.
> And as Michał Mirosław suggested, add NETIF_F_HIGHDMA to hw_features.
>
>
> For virtio_net driver, safely using NETIF_F_GSO_SOFTWARE offload mask for bit operation.
>
> Signed-off-by: Shan Wei <shanwei@...fujitsu.com>
> ---
>  drivers/net/loopback.c   |   16 +++++-----------
>  drivers/net/virtio_net.c |    3 ++-
>  2 files changed, 7 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
> index 4ce9e5f..e6cccec 100644
> --- a/drivers/net/loopback.c
> +++ b/drivers/net/loopback.c
> @@ -165,17 +165,11 @@ static void loopback_setup(struct net_device *dev)
>        dev->type               = ARPHRD_LOOPBACK;      /* 0x0001*/
>        dev->flags              = IFF_LOOPBACK;
>        dev->priv_flags        &= ~IFF_XMIT_DST_RELEASE;
> -       dev->hw_features        = NETIF_F_ALL_TSO | NETIF_F_UFO;
> -       dev->features           = NETIF_F_SG | NETIF_F_FRAGLIST
> -               | NETIF_F_ALL_TSO
> -               | NETIF_F_UFO
> -               | NETIF_F_NO_CSUM
> -               | NETIF_F_RXCSUM
> -               | NETIF_F_HIGHDMA
> -               | NETIF_F_LLTX
> -               | NETIF_F_NETNS_LOCAL
> -               | NETIF_F_VLAN_CHALLENGED
> -               | NETIF_F_LOOPBACK;
> +       dev->hw_features        = NETIF_F_GSO_SOFTWARE | NETIF_F_HIGHDMA;
> +       dev->features           = dev->hw_features | NETIF_F_SG
> +               | NETIF_F_FRAGLIST | NETIF_F_NO_CSUM | NETIF_F_RXCSUM
> +               | NETIF_F_LLTX | NETIF_F_NETNS_LOCAL
> +               | NETIF_F_VLAN_CHALLENGED | NETIF_F_LOOPBACK;
>        dev->ethtool_ops        = &loopback_ethtool_ops;
>        dev->header_ops         = &eth_header_ops;
>        dev->netdev_ops         = &loopback_ops;
[...]

Looks ok. For loopback, more features are actually changeable - only
last 4 are really forced here.

Best Regards,
Michał Mirosław
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ