static int wdt977_release(struct inode *inode, struct file *file) { if (expect_close == 42) { wdt977_stop(); clear_bit(0, &timer_alive); } else { wdt977_keepalive(); printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n"); } expect_close = 0; return 0; }
static int wdt977_release(struct inode *inode, struct file *file) { /* * Shut off the timer. * Lock it in if it's a module and we set nowayout */ if (expect_close == 42) { wdt977_stop(); clear_bit(0, &timer_alive); } else { wdt977_keepalive(); pr_crit("Unexpected close, not stopping watchdog!\n"); } expect_close = 0; return 0; }
static int wdt977_release(struct inode *inode, struct file *file) { /* * Shut off the timer. * Lock it in if it's a module and we set nowayout */ if (expect_close == 42) { wdt977_stop(); clear_bit(0, &timer_alive); } else { wdt977_keepalive(); // printk(KERN_CRIT PFX ; } expect_close = 0; return 0; }
static int wdt977_release(struct inode *inode, struct file *file) { /* * Shut off the timer. * Lock it in if it's a module and we set nowayout */ if (expect_close == 42) { wdt977_stop(); clear_bit(0, &timer_alive); } else { wdt977_keepalive(); #ifdef CONFIG_DEBUG_PRINTK printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n"); #else ; #endif } expect_close = 0; return 0; }
static int wdt977_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) { int status; int new_options, retval = -EINVAL; int new_timeout; union { struct watchdog_info __user *ident; int __user *i; } uarg; uarg.i = (int __user *)arg; switch(cmd) { default: return -ENOIOCTLCMD; case WDIOC_GETSUPPORT: return copy_to_user(uarg.ident, &ident, sizeof(ident)) ? -EFAULT : 0; case WDIOC_GETSTATUS: wdt977_get_status(&status); return put_user(status, uarg.i); case WDIOC_GETBOOTSTATUS: return put_user(0, uarg.i); case WDIOC_KEEPALIVE: wdt977_keepalive(); return 0; case WDIOC_SETOPTIONS: if (get_user (new_options, uarg.i)) return -EFAULT; if (new_options & WDIOS_DISABLECARD) { wdt977_stop(); retval = 0; } if (new_options & WDIOS_ENABLECARD) { wdt977_start(); retval = 0; } return retval; case WDIOC_SETTIMEOUT: if (get_user(new_timeout, uarg.i)) return -EFAULT; if (wdt977_set_timeout(new_timeout)) return -EINVAL; wdt977_keepalive(); /* Fall */ case WDIOC_GETTIMEOUT: return put_user(timeout, uarg.i); } }