Messages in this thread |  | | | Date | Mon, 22 Sep 2008 23:03:39 -0700 | | From | Jeremy Fitzhardinge <> | | Subject | Re: [PATCH 2/2] corruption check: run the corruption checks from a work queue |
Arjan van de Ven wrote:
> -void start_periodic_check_for_corruption(void)
> +
> +
> +int start_periodic_check_for_corruption(void)
>
Couldn't this be static now?
> {
> if (!memory_corruption_check || corruption_check_period == 0)
> - return;
> + return 0;
>
> printk(KERN_INFO "Scanning for low memory corruption every %d seconds\n",
> corruption_check_period);
>
> init_timer(&periodic_check_timer);
> periodic_check_timer.function = &periodic_check_for_corruption;
> - periodic_check_for_corruption(0);
> + mod_timer(&periodic_check_timer,
> + round_jiffies(jiffies + corruption_check_period*HZ));
> +
> + return 0;
> }
> +
> +module_init(start_periodic_check_for_corruption);
J
|  |