6

When making a query to the udev system, one attribute that can show up is the urbnum ie:

ATTRS{urbnum}=="538"

I've looked through the documentation, but cannot find any mention of it. Are the attributes documented somewhere else? Performing a google query on the term returns scattered results.

What is the urbnum?

dtmland
  • 508

1 Answers1

12

As per struct usb_device:

urbnum
number of URBs submitted for the whole device 

where URB stands for USB Request Block. An URB consists of all relevant information to execute any USB transaction and deliver the data and status back.
See also:
Kernel Documentation
USB Urbs

Michael Mrozek
  • 93,103
  • 40
  • 240
  • 233
don_crissti
  • 82,805