lkml.org 
[lkml]   [2011]   [Jul]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH 01/11] watchdog: WatchDog Timer Driver Core - Add basic framework
    On 07/11/2011 04:19 PM, Wim Van Sebroeck wrote:
    > [...]
    > +
    > +
    > +static int watchdog_release(struct inode *inode, struct file *file)
    > +{
    > + int err;
    > +
    > + /* stop the watchdog */
    > + err = wdd->ops->stop(wdd);
    Does it really make sense to allow stop() to fail? Will this ever happen, and
    if yes do we gain anything by sending a additional ping?

    > + if (err != 0) {
    > + pr_crit("%s: watchdog did not stop!\n", wdd->info->identity);
    > + watchdog_ping(wdd);
    > + }
    > +
    > + /* Allow the owner module to be unloaded again */
    > + module_put(wdd->ops->owner);
    > +
    > + /* make sure that /dev/watchdog can be re-opened */
    > + clear_bit(WDOG_DEV_OPEN, &wdd->status);
    > +
    > + return 0;
    > +}
    > +
    > [...]
    > +
    > +int watchdog_dev_unregister(struct watchdog_device *watchdog)
    > +{
    > + /* Check that a watchdog device was registered in the past */
    > + if (!test_bit(0, &watchdog_dev_busy) || !wdd)
    > + return -ENODEV;
    > +
    > + /* We can only unregister the watchdog device that was registered */
    > + if (watchdog != wdd) {
    > + pr_err("%s: watchdog was not registered as /dev/watchdog.\n",
    > + watchdog->info->identity);
    > + return -ENODEV;
    > + }
    > +
    > + /* Unregister the miscdevice */
    > + misc_deregister(&watchdog_miscdev);
    > + wdd = NULL;
    > + clear_bit(0, &watchdog_dev_busy);
    > + return 0;
    > +}

    What happens if the watchdog gets unregistered if the device is still opened?
    Even though if you'd check wdd for not being NULL in the file callbacks there
    is still a chance for races if the devices is unregistered at the same time as
    the callback is running. You'd either need a big lock to protect from having a
    file callback and unregister running concurrently or add ref-counting to the
    watchdog_device, the later best done by embedding a struct device and using the
    device driver model.

    > +
    > +MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
    > diff --git a/drivers/watchdog/watchdog_dev.h b/drivers/watchdog/watchdog_dev.h
    > new file mode 100644
    > index 0000000..bc7612b
    > --- /dev/null
    > +++ b/drivers/watchdog/watchdog_dev.h
    > @@ -0,0 +1,33 @@
    > [...]
    >
    > +struct watchdog_ops;
    > +struct watchdog_device;
    > +
    > +/* The watchdog-devices operations */
    > +struct watchdog_ops {
    > + struct module *owner;
    > + /* mandatory operations */
    > + int (*start)(struct watchdog_device *);
    > + int (*stop)(struct watchdog_device *);
    > + /* optional operations */
    > + int (*ping)(struct watchdog_device *);
    > +};
    > +
    > +/* The structure that defines a watchdog device */
    > +struct watchdog_device {
    > + const struct watchdog_info *info;
    > + const struct watchdog_ops *ops;
    > + void *priv;

    You should provide getter/setter methods for priv, so that when the watchdog
    API is changed to make use of the device driver model it becomes easier to get
    rid of the priv field and use dev_{get,set}_drvdata instead.

    > + unsigned long status;
    > +/* Bit numbers for status flags */
    > +#define WDOG_DEV_OPEN 1 /* Opened via /dev/watchdog ? */
    > +};

    Kernel-doc style documentation for the structs would be nice.

    > +
    > +/* drivers/watchdog/core/watchdog_core.c */
    > +extern int watchdog_register_device(struct watchdog_device *);
    > +extern void watchdog_unregister_device(struct watchdog_device *);
    > +
    > #endif /* __KERNEL__ */
    >
    > #endif /* ifndef _LINUX_WATCHDOG_H */



    \
     
     \ /
      Last update: 2011-07-12 01:05    [W:4.238 / U:0.036 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site