[2.4 patch] small hptraid.c fix

From: Adrian Bunk (bunk_at_fs.tum.de)
Date: 01/26/04

  • Next message: Adrian Bunk: "Re: [patch] Re: Kernels > 2.6.1-mm3 do not boot. - SOLVED"
    Date:	Mon, 26 Jan 2004 04:25:30 +0100
    To: andre@linux-ide.org, Marcelo Tosatti <marcelo.tosatti@cyclades.com>, Wilfried Weissmann <wweissmann@gmx.at>, Arjan van de Ven <arjanv@redhat.com>
    
    

    I got the following warning while compileing 2.4.25-pre7:

    <-- snip -->

    ...
    gcc-2.95 -D__KERNEL__
    -I/home/bunk/linux/kernel-2.4/linux-2.4.25-pre7-full/include -Wall
    -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
    -fomit-frame-pointer -pipe -mpreferred-stack-boundary=2 -march=k6 -I../
    -nostdinc -iwithprefix include -DKBUILD_BASENAME=hptraid -c -o
    hptraid.o hptraid.c
    {standard input}: Assembler messages:
    {standard input}:92: Warning: setting incorrect section attributes for .text.init
    ...

    <-- snip -->

    The problem is that a struct was marked __init instead of __initdata.

    The patch below fixes this issue.

    cu
    Adrian

    --- linux-2.4.25-pre7-full/drivers/ide/raid/hptraid.c.old 2004-01-26 04:19:37.000000000 +0100
    +++ linux-2.4.25-pre7-full/drivers/ide/raid/hptraid.c 2004-01-26 04:19:53.000000000 +0100
    @@ -146,7 +146,7 @@
             make_request: hptraid01_make_request
     };
     
    -static __init struct {
    +static __initdata struct {
             struct raid_device_operations *op;
             u_int8_t type;
             char label[8];
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/


  • Next message: Adrian Bunk: "Re: [patch] Re: Kernels > 2.6.1-mm3 do not boot. - SOLVED"

    Relevant Pages