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

From: Carl-Daniel Hailfinger
Date: Sat Jan 31 2004 - 11:42:46 EST


Rusty Russell wrote:
> 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?

-ENOCAFFEINE. (Note to self: Never send patches while asleep)
Now that I'm awake again, I feel ashamed.


> Puzzled,
> Rusty.

Sorry for the confusion,
Carl-Daniel.

-
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/