Many USB 3.0 devices on a single Ubuntu via a powered HUB

A controller has internal buffers that it allocates for the connected devices for the purpose of doing input and output. These buffers are also called resources or endpoints.

Faster devices need to have allocated more buffers to contain more data. This number can vary per device, but the maximum is 32 endpoints with 16 in and 16 out per device.

There are reports that the Intel 8 Series USB 3.0 XHCI host controller only supports 96 endpoints, and practical limits can be hit earlier.

From the information in your post, I would guess that each USB3 disk uses 10 endpoints aka. resources, probably 5 in and 5 out. Therefore 9 disks used 90 endpoints which was fine, but 10 disks require 100 endpoints that exceeds the limit of 96, hence the controller sent an error code to the operating system.

When you degraded the connection to the slower USB2, the controller allocated much less buffers for each device, therefore you could connect more disks.

The solution might be to add a USB2 hub and put on it the disks that do not need high transfer rates.

Further reading :

  • USB endpoints and their pipes
  • Not Enough USB Controller Resources?