linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pete Zaitcev <zaitcev@redhat.com>
To: Michael Wu <flamingice@sourmilk.net>
Cc: cebbert@redhat.com, linville@redhat.com,
	linux-wireless@vger.kernel.org, zaitcev@redhat.com
Subject: Re: p54usb: Don't run DMA off code segment
Date: Thu, 19 Jul 2007 22:27:16 -0700	[thread overview]
Message-ID: <20070719222716.e4152774.zaitcev@redhat.com> (raw)
In-Reply-To: <200707180048.35762.flamingice@sourmilk.net>

On Wed, 18 Jul 2007 00:48:31 -0700, Michael Wu <flamingice@sourmilk.net=
> wrote:

> On Monday 16 July 2007 23:10, Pete Zaitcev wrote:
> > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0if ((err =3D p54u_bulk_m=
sg(priv, P54U_PIPE_DATA, buf, 4)) !=3D 0) {
> Please follow the style used elsewhere in this function and do it lik=
e:
>=20
>   err =3D p54u_bulk_msg(priv, P54U_PIPE_DATA, buf, 4);
>   if (err) {
>=20
> The rest of the patch looks fine. Thanks for fixing this.

How about this, then?

---

Passing a pointer into the code segment to DMA API is invalid. Most of =
the
time, you just DMA garbage into the device, but sometimes the controlle=
r
gets a bad address and then you see this:

usbcore: registered new interface driver prism54usb
usb 3-1: new full speed USB device using uhci_hcd and address 2
usb 3-1: not running at top speed; connect to a high speed hub
usb 3-1: configuration #1 chosen from 1 choice
uhci_hcd 0000:00:1d.2: host system error, PCI problems?
uhci_hcd 0000:00:1d.2: host controller halted, very bad!
uhci_hcd 0000:00:1d.2: HC died; cleaning up
p54usb: reset failed!
prism54usb: probe of 3-1:1.0 failed with error -110

See:
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=3D242638

Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>

--- linux-2.6.23-0.15.rc0.git1.fc8/drivers/net/wireless/mac80211/p54/pr=
ism54usb.c	2007-07-16 20:16:00.000000000 -0700
+++ linux-2.6.23-0.15.rc0.git1.fc8-p54u/drivers/net/wireless/mac80211/p=
54/prism54usb.c	2007-07-19 21:46:41.000000000 -0700
@@ -375,22 +375,24 @@ static int p54u_upload_firmware_3887(str
 	struct x2_header *hdr;
 	unsigned long timeout;
=20
-	err =3D p54u_bulk_msg(priv, P54U_PIPE_DATA, start_string, 4);
-	if (err) {
-		printk(KERN_ERR "p54usb: reset failed!\n");
-		return err;
-	}
-
 	tmp =3D buf =3D kmalloc(P54U_FW_BLOCK, GFP_KERNEL);
 	if (!buf) {
 		printk(KERN_ERR "p54usb: cannot allocate firmware upload buffer!\n")=
;
-		return -ENOMEM;
+		err =3D -ENOMEM;
+		goto err_bufalloc;
+	}
+
+	memcpy(buf, start_string, 4);
+	err =3D p54u_bulk_msg(priv, P54U_PIPE_DATA, buf, 4);
+	if (err) {
+		printk(KERN_ERR "p54usb: reset failed! (%d)\n", err);
+		goto err_reset;
 	}
=20
 	err =3D request_firmware(&fw_entry, "isl3887usb_bare", &priv->udev->d=
ev);
 	if (err) {
 		printk(KERN_ERR "p54usb: cannot find firmware (isl3887usb_bare)!\n")=
;
-		return err;
+		goto err_req_fw_failed;
 	}
=20
 	p54_parse_firmware(dev, fw_entry);
@@ -499,7 +501,10 @@ static int p54u_upload_firmware_3887(str
=20
   err_upload_failed:
 	release_firmware(fw_entry);
+  err_req_fw_failed:
+  err_reset:
 	kfree(buf);
+  err_bufalloc:
 	return err;
 }
=20
-
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2007-07-20  5:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20070716231051.0971d9c0.zaitcev@redhat.com>
2007-07-18  7:48 ` p54usb: Don't run DMA off code segment Michael Wu
2007-07-20  5:27   ` Pete Zaitcev [this message]
2007-07-20 14:37     ` John W. Linville

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=20070719222716.e4152774.zaitcev@redhat.com \
    --to=zaitcev@redhat.com \
    --cc=cebbert@redhat.com \
    --cc=flamingice@sourmilk.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@redhat.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).