Re: [PATCH 117/141] V4L/DVB (3390): Fix module parameters

From: Duncan Sands
Date: Mon Mar 20 2006 - 10:54:23 EST


> -module_param(dvb_override_tune_delay, int, 0444);
> +module_param(dvb_override_tune_delay, int, 0644);

if (dvb_override_tune_delay > 0)
fepriv->min_delay = (dvb_override_tune_delay * HZ) / 1000;

I guess the value of dvb_override_tune_delay could change from non-zero
to zero between testing the condition and setting min_delay. Probably
this doesn't matter, but still...

Ciao,

D.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/