[SCRIPT] Get potential __init functions from the kernel image

2001-04-18 Thread Matthias Hanisch
ORT_SYMBOL declarations and the linker would throw them away automatically. -- Matthias Hanischmailto:[EMAIL PROTECTED]phone: +49 8137 935-219 #!/bin/sh if [ $# -lt 1 ]; then echo "Usage: $0 " exit 1 fi image=$1 if [ ! -r $image ]; then

[PATCH] some new __init functions in general modules

2001-04-11 Thread Matthias Hanisch
by do_basic_setup (initfunc) init_timervecs called by sched_init (initfunc) Patch is against 2.4.4pre1, to be included in the ac-series and in the standard kernel. Regards, Matze -- Matthias Hanischmailto:[EMAIL PROTECTED]phone: +49 8137 935-219 diff -ru linux-vanilla

[PATCH] a new __init function in random.c

2001-04-11 Thread Matthias Hanisch
Hi! The attached patch puts the following function into the .text.init section. batch_entropy_init called by rand_initialize (initfunc) Patch is against 2.4.4pre1, to be included in the ac-series and in the standard kernel. Regards, Matze -- Matthias Hanischmailto:[EMAIL

[PATCH] some new __init functions in aha1542.c

2001-04-11 Thread Matthias Hanisch
) Patch is against 2.4.4pre1. Regards, Matze -- Matthias Hanischmailto:[EMAIL PROTECTED]phone: +49 8137 935-219 diff -ru linux-vanilla/drivers/scsi/aha1542.c linux/drivers/scsi/aha1542.c --- linux-vanilla/drivers/scsi/aha1542.cMon Apr 9 22:13:58 2001 +++ linux/drivers

Re: 2.4.0test9-pre2 and pre1 wont boot

2000-09-18 Thread Matthias Hanisch
e. Seems to be a strange side effect... I cannot give you much more information since I am in the office now but feel free to ask. Matze -- Matthias Hanischmailto:[EMAIL PROTECTED]phone: +49 8137 935-219 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/

Re: [patch-2.4.0-test8-pre1] buglet in sk_init().

2000-08-30 Thread Matthias Hanisch
name); panic(panic_msg); } return cachep; } A quick check showed that we have over 50 calls to kmem_cache_create(). Doing the above would save a reasonable amount of code and text segment space. Regards, Matze -- Matthias Hanischmailto