Lines Matching refs:res_timer
1650 struct timer_list res_timer; in dasd_steal_lock() local
1652 init_timer(&res_timer); in dasd_steal_lock()
1653 res_timer.function = dasd_resrel_timeout; in dasd_steal_lock()
1654 res_timer.data = (unsigned long) cqr; in dasd_steal_lock()
1655 res_timer.expires = jiffies + 4 * HZ; in dasd_steal_lock()
1656 add_timer(&res_timer); in dasd_steal_lock()
1660 del_timer_sync(&res_timer); in dasd_steal_lock()
2956 struct timer_list res_timer; in do_dasd_ioctl() local
2958 init_timer (&res_timer); in do_dasd_ioctl()
2959 res_timer.function = dasd_resrel_timeout; in do_dasd_ioctl()
2960 res_timer.data = (unsigned long) cqr; in do_dasd_ioctl()
2961 res_timer.expires = jiffies + 2 * HZ; in do_dasd_ioctl()
2962 add_timer (&res_timer); in do_dasd_ioctl()
2966 del_timer_sync (&res_timer); in do_dasd_ioctl()