urb.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. #include <linux/module.h>
  2. #include <linux/string.h>
  3. #include <linux/bitops.h>
  4. #include <linux/slab.h>
  5. #include <linux/init.h>
  6. #include <linux/usb.h>
  7. #include <linux/wait.h>
  8. #include "hcd.h"
  9. #define to_urb(d) container_of(d, struct urb, kref)
  10. static void urb_destroy(struct kref *kref)
  11. {
  12. struct urb *urb = to_urb(kref);
  13. kfree(urb);
  14. }
  15. /**
  16. * usb_init_urb - initializes a urb so that it can be used by a USB driver
  17. * @urb: pointer to the urb to initialize
  18. *
  19. * Initializes a urb so that the USB subsystem can use it properly.
  20. *
  21. * If a urb is created with a call to usb_alloc_urb() it is not
  22. * necessary to call this function. Only use this if you allocate the
  23. * space for a struct urb on your own. If you call this function, be
  24. * careful when freeing the memory for your urb that it is no longer in
  25. * use by the USB core.
  26. *
  27. * Only use this function if you _really_ understand what you are doing.
  28. */
  29. void usb_init_urb(struct urb *urb)
  30. {
  31. if (urb) {
  32. memset(urb, 0, sizeof(*urb));
  33. kref_init(&urb->kref);
  34. spin_lock_init(&urb->lock);
  35. INIT_LIST_HEAD(&urb->anchor_list);
  36. }
  37. }
  38. /**
  39. * usb_alloc_urb - creates a new urb for a USB driver to use
  40. * @iso_packets: number of iso packets for this urb
  41. * @mem_flags: the type of memory to allocate, see kmalloc() for a list of
  42. * valid options for this.
  43. *
  44. * Creates an urb for the USB driver to use, initializes a few internal
  45. * structures, incrementes the usage counter, and returns a pointer to it.
  46. *
  47. * If no memory is available, NULL is returned.
  48. *
  49. * If the driver want to use this urb for interrupt, control, or bulk
  50. * endpoints, pass '0' as the number of iso packets.
  51. *
  52. * The driver must call usb_free_urb() when it is finished with the urb.
  53. */
  54. struct urb *usb_alloc_urb(int iso_packets, gfp_t mem_flags)
  55. {
  56. struct urb *urb;
  57. urb = kmalloc(sizeof(struct urb) +
  58. iso_packets * sizeof(struct usb_iso_packet_descriptor),
  59. mem_flags);
  60. if (!urb) {
  61. err("alloc_urb: kmalloc failed");
  62. return NULL;
  63. }
  64. usb_init_urb(urb);
  65. return urb;
  66. }
  67. /**
  68. * usb_free_urb - frees the memory used by a urb when all users of it are finished
  69. * @urb: pointer to the urb to free, may be NULL
  70. *
  71. * Must be called when a user of a urb is finished with it. When the last user
  72. * of the urb calls this function, the memory of the urb is freed.
  73. *
  74. * Note: The transfer buffer associated with the urb is not freed, that must be
  75. * done elsewhere.
  76. */
  77. void usb_free_urb(struct urb *urb)
  78. {
  79. if (urb)
  80. kref_put(&urb->kref, urb_destroy);
  81. }
  82. /**
  83. * usb_get_urb - increments the reference count of the urb
  84. * @urb: pointer to the urb to modify, may be NULL
  85. *
  86. * This must be called whenever a urb is transferred from a device driver to a
  87. * host controller driver. This allows proper reference counting to happen
  88. * for urbs.
  89. *
  90. * A pointer to the urb with the incremented reference counter is returned.
  91. */
  92. struct urb * usb_get_urb(struct urb *urb)
  93. {
  94. if (urb)
  95. kref_get(&urb->kref);
  96. return urb;
  97. }
  98. /**
  99. * usb_anchor_urb - anchors an URB while it is processed
  100. * @urb: pointer to the urb to anchor
  101. * @anchor: pointer to the anchor
  102. *
  103. * This can be called to have access to URBs which are to be executed
  104. * without bothering to track them
  105. */
  106. void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor)
  107. {
  108. unsigned long flags;
  109. spin_lock_irqsave(&anchor->lock, flags);
  110. usb_get_urb(urb);
  111. list_add_tail(&urb->anchor_list, &anchor->urb_list);
  112. urb->anchor = anchor;
  113. spin_unlock_irqrestore(&anchor->lock, flags);
  114. }
  115. EXPORT_SYMBOL_GPL(usb_anchor_urb);
  116. /**
  117. * usb_unanchor_urb - unanchors an URB
  118. * @urb: pointer to the urb to anchor
  119. *
  120. * Call this to stop the system keeping track of this URB
  121. */
  122. void usb_unanchor_urb(struct urb *urb)
  123. {
  124. unsigned long flags;
  125. struct usb_anchor *anchor;
  126. if (!urb)
  127. return;
  128. anchor = urb->anchor;
  129. if (!anchor)
  130. return;
  131. spin_lock_irqsave(&anchor->lock, flags);
  132. if (unlikely(anchor != urb->anchor)) {
  133. /* we've lost the race to another thread */
  134. spin_unlock_irqrestore(&anchor->lock, flags);
  135. return;
  136. }
  137. urb->anchor = NULL;
  138. list_del(&urb->anchor_list);
  139. spin_unlock_irqrestore(&anchor->lock, flags);
  140. usb_put_urb(urb);
  141. if (list_empty(&anchor->urb_list))
  142. wake_up(&anchor->wait);
  143. }
  144. EXPORT_SYMBOL_GPL(usb_unanchor_urb);
  145. /*-------------------------------------------------------------------*/
  146. /**
  147. * usb_submit_urb - issue an asynchronous transfer request for an endpoint
  148. * @urb: pointer to the urb describing the request
  149. * @mem_flags: the type of memory to allocate, see kmalloc() for a list
  150. * of valid options for this.
  151. *
  152. * This submits a transfer request, and transfers control of the URB
  153. * describing that request to the USB subsystem. Request completion will
  154. * be indicated later, asynchronously, by calling the completion handler.
  155. * The three types of completion are success, error, and unlink
  156. * (a software-induced fault, also called "request cancellation").
  157. *
  158. * URBs may be submitted in interrupt context.
  159. *
  160. * The caller must have correctly initialized the URB before submitting
  161. * it. Functions such as usb_fill_bulk_urb() and usb_fill_control_urb() are
  162. * available to ensure that most fields are correctly initialized, for
  163. * the particular kind of transfer, although they will not initialize
  164. * any transfer flags.
  165. *
  166. * Successful submissions return 0; otherwise this routine returns a
  167. * negative error number. If the submission is successful, the complete()
  168. * callback from the URB will be called exactly once, when the USB core and
  169. * Host Controller Driver (HCD) are finished with the URB. When the completion
  170. * function is called, control of the URB is returned to the device
  171. * driver which issued the request. The completion handler may then
  172. * immediately free or reuse that URB.
  173. *
  174. * With few exceptions, USB device drivers should never access URB fields
  175. * provided by usbcore or the HCD until its complete() is called.
  176. * The exceptions relate to periodic transfer scheduling. For both
  177. * interrupt and isochronous urbs, as part of successful URB submission
  178. * urb->interval is modified to reflect the actual transfer period used
  179. * (normally some power of two units). And for isochronous urbs,
  180. * urb->start_frame is modified to reflect when the URB's transfers were
  181. * scheduled to start. Not all isochronous transfer scheduling policies
  182. * will work, but most host controller drivers should easily handle ISO
  183. * queues going from now until 10-200 msec into the future.
  184. *
  185. * For control endpoints, the synchronous usb_control_msg() call is
  186. * often used (in non-interrupt context) instead of this call.
  187. * That is often used through convenience wrappers, for the requests
  188. * that are standardized in the USB 2.0 specification. For bulk
  189. * endpoints, a synchronous usb_bulk_msg() call is available.
  190. *
  191. * Request Queuing:
  192. *
  193. * URBs may be submitted to endpoints before previous ones complete, to
  194. * minimize the impact of interrupt latencies and system overhead on data
  195. * throughput. With that queuing policy, an endpoint's queue would never
  196. * be empty. This is required for continuous isochronous data streams,
  197. * and may also be required for some kinds of interrupt transfers. Such
  198. * queuing also maximizes bandwidth utilization by letting USB controllers
  199. * start work on later requests before driver software has finished the
  200. * completion processing for earlier (successful) requests.
  201. *
  202. * As of Linux 2.6, all USB endpoint transfer queues support depths greater
  203. * than one. This was previously a HCD-specific behavior, except for ISO
  204. * transfers. Non-isochronous endpoint queues are inactive during cleanup
  205. * after faults (transfer errors or cancellation).
  206. *
  207. * Reserved Bandwidth Transfers:
  208. *
  209. * Periodic transfers (interrupt or isochronous) are performed repeatedly,
  210. * using the interval specified in the urb. Submitting the first urb to
  211. * the endpoint reserves the bandwidth necessary to make those transfers.
  212. * If the USB subsystem can't allocate sufficient bandwidth to perform
  213. * the periodic request, submitting such a periodic request should fail.
  214. *
  215. * Device drivers must explicitly request that repetition, by ensuring that
  216. * some URB is always on the endpoint's queue (except possibly for short
  217. * periods during completion callacks). When there is no longer an urb
  218. * queued, the endpoint's bandwidth reservation is canceled. This means
  219. * drivers can use their completion handlers to ensure they keep bandwidth
  220. * they need, by reinitializing and resubmitting the just-completed urb
  221. * until the driver longer needs that periodic bandwidth.
  222. *
  223. * Memory Flags:
  224. *
  225. * The general rules for how to decide which mem_flags to use
  226. * are the same as for kmalloc. There are four
  227. * different possible values; GFP_KERNEL, GFP_NOFS, GFP_NOIO and
  228. * GFP_ATOMIC.
  229. *
  230. * GFP_NOFS is not ever used, as it has not been implemented yet.
  231. *
  232. * GFP_ATOMIC is used when
  233. * (a) you are inside a completion handler, an interrupt, bottom half,
  234. * tasklet or timer, or
  235. * (b) you are holding a spinlock or rwlock (does not apply to
  236. * semaphores), or
  237. * (c) current->state != TASK_RUNNING, this is the case only after
  238. * you've changed it.
  239. *
  240. * GFP_NOIO is used in the block io path and error handling of storage
  241. * devices.
  242. *
  243. * All other situations use GFP_KERNEL.
  244. *
  245. * Some more specific rules for mem_flags can be inferred, such as
  246. * (1) start_xmit, timeout, and receive methods of network drivers must
  247. * use GFP_ATOMIC (they are called with a spinlock held);
  248. * (2) queuecommand methods of scsi drivers must use GFP_ATOMIC (also
  249. * called with a spinlock held);
  250. * (3) If you use a kernel thread with a network driver you must use
  251. * GFP_NOIO, unless (b) or (c) apply;
  252. * (4) after you have done a down() you can use GFP_KERNEL, unless (b) or (c)
  253. * apply or your are in a storage driver's block io path;
  254. * (5) USB probe and disconnect can use GFP_KERNEL unless (b) or (c) apply; and
  255. * (6) changing firmware on a running storage or net device uses
  256. * GFP_NOIO, unless b) or c) apply
  257. *
  258. */
  259. int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
  260. {
  261. int pipe, temp, max;
  262. struct usb_device *dev;
  263. int is_out;
  264. if (!urb || urb->hcpriv || !urb->complete)
  265. return -EINVAL;
  266. if (!(dev = urb->dev) ||
  267. (dev->state < USB_STATE_DEFAULT) ||
  268. (!dev->bus) || (dev->devnum <= 0))
  269. return -ENODEV;
  270. if (dev->bus->controller->power.power_state.event != PM_EVENT_ON
  271. || dev->state == USB_STATE_SUSPENDED)
  272. return -EHOSTUNREACH;
  273. urb->status = -EINPROGRESS;
  274. urb->actual_length = 0;
  275. /* Lots of sanity checks, so HCDs can rely on clean data
  276. * and don't need to duplicate tests
  277. */
  278. pipe = urb->pipe;
  279. temp = usb_pipetype(pipe);
  280. is_out = usb_pipeout(pipe);
  281. if (!usb_pipecontrol(pipe) && dev->state < USB_STATE_CONFIGURED)
  282. return -ENODEV;
  283. /* FIXME there should be a sharable lock protecting us against
  284. * config/altsetting changes and disconnects, kicking in here.
  285. * (here == before maxpacket, and eventually endpoint type,
  286. * checks get made.)
  287. */
  288. max = usb_maxpacket(dev, pipe, is_out);
  289. if (max <= 0) {
  290. dev_dbg(&dev->dev,
  291. "bogus endpoint ep%d%s in %s (bad maxpacket %d)\n",
  292. usb_pipeendpoint(pipe), is_out ? "out" : "in",
  293. __FUNCTION__, max);
  294. return -EMSGSIZE;
  295. }
  296. /* periodic transfers limit size per frame/uframe,
  297. * but drivers only control those sizes for ISO.
  298. * while we're checking, initialize return status.
  299. */
  300. if (temp == PIPE_ISOCHRONOUS) {
  301. int n, len;
  302. /* "high bandwidth" mode, 1-3 packets/uframe? */
  303. if (dev->speed == USB_SPEED_HIGH) {
  304. int mult = 1 + ((max >> 11) & 0x03);
  305. max &= 0x07ff;
  306. max *= mult;
  307. }
  308. if (urb->number_of_packets <= 0)
  309. return -EINVAL;
  310. for (n = 0; n < urb->number_of_packets; n++) {
  311. len = urb->iso_frame_desc[n].length;
  312. if (len < 0 || len > max)
  313. return -EMSGSIZE;
  314. urb->iso_frame_desc[n].status = -EXDEV;
  315. urb->iso_frame_desc[n].actual_length = 0;
  316. }
  317. }
  318. /* the I/O buffer must be mapped/unmapped, except when length=0 */
  319. if (urb->transfer_buffer_length < 0)
  320. return -EMSGSIZE;
  321. #ifdef DEBUG
  322. /* stuff that drivers shouldn't do, but which shouldn't
  323. * cause problems in HCDs if they get it wrong.
  324. */
  325. {
  326. unsigned int orig_flags = urb->transfer_flags;
  327. unsigned int allowed;
  328. /* enforce simple/standard policy */
  329. allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP |
  330. URB_NO_INTERRUPT);
  331. switch (temp) {
  332. case PIPE_BULK:
  333. if (is_out)
  334. allowed |= URB_ZERO_PACKET;
  335. /* FALLTHROUGH */
  336. case PIPE_CONTROL:
  337. allowed |= URB_NO_FSBR; /* only affects UHCI */
  338. /* FALLTHROUGH */
  339. default: /* all non-iso endpoints */
  340. if (!is_out)
  341. allowed |= URB_SHORT_NOT_OK;
  342. break;
  343. case PIPE_ISOCHRONOUS:
  344. allowed |= URB_ISO_ASAP;
  345. break;
  346. }
  347. urb->transfer_flags &= allowed;
  348. /* fail if submitter gave bogus flags */
  349. if (urb->transfer_flags != orig_flags) {
  350. err("BOGUS urb flags, %x --> %x",
  351. orig_flags, urb->transfer_flags);
  352. return -EINVAL;
  353. }
  354. }
  355. #endif
  356. /*
  357. * Force periodic transfer intervals to be legal values that are
  358. * a power of two (so HCDs don't need to).
  359. *
  360. * FIXME want bus->{intr,iso}_sched_horizon values here. Each HC
  361. * supports different values... this uses EHCI/UHCI defaults (and
  362. * EHCI can use smaller non-default values).
  363. */
  364. switch (temp) {
  365. case PIPE_ISOCHRONOUS:
  366. case PIPE_INTERRUPT:
  367. /* too small? */
  368. if (urb->interval <= 0)
  369. return -EINVAL;
  370. /* too big? */
  371. switch (dev->speed) {
  372. case USB_SPEED_HIGH: /* units are microframes */
  373. // NOTE usb handles 2^15
  374. if (urb->interval > (1024 * 8))
  375. urb->interval = 1024 * 8;
  376. temp = 1024 * 8;
  377. break;
  378. case USB_SPEED_FULL: /* units are frames/msec */
  379. case USB_SPEED_LOW:
  380. if (temp == PIPE_INTERRUPT) {
  381. if (urb->interval > 255)
  382. return -EINVAL;
  383. // NOTE ohci only handles up to 32
  384. temp = 128;
  385. } else {
  386. if (urb->interval > 1024)
  387. urb->interval = 1024;
  388. // NOTE usb and ohci handle up to 2^15
  389. temp = 1024;
  390. }
  391. break;
  392. default:
  393. return -EINVAL;
  394. }
  395. /* power of two? */
  396. while (temp > urb->interval)
  397. temp >>= 1;
  398. urb->interval = temp;
  399. }
  400. return usb_hcd_submit_urb(urb, mem_flags);
  401. }
  402. /*-------------------------------------------------------------------*/
  403. /**
  404. * usb_unlink_urb - abort/cancel a transfer request for an endpoint
  405. * @urb: pointer to urb describing a previously submitted request,
  406. * may be NULL
  407. *
  408. * This routine cancels an in-progress request. URBs complete only
  409. * once per submission, and may be canceled only once per submission.
  410. * Successful cancellation means the requests's completion handler will
  411. * be called with a status code indicating that the request has been
  412. * canceled (rather than any other code) and will quickly be removed
  413. * from host controller data structures.
  414. *
  415. * This request is always asynchronous.
  416. * Success is indicated by returning -EINPROGRESS,
  417. * at which time the URB will normally have been unlinked but not yet
  418. * given back to the device driver. When it is called, the completion
  419. * function will see urb->status == -ECONNRESET. Failure is indicated
  420. * by any other return value. Unlinking will fail when the URB is not
  421. * currently "linked" (i.e., it was never submitted, or it was unlinked
  422. * before, or the hardware is already finished with it), even if the
  423. * completion handler has not yet run.
  424. *
  425. * Unlinking and Endpoint Queues:
  426. *
  427. * Host Controller Drivers (HCDs) place all the URBs for a particular
  428. * endpoint in a queue. Normally the queue advances as the controller
  429. * hardware processes each request. But when an URB terminates with an
  430. * error its queue stops, at least until that URB's completion routine
  431. * returns. It is guaranteed that the queue will not restart until all
  432. * its unlinked URBs have been fully retired, with their completion
  433. * routines run, even if that's not until some time after the original
  434. * completion handler returns. Normally the same behavior and guarantees
  435. * apply when an URB terminates because it was unlinked; however if an
  436. * URB is unlinked before the hardware has started to execute it, then
  437. * its queue is not guaranteed to stop until all the preceding URBs have
  438. * completed.
  439. *
  440. * This means that USB device drivers can safely build deep queues for
  441. * large or complex transfers, and clean them up reliably after any sort
  442. * of aborted transfer by unlinking all pending URBs at the first fault.
  443. *
  444. * Note that an URB terminating early because a short packet was received
  445. * will count as an error if and only if the URB_SHORT_NOT_OK flag is set.
  446. * Also, that all unlinks performed in any URB completion handler must
  447. * be asynchronous.
  448. *
  449. * Queues for isochronous endpoints are treated differently, because they
  450. * advance at fixed rates. Such queues do not stop when an URB is unlinked.
  451. * An unlinked URB may leave a gap in the stream of packets. It is undefined
  452. * whether such gaps can be filled in.
  453. *
  454. * When a control URB terminates with an error, it is likely that the
  455. * status stage of the transfer will not take place, even if it is merely
  456. * a soft error resulting from a short-packet with URB_SHORT_NOT_OK set.
  457. */
  458. int usb_unlink_urb(struct urb *urb)
  459. {
  460. if (!urb)
  461. return -EINVAL;
  462. if (!(urb->dev && urb->dev->bus))
  463. return -ENODEV;
  464. return usb_hcd_unlink_urb(urb, -ECONNRESET);
  465. }
  466. /**
  467. * usb_kill_urb - cancel a transfer request and wait for it to finish
  468. * @urb: pointer to URB describing a previously submitted request,
  469. * may be NULL
  470. *
  471. * This routine cancels an in-progress request. It is guaranteed that
  472. * upon return all completion handlers will have finished and the URB
  473. * will be totally idle and available for reuse. These features make
  474. * this an ideal way to stop I/O in a disconnect() callback or close()
  475. * function. If the request has not already finished or been unlinked
  476. * the completion handler will see urb->status == -ENOENT.
  477. *
  478. * While the routine is running, attempts to resubmit the URB will fail
  479. * with error -EPERM. Thus even if the URB's completion handler always
  480. * tries to resubmit, it will not succeed and the URB will become idle.
  481. *
  482. * This routine may not be used in an interrupt context (such as a bottom
  483. * half or a completion handler), or when holding a spinlock, or in other
  484. * situations where the caller can't schedule().
  485. */
  486. void usb_kill_urb(struct urb *urb)
  487. {
  488. might_sleep();
  489. if (!(urb && urb->dev && urb->dev->bus))
  490. return;
  491. spin_lock_irq(&urb->lock);
  492. ++urb->reject;
  493. spin_unlock_irq(&urb->lock);
  494. usb_hcd_unlink_urb(urb, -ENOENT);
  495. wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
  496. spin_lock_irq(&urb->lock);
  497. --urb->reject;
  498. spin_unlock_irq(&urb->lock);
  499. }
  500. /**
  501. * usb_kill_anchored_urbs - cancel transfer requests en masse
  502. * @anchor: anchor the requests are bound to
  503. *
  504. * this allows all outstanding URBs to be killed starting
  505. * from the back of the queue
  506. */
  507. void usb_kill_anchored_urbs(struct usb_anchor *anchor)
  508. {
  509. struct urb *victim;
  510. spin_lock_irq(&anchor->lock);
  511. while (!list_empty(&anchor->urb_list)) {
  512. victim = list_entry(anchor->urb_list.prev, struct urb, anchor_list);
  513. /* we must make sure the URB isn't freed before we kill it*/
  514. usb_get_urb(victim);
  515. spin_unlock_irq(&anchor->lock);
  516. /* this will unanchor the URB */
  517. usb_kill_urb(victim);
  518. usb_put_urb(victim);
  519. spin_lock_irq(&anchor->lock);
  520. }
  521. spin_unlock_irq(&anchor->lock);
  522. }
  523. EXPORT_SYMBOL_GPL(usb_kill_anchored_urbs);
  524. /**
  525. * usb_wait_anchor_empty_timeout - wait for an anchor to be unused
  526. * @anchor: the anchor you want to become unused
  527. * @timeout: how long you are willing to wait in milliseconds
  528. *
  529. * Call this is you want to be sure all an anchor's
  530. * URBs have finished
  531. */
  532. int usb_wait_anchor_empty_timeout(struct usb_anchor *anchor,
  533. unsigned int timeout)
  534. {
  535. return wait_event_timeout(anchor->wait, list_empty(&anchor->urb_list),
  536. msecs_to_jiffies(timeout));
  537. }
  538. EXPORT_SYMBOL_GPL(usb_wait_anchor_empty_timeout);
  539. EXPORT_SYMBOL(usb_init_urb);
  540. EXPORT_SYMBOL(usb_alloc_urb);
  541. EXPORT_SYMBOL(usb_free_urb);
  542. EXPORT_SYMBOL(usb_get_urb);
  543. EXPORT_SYMBOL(usb_submit_urb);
  544. EXPORT_SYMBOL(usb_unlink_urb);
  545. EXPORT_SYMBOL(usb_kill_urb);