| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-27 | Checking the return value of an allocator works better, when looking at | joerg | |
| the stored pointer. | |||
| 2014-02-27 | abs on unsigned values is a nop. | joerg | |
| 2014-02-27 | A member of a non-null struct pointer can't be null. | joerg | |
| 2014-02-26 | Retire sources from old build location. | joerg | |
| 2014-02-26 | Update compiler-rt glue for the new source layout. | joerg | |
| 2014-02-26 | Import compiler-rt r202303. Extend 128bit support to all LP64 platforms. | joerg | |
| 2014-02-18 | prefer __func__ instead of __FUNCTION__ | christos | |
| 2014-02-18 | - include <sys/cdefs.h> for compiler definitions | christos | |
| - add a lint comment | |||
| 2014-01-29 | Fix builtin shadowing in PowerPC specific code. Implement clzdi/clzsi | joerg | |
| for ARM. | |||
| 2014-01-24 | Import compiler-rt r200007. Use .size on all assembler functions. | joerg | |
| Reimplement ARM division based on Matt Thomas's common version. | |||
| 2014-01-18 | Update ACPI_DATE to "18 Dec 2013", because acpica version 20131218 | apb | |
| was imported on 27 Dec 2013. | |||
| 2014-01-18 | Use ACPI_DATE instead of __DATE__ in a version string that | apb | |
| ends up in the iasl executable. ACPI_DATE is defined in sys/external/bsd/acpica/dist/include/acapps.h. | |||
| 2014-01-15 | More sanitizers we are still not interested in. | joerg | |
| 2014-01-15 | Import compiler-rt r199273. Support libkern/libsa alternative headers. | joerg | |
| Mark assembler functions as such to prevent ld snafu. | |||
| 2014-01-05 | PR/48494: Ryo Onodera: After ACPICA 20131218 update, uhub topology is | christos | |
| misanderstood on macbook air. Ryo by bisection found that the following commit causes the problem: https://github.com/acpica/acpica/commit/\ 637accd073a205eb4acac935f34d0eaee0c301a8. This is tracked in: https://bugs.acpica.org/show_bug.cgi?id=1016 | |||
| 2014-01-03 | Small bit of tidyup and remove a XXX now that it's possible. | skrll | |
| 2014-01-03 | Call callout_reset on the xfer timeoute_handle before calling | skrll | |
| dwc2_hcd_urb_enqueue | |||
| 2014-01-03 | Change a KASSERT to a KASSERTMSG and add a DPRINTFN. | skrll | |
| 2014-01-02 | Protect access of urb->hcpriv by adapting the following change from the | skrll | |
| Raspberry PI dwc_otg driver. https://github.com/raspberrypi/linux/commit/38753ce72d4f10d5d0f1ed27fa691a2ba8910941 dwc_otg: prevent OOPSes during device disconnects The dwc_otg_urb_enqueue function is thread-unsafe. In particular the access of urb->hcpriv, usb_hcd_link_urb_to_ep, dwc_otg_urb->qtd and friends does not occur within a critical section and so if a device was unplugged during activity there was a high chance that the usbcore hub_thread would try to disable the endpoint with partially- formed entries in the URB queue. This would result in BUG() or null pointer dereferences. Fix so that access of urb->hcpriv, enqueuing to the hardware and adding to usbcore endpoint URB lists is contained within a single critical section. | |||
| 2013-12-31 | KASSERT that the transfer callout is not pending. | skrll | |
| Removes a XXX | |||
| 2013-12-30 | Now that our yacc supports providing yytname[] and does the name protection | christos | |
| automatically (as it should, unlike bison), elide the name protection hacks. | |||
| 2013-12-29 | Simplify previous, don't even set the variables if they are not going to | christos | |
| be used. | |||
| 2013-12-29 | ifdef unused variables | christos | |
| 2013-12-27 | fix debugging build. | christos | |
| 2013-12-27 | add missing debugger files. | christos | |
| 2013-12-27 | amend for new files | christos | |
| 2013-12-27 | resolve conflicts | christos | |
| 2013-12-27 | import new acpica | christos | |
| 2013-12-17 | Turn on executable allocator an use module_map with UVM_KMF_EXEC flag. | alnsn | |
| This should fix execution of code generated by librumpkern_sljit. Also enable global lock. | |||
| 2013-12-14 | Comment out unsed variable. Left for reference. | skrll | |
| 2013-12-14 | Remove unused variables. | skrll | |
| 2013-12-09 | Fix typo ("then" instead of "than") | wiz | |
| 2013-12-01 | remote_event_destroy is unused, mark it so. | joerg | |
| 2013-11-28 | Drop the intr_lock when calling usb_schedsoftintr so that we don't lock | skrll | |
| against ourself in dwc2_softintr in the polling case. | |||
| 2013-11-27 | CID 976267: NULL deref check | christos | |
| 2013-11-25 | Use __syncicache() in sljit on powerpc. | alnsn | |
| 2013-11-24 | Resolve conflicts. | skrll | |
| 2013-11-19 | Zeroise the whole urb including the iso_descs array | skrll | |
| 2013-11-19 | Correct the interval assignment for isoc and intr transfers. | skrll | |
| 2013-11-19 | Use PRIxBUSADDR in DPRINTF. Problem pointed out by kiyohara. | skrll | |
| 2013-11-18 | Report an error if SLJIT_CACHE_FLUSH isn't defined by machine/sljitarch.h. | alnsn | |
| 2013-11-14 | Simplify variable assignment and avoid gcc warnings. | skrll | |
| 2013-11-14 | Remove unused variable. | skrll | |
| 2013-11-12 | Make CONFIG_USB_DWC2_DEBUG_PERIODIC compile. | skrll | |
| 2013-11-01 | Don't always define DWC2_DEBUG | skrll | |
| 2013-11-01 | move variable definition/set inside the same #ifdef of the usage. | mrg | |
| 2013-10-22 | Be strictly correct about chan->xfer_dma assignment and avoid calling | skrll | |
| DMAADDR on fully transfered data phase of a control transfer. Without this change the KASSERT(offset < dma->block->size) in usb_dmaaddr would fire. Found by anon when testing athn(4). | |||
| 2013-10-22 | Remove unused usbd_xfer_handle from dwc2_pipe. (missed commit) | skrll | |
| 2013-10-22 | Remove unused usbd_xfer_handle from dwc2_pipe. | skrll | |
| 2013-10-22 | Minor cleanup. | skrll | |
