Hi Felipe,

Today's linux-next merge of the usb-gadget tree got a conflict in:

  drivers/usb/gadget/udc/amd5536udc.c

between commit:

  b5a6a4e5baef ("usb: gadget: amd5536udc: Replace PCI pool old API")

from the usb tree and commit:

  7bf80fcd797f ("usb: gadget: udc: avoid use of freed pointer")

from the usb-gadget tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc drivers/usb/gadget/udc/amd5536udc.c
index 270876b438ab,91d0f1a4dac1..000000000000
--- a/drivers/usb/gadget/udc/amd5536udc.c
+++ b/drivers/usb/gadget/udc/amd5536udc.c
@@@ -618,17 -579,12 +579,12 @@@ static void udc_free_dma_chain(struct u
        DBG(dev, "free chain req = %p\n", req);
  
        /* do not free first desc., will be done by free for request */
-       td_last = req->td_data;
-       td = phys_to_virt(td_last->next);
- 
        for (i = 1; i < req->chain_len; i++) {
-               dma_pool_free(dev->data_requests, td,
-                             (dma_addr_t)td_last->next);
-               td_last = td;
-               td = phys_to_virt(td_last->next);
+               td = phys_to_virt(addr);
+               addr_next = (dma_addr_t)td->next;
 -              pci_pool_free(dev->data_requests, td, addr);
++              dma_pool_free(dev->data_requests, td, addr);
+               addr = addr_next;
        }
- 
-       return ret_val;
  }
  
  /* Frees request packet, called by gadget driver */

Reply via email to