Lines Matching refs:which
23 Another "traditional" technique is to ignore such errors, which
138 If so, these make a call to eeh_dn_check_failure(), which in turn
176 which causes uevents to go out to user space. This triggers
182 which restarts the device driver and triggers more user-space
217 struct device_driver->remove() which is just
221 struct pci_driver->remove() which is just
231 which is just pcnet32_close() // in pcnet32.c
233 which does what you wanted
238 which
246 which calls struct pci_driver->remove() which is pcnet32_remove_one()
247 which calls unregister_netdev() (in net/core/dev.c)
248 which calls dev_close() (in net/core/dev.c)
249 which calls dev->stop() which is pcnet32_close()
250 which then does the appropriate shutdown.
272 kset->uevent_ops->uevent() // which is really just
276 dev->bus->uevent() which is really just a call to
278 which prints device name, etc....
284 kobject_uevent() executes uevent_helper[], which runs the
288 kobject_del() then calls sysfs_remove_dir(), which would
296 which may be addressed in future revisions. But first, note that the