Changeset 62f8025 in mainline for uspace/drv/bus/usb/xhci/endpoint.c


Ignore:
Timestamp:
2017-10-28T22:47:06Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9620a54
Parents:
6b2930b
Message:

Centrally disabled deallocation of endpoint-related data structures due to memory corruption. This is better than commenting out every single usage.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/endpoint.c

    r6b2930b r62f8025  
    203203int xhci_endpoint_free_transfer_ds(xhci_endpoint_t *xhci_ep)
    204204{
     205        /* FIXME: For some reason (possibly memory corruption), this crashes. */
     206        return EOK;
     207
    205208        if (endpoint_using_streams(xhci_ep)) {
    206209                usb_log_debug2("Freeing primary stream context array for endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
Note: See TracChangeset for help on using the changeset viewer.