initcall_t *call;
call = &__initcall_start;
do {
(*call)();
call++;
} while (call < &__initcall_end);
Hopefully, now things are clear to everyone (including myself).
Regards,
Tigran
On Tue, 14 Sep 1999, Tigran Aivazian wrote:
> Hi,
>
> Why does do_load_elf_binary() fail if the program header table size
> (e_phentsize * e_phnum) is greater than 65536 bytes? If it is because in
> some old versions kmalloc(GFP_KERNEL) couldn't get more than 64K (although
> the earliest I remember could get 120K or so) then it should be removed.
> But if there is some other reason, I would like to know.
>
> Regards,
> Tigran.
>
>
>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/