> -----Original Message----- > From: Oliver Neukum [mailto:oliver@xxxxxxxxxx] > Sent: Friday, September 07, 2012 8:23 PM > > > There is a temptation to send full NTBs even with a single IP packet, > > But it will lead to wasted USB bandwidth and reduced ability to send > > real data for other functions in the device or other devices on the > > same root hub. Most important it will also harm IN direction. > > Well, we will eventually need to do so. In that case, shall we send a > short package or not? The trick is to find a compromise for device load vs wasted bandwidth. Currently if data size is less than 512 bytes, a shot packet will be sent. However, this value might be better tuned based on bus speed (HS/SS) and max NTB size negotiated. Note, that ZLP was avoided in the ncm driver by using flag in usbnet, because on some embedded USB controllers handling ZLP was more costly than short packet. > Well, we know how many packages are available to the device because > they have already been scheduled. It seems to be clear that we need to > batch while enough are on the way. It doesn't matter much that some packets on the way to device. What matters is the amount of packets in the application Tx queue for ncm network device. > > But an optimal implementation requires that the amount of IP packets > > "in progress" or queued up is known to NCM so NCM can decide to send > > short or padded NTB or aggregate and send one or more full NTBs plus > > short or padded NTB. > > What exactly means "in progress"? Sent by application to the network device. > > > An implementation where NCM only knows if there is more data > available > > or not can be shown to have side-effects that are not easily > circumvented. > > And likewise shown to limit throughput compared to a timer-based > solution. > > Well, I must say that the timer is ugly. If absolutely necessary we can > keep it, but then I'd much prefer to put it into usbnet and have a > generic batching functionality. However, I'd like to explore > aternatives. Is it possible to implement upper layer Tx queue in usbnet, so mini driver could get a clue about outstanding packets to be transmitted? Regards, Alexey -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html