On Mon, 9 Apr 2007 11:07:22 -0400 (EDT),
Alan Stern <[email protected]> wrote:
> This revised patch (as896b) fixes an oversight in the design of
> device_schedule_callback(). It is necessary to acquire a reference to
> the module owning the callback routine, to prevent the module from
> being unloaded before the callback can run.
>
> Signed-off-by: Alan Stern <[email protected]>
<snip>
> Index: usb-2.6/include/linux/device.h
> ===================================================================
> --- usb-2.6.orig/include/linux/device.h
> +++ usb-2.6/include/linux/device.h
> @@ -369,8 +369,14 @@ extern int __must_check device_create_bi
> struct bin_attribute *attr);
> extern void device_remove_bin_file(struct device *dev,
> struct bin_attribute *attr);
> -extern int device_schedule_callback(struct device *dev,
> - void (*func)(struct device *));
> +extern int device_schedule_callback_owner(struct device *dev,
> + void (*func)(struct device *), struct module *owner);
> +
> +static inline int device_schedule_callback(struct device *dev,
> + void (*func)(struct device *))
> +{
> + return device_schedule_callback_owner(dev, func, THIS_MODULE);
> +}
>
> /* device resource management */
> typedef void (*dr_release_t)(struct device *dev, void *res);
Whoops:
In file included from include/linux/interrupt.h:15,
from include/asm/hardirq.h:18,
from include/linux/hardirq.h:7,
from include/asm-generic/local.h:5,
from include/asm/local.h:1,
from include/linux/module.h:19,
from arch/s390/kernel/time.c:16:
include/linux/device.h: In function 'device_schedule_callback':
include/linux/device.h:374: error: 'THIS_MODULE' undeclared (first use in this function)
include/linux/device.h:374: error: (Each undeclared identifier is reported only once
include/linux/device.h:374: error: for each function it appears in.)
Maybe better move the implementation of device_schedule_callback() to
drivers/base/core.c? (Though I'm not sure why
include/asm-s390/hardirq.h includes linux/interrupt.h, and e.g.
include/asm-i386/hardirq.h doesn't.)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]