• Home
  • Raw
  • Download

Lines Matching refs:mon_bus

20 static void mon_stop(struct mon_bus *mbus);
21 static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus);
27 struct mon_bus mon_bus0; /* Pseudo bus meaning "all buses" */
35 void mon_reader_add(struct mon_bus *mbus, struct mon_reader *r) in mon_reader_add()
44 struct mon_bus *m1; in mon_reader_add()
45 m1 = list_entry(p, struct mon_bus, bus_link); in mon_reader_add()
64 void mon_reader_del(struct mon_bus *mbus, struct mon_reader *r) in mon_reader_del()
80 static void mon_bus_submit(struct mon_bus *mbus, struct urb *urb) in mon_bus_submit()
97 struct mon_bus *mbus; in mon_submit()
99 if ((mbus = ubus->mon_bus) != NULL) in mon_submit()
106 static void mon_bus_submit_error(struct mon_bus *mbus, struct urb *urb, int error) in mon_bus_submit_error()
123 struct mon_bus *mbus; in mon_submit_error()
125 if ((mbus = ubus->mon_bus) != NULL) in mon_submit_error()
132 static void mon_bus_complete(struct mon_bus *mbus, struct urb *urb, int status) in mon_bus_complete()
149 struct mon_bus *mbus; in mon_complete()
151 if ((mbus = ubus->mon_bus) != NULL) in mon_complete()
161 static void mon_stop(struct mon_bus *mbus) in mon_stop()
168 mbus = list_entry(p, struct mon_bus, bus_link); in mon_stop()
207 struct mon_bus *mbus = ubus->mon_bus; in mon_bus_remove()
250 static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus) in mon_dissolve()
258 ubus->mon_bus = NULL; in mon_dissolve()
269 struct mon_bus *mbus = container_of(r, struct mon_bus, ref); in mon_bus_drop()
281 struct mon_bus *mbus; in mon_bus_init()
283 if ((mbus = kzalloc(sizeof(struct mon_bus), GFP_KERNEL)) == NULL) in mon_bus_init()
294 ubus->mon_bus = mbus; in mon_bus_init()
310 struct mon_bus *mbus = &mon_bus0; in mon_bus0_init()
328 struct mon_bus *mon_bus_lookup(unsigned int num) in mon_bus_lookup()
331 struct mon_bus *mbus; in mon_bus_lookup()
337 mbus = list_entry(p, struct mon_bus, bus_link); in mon_bus_lookup()
382 struct mon_bus *mbus; in mon_exit()
392 mbus = list_entry(p, struct mon_bus, bus_link); in mon_exit()