Re: [PATCH] [2.6.2-rc3] Fix module.c pointer arithmetics

From: Rusty Russell
Date: Sat Jan 31 2004 - 09:00:06 EST


In message <401BA520.7070204@xxxxxxx> you write:
> - for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++) {
> + for (i = 0; __start___ksymtab+i*sizeof(struct kernel_symbol) < __stop___ksymtab; i++) {

Above in this file, there is the declaration:

extern const struct kernel_symbol __start___ksymtab[];

What makes you think you need to multiply here?

Puzzled,
Rusty.
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
-
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/