| title: | patch qlge don t fail open when port is not i |
|
This is a note to let you know that we have just queued up the patch titled
Subject: qlge: Dont fail open when port is not initialized.
to the 2.6.32-stable tree. Its filename is
qlge-don-t-fail-open-when-port-is-not-initialized.patch
A git repo of this tree can be found at
rel="nofollow" www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
From 80928860941023bb37e9c61927395d0eb753bc3b Mon Sep 17 00:00:00 2001
From: Ron Mercer <ron.mercer@xxxxxxxxxx
Date: Sat, 10 Oct 2009 09:35:09 +0000
Subject: qlge: Dont fail open when port is not initialized.
From: Ron Mercer <ron.mercer@xxxxxxxxxx
commit 80928860941023bb37e9c61927395d0eb753bc3b upstream.
Signed-off-by: Ron Mercer <ron.mercer@xxxxxxxxxx
Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx
Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx
---
drivers/net/qlge/qlge_main.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
--- a/drivers/net/qlge/qlge_main.c
+++ b/drivers/net/qlge/qlge_main.c
@@ -3310,10 +3310,8 @@ static int ql_adapter_initialize(struct
/* Initialize the port and set the max framesize. */
status = qdev- nic_ops- port_initialize(qdev);
- if (status) {
- QPRINTK(qdev, IFUP, ERR, "Failed to start port.
");
- return status;
- }
+ if (status)
+ QPRINTK(qdev, IFUP, ERR, "Failed to start port.
");
/* Set up the MAC address and frame routing filter. */
status = ql_cam_route_initialize(qdev);
Patches currently in stable-queue which might be from ron.mercer@xxxxxxxxxx are
queue-2.6.32/qlge-remove-explicit-setting-of-pci-dev-ctl-reg.patch
queue-2.6.32/qlge-set-pcie-max-read-request-size.patch
queue-2.6.32/qlge-don-t-fail-open-when-port-is-not-initialized.patch
queue-2.6.32/qlge-add-handler-for-dcbx-firmware-event.patch
queue-2.6.32/qlge-bonding-fix-for-mode-6.patch
--
To unsubscribe from this list: send the line "unsubscribe stable-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at rel="nofollow" vger.kernel.org/majordomo-info.html vger.kernel.org/majordomo-info.html
|