diff mbox

vxge: Update driver_config->vpath_per_dev for each function in probe.

Message ID Pine.GSO.4.10.10910050506150.2346-100000@guinness
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

Sreenivasa Honnur Oct. 5, 2009, 9:06 a.m. UTC
- Update driver_config->vpath_per_dev for each function in probe.

- vpath_per_device specifies number of vpaths supported for each function/device. The
  current code was updating vpath_per_device only for physical device, however this has
  to be updated for each function also in case of a MF(Multi function) device.

Signed-off-by: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
---

--
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

Comments

David Miller Oct. 5, 2009, 9:32 a.m. UTC | #1
From: Sreenivasa Honnur <Sreenivasa.Honnur@neterion.com>
Date: Mon, 5 Oct 2009 05:06:56 -0400 (EDT)

> - Update driver_config->vpath_per_dev for each function in probe.
> 
> - vpath_per_device specifies number of vpaths supported for each function/device. The
>   current code was updating vpath_per_device only for physical device, however this has
>   to be updated for each function also in case of a MF(Multi function) device.
> 
> Signed-off-by: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>

You keep posting this patch twice.

Once without the proper "[PATCH 2/9]" indication in the subject
heading, and once with it there.

Please sort out your patch set, there is something wrong with
what you're submitting for this.
--
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
Sreenivasa Honnur Oct. 5, 2009, 9:36 a.m. UTC | #2
Please ignore this patch.

I submitted this patch without patch number. I again resubmitted it with
patch number.


-----Original Message-----
From: David Miller [mailto:davem@davemloft.net] 
Sent: Monday, October 05, 2009 3:02 PM
To: Sreenivasa Honnur
Cc: netdev@vger.kernel.org; support
Subject: Re: vxge: Update driver_config->vpath_per_dev for each function
in probe.

From: Sreenivasa Honnur <Sreenivasa.Honnur@neterion.com>
Date: Mon, 5 Oct 2009 05:06:56 -0400 (EDT)

> - Update driver_config->vpath_per_dev for each function in probe.
> 
> - vpath_per_device specifies number of vpaths supported for each
function/device. The
>   current code was updating vpath_per_device only for physical device,
however this has
>   to be updated for each function also in case of a MF(Multi function)
device.
> 
> Signed-off-by: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>

You keep posting this patch twice.

Once without the proper "[PATCH 2/9]" indication in the subject heading,
and once with it there.

Please sort out your patch set, there is something wrong with what
you're submitting for this.
--
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
David Miller Oct. 5, 2009, 9:38 a.m. UTC | #3
From: "Sreenivasa Honnur" <Sreenivasa.Honnur@neterion.com>
Date: Mon, 5 Oct 2009 05:36:19 -0400

> Please ignore this patch.
> 
> I submitted this patch without patch number. I again resubmitted it with
> patch number.

Ok.
--
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
diff mbox

Patch

diff -urpN patch1/drivers/net/vxge/vxge-main.c patch2/drivers/net/vxge/vxge-main.c
--- patch1/drivers/net/vxge/vxge-main.c	2009-09-03 22:40:14.000000000 -0700
+++ patch2/drivers/net/vxge/vxge-main.c	2009-09-04 01:18:13.000000000 -0700
@@ -4088,9 +4088,10 @@  vxge_probe(struct pci_dev *pdev, const s
 		driver_config->config_dev_cnt = 0;
 		driver_config->total_dev_cnt = 0;
 		driver_config->g_no_cpus = 0;
-		driver_config->vpath_per_dev = max_config_vpath;
 	}
 
+	driver_config->vpath_per_dev = max_config_vpath;
+
 	driver_config->total_dev_cnt++;
 	if (++driver_config->config_dev_cnt > max_config_dev) {
 		ret = 0;