Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usb, kcov: collect coverage from hub_event

Add kcov_remote_start()/kcov_remote_stop() annotations to the
hub_event() function, which is responsible for processing events on USB
buses, in particular events that happen during USB device enumeration.

Since hub_event() is run in a global background kernel thread (see
Documentation/dev-tools/kcov.rst for details), each USB bus gets a
unique global handle from the USB subsystem kcov handle range. As the
result kcov can now be used to collect coverage from events that happen
on a particular USB bus.

[akpm@linux-foundation.org: avoid patch conflicts to make life easier for Andrew]
Link: http://lkml.kernel.org/r/de4fe1c219db2d002d905dc1736e2a3bfa1db997.1572366574.git.andreyknvl@google.com
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Alexander Potapenko <glider@google.com>
Cc: Anders Roxell <anders.roxell@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: David Windsor <dwindsor@gmail.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Elena Reshetova <elena.reshetova@intel.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Marco Elver <elver@google.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Andrey Konovalov and committed by
Linus Torvalds
95d23dc2 eec028c9

+5
+5
drivers/usb/core/hub.c
··· 18 18 #include <linux/sched/mm.h> 19 19 #include <linux/list.h> 20 20 #include <linux/slab.h> 21 + #include <linux/kcov.h> 21 22 #include <linux/ioctl.h> 22 23 #include <linux/usb.h> 23 24 #include <linux/usbdevice_fs.h> ··· 5485 5484 hub_dev = hub->intfdev; 5486 5485 intf = to_usb_interface(hub_dev); 5487 5486 5487 + kcov_remote_start_usb((u64)hdev->bus->busnum); 5488 + 5488 5489 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n", 5489 5490 hdev->state, hdev->maxchild, 5490 5491 /* NOTE: expects max 15 ports... */ ··· 5593 5590 /* Balance the stuff in kick_hub_wq() and allow autosuspend */ 5594 5591 usb_autopm_put_interface(intf); 5595 5592 kref_put(&hub->kref, hub_release); 5593 + 5594 + kcov_remote_stop(); 5596 5595 } 5597 5596 5598 5597 static const struct usb_device_id hub_id_table[] = {