netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Brian King <brking@linux.vnet.ibm.com>
To: David Miller <davem@davemloft.net>,
	netdev@vger.kernel.org, Santiago Leon <santil@linux.vnet.ibm.com>
Subject: Re: [PATCH 1/3] ibmveth: Remove duplicate checksum offload setup code
Date: Fri, 20 Aug 2010 09:01:43 -0500	[thread overview]
Message-ID: <4C6E8AC7.1010606@linux.vnet.ibm.com> (raw)
In-Reply-To: <20100818160515.GA29528@linux.vnet.ibm.com>

Patches 1-3

Acked-by: Brian King <brking@linux.vnet.ibm.com>

On 08/18/2010 11:05 AM, Robert Jennings wrote:
> Remove code in the device probe function where we set up the checksum
> offload feature and replace it with a call to an existing function that
> is doing the same.  This is done to clean up the driver in preparation
> of adding IPv6 checksum offload support.
> 
> Signed-off-by: Robert Jennings <rcj@linux.vnet.ibm.com>
> 
> ---
>  drivers/net/ibmveth.c |   18 +-----------------
>  1 file changed, 1 insertion(+), 17 deletions(-)
> 
> Index: b/drivers/net/ibmveth.c
> ===================================================================
> --- a/drivers/net/ibmveth.c
> +++ b/drivers/net/ibmveth.c
> @@ -1222,10 +1222,8 @@ static const struct net_device_ops ibmve
>  static int __devinit ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
>  {
>  	int rc, i;
> -	long ret;
>  	struct net_device *netdev;
>  	struct ibmveth_adapter *adapter;
> -	unsigned long set_attr, ret_attr;
> 
>  	unsigned char *mac_addr_p;
>  	unsigned int *mcastFilterSize_p;
> @@ -1310,21 +1308,7 @@ static int __devinit ibmveth_probe(struc
> 
>  	ibmveth_debug_printk("registering netdev...\n");
> 
> -	ret = h_illan_attributes(dev->unit_address, 0, 0, &ret_attr);
> -
> -	if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
> -	    !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
> -	    (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
> -		set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
> -
> -		ret = h_illan_attributes(dev->unit_address, 0, set_attr, &ret_attr);
> -
> -		if (ret == H_SUCCESS) {
> -			adapter->rx_csum = 1;
> -			netdev->features |= NETIF_F_IP_CSUM;
> -		} else
> -			ret = h_illan_attributes(dev->unit_address, set_attr, 0, &ret_attr);
> -	}
> +	ibmveth_set_csum_offload(netdev, 1, ibmveth_set_tx_csum_flags);
> 
>  	rc = register_netdev(netdev);
> 
> --
> 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


-- 
Brian King
Linux on Power Virtualization
IBM Linux Technology Center



      parent reply	other threads:[~2010-08-20 14:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-18 16:05 [PATCH 1/3] ibmveth: Remove duplicate checksum offload setup code Robert Jennings
2010-08-18 16:07 ` [PATCH 2/3] ibmveth: Enable IPv6 checksum offload Robert Jennings
2010-08-18 16:08 ` [PATCH 3/3] ibmveth: Driver version 1.04 Robert Jennings
2010-08-20 14:01 ` Brian King [this message]

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=4C6E8AC7.1010606@linux.vnet.ibm.com \
    --to=brking@linux.vnet.ibm.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=santil@linux.vnet.ibm.com \
    /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).