Re: Linux 2.6.0-test4

From: insecure
Date: Mon Aug 25 2003 - 16:22:46 EST


> o [arcnet com90io] replace check_region with temporary
> request_region, in probe phase.

check_region() is deprecated because it is racy.
Replacing it with request_region in probe:

int probe() {
if(!request_region(...))
return 0;
/* probe */
release_region(...);
}

int init() {
request_region(...);
}

only removes 'deprecated' warning. Race remains.
--
vda
-
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/