mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
usbmon: add bus number to text API
Due to a simple oversight when bus zero was added, the text API fails to deliver the bus number in 'E' messages (which are equivalent of 'C' messages, only for error case). This makes it harder, for instance, use a search-and-highlight in a text editor. So fix it. Also, Alan Stern requested adding timestamps to 'E' messages. This is purely cosmetic, but makes it easier to read the trace. This is done for both text and binary APIs. Signed-off-by: Pete Zaitcev <zaitcev@redhat.com> Cc: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7ed069c12c
commit
2bc0d10932
2 changed files with 8 additions and 3 deletions
|
@ -273,12 +273,12 @@ static void mon_text_error(void *data, struct urb *urb, int error)
|
|||
|
||||
ep->type = 'E';
|
||||
ep->id = (unsigned long) urb;
|
||||
ep->busnum = 0;
|
||||
ep->busnum = urb->dev->bus->busnum;
|
||||
ep->devnum = urb->dev->devnum;
|
||||
ep->epnum = usb_endpoint_num(&urb->ep->desc);
|
||||
ep->xfertype = usb_endpoint_type(&urb->ep->desc);
|
||||
ep->is_in = usb_urb_dir_in(urb);
|
||||
ep->tstamp = 0;
|
||||
ep->tstamp = mon_get_timestamp();
|
||||
ep->length = 0;
|
||||
ep->status = error;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue