[opensuse-kernel] kernel-source-2.6.27-rc6.HEAD_20080914000334
Trying to compile kernel-source-2.6.27-rc6.HEAD_20080914000334 with arch/x86_64/defconfig,default copied to .config throws this error: block/blk-timeout.c:41: Fehler: »blk_delete_request« ist hier nicht deklariert (nicht in einer Funktion) block/blk-timeout.c:41: Warnung: »int« ist Standardtyp in Deklaration von »blk_delete_request« make[1]: *** [block/blk-timeout.o] Fehler 1 The follwing patch seems to fix the problem: --- block/blk-timeout.c~ 2008-09-15 12:12:21.000000000 +0200 +++ block/blk-timeout.c 2008-09-15 12:12:21.000000000 +0200 @@ -38,7 +38,7 @@ return 1; } -EXPORT_SYMBOL_GPL(blk_delete_request); +EXPORT_SYMBOL_GPL(blk_delete_timer); static void blk_rq_timed_out(struct request *req) { -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-kernel+help@opensuse.org
On Mon, 15 Sep 2008, Markus Koßmann wrote:
Trying to compile kernel-source-2.6.27-rc6.HEAD_20080914000334 with arch/x86_64/defconfig,default copied to .config throws this error:
block/blk-timeout.c:41: Fehler: ?blk_delete_request? ist hier nicht deklariert (nicht in einer Funktion) block/blk-timeout.c:41: Warnung: ?int? ist Standardtyp in Deklaration von ?blk_delete_request? make[1]: *** [block/blk-timeout.o] Fehler 1
The follwing patch seems to fix the problem:
--- block/blk-timeout.c~ 2008-09-15 12:12:21.000000000 +0200 +++ block/blk-timeout.c 2008-09-15 12:12:21.000000000 +0200 @@ -38,7 +38,7 @@
return 1; } -EXPORT_SYMBOL_GPL(blk_delete_request); +EXPORT_SYMBOL_GPL(blk_delete_timer);
Hi Markus, this has already been fixed in our kernel tree, and will get synced out when the new KOTD is rebuilt. Anyway -- thanks a lot, -- Jiri Kosina SUSE Labs
participants (2)
-
Jiri Kosina
-
Markus Koßmann