cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

View: New views
6 Messages — Rating Filter:   Alert me  

cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

by DJak :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello all,

i´m trying to get cipe compiled on an 2.6.17.5 kernel. Applied
cipe-2.6.14.patch and the changes to cipe/output.c. While compiling i got the
following:

/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c: In Funktion »cipe_xmit«:
/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:176: Fehler: »struct inet_sock«
hat kein Element namens »inet«
/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:198: Fehler: »struct inet_sock«
hat kein Element namens »inet«
make[3]: *** [/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.o] Fehler 1
make[2]: *** [_module_/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb] Fehler 2
make[2]: Leaving directory `/usr/src/linux-2.6.17.5'
make[1]: *** [all25] Fehler 2
make[1]: Leaving directory `/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb'
make: *** [all] Fehler 2

Can anybody help me finding this missing element called "inet" ;-) ?

Regards

Dirk

--
Message sent by the cipe-l@... mailing list.
Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
Other commands available with "help" in body to the same address.
CIPE info and list archive: <URL:http://sites.inka.de/~bigred/devel/cipe.html>

Re: cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

by Dick St.Peters :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dirk Jakobsmeier writes:

> Hello all,
>
> i´m trying to get cipe compiled on an 2.6.17.5 kernel. Applied
> cipe-2.6.14.patch and the changes to cipe/output.c. While compiling i got the
> following:
>
> /cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c: In Funktion »cipe_xmit«:
> /cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:176: Fehler: »struct inet_sock«
> hat kein Element namens »inet«
> /cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:198: Fehler: »struct inet_sock«
> hat kein Element namens »inet«
> make[3]: *** [/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.o] Fehler 1
> make[2]: *** [_module_/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb] Fehler 2
> make[2]: Leaving directory `/usr/src/linux-2.6.17.5'
> make[1]: *** [all25] Fehler 2
> make[1]: Leaving directory `/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb'
> make: *** [all] Fehler 2
>
> Can anybody help me finding this missing element called "inet" ;-) ?

I can give you some clues.  The problem lies in the definition of the
IOPT macro, which is defined in cipe/cipe.h.  The stock cipe.h defines
IOPT as
    #define IOPT(c) (&(c)->sock->inet)

That's OK for older 2.6 kernels, but newer kernels require
    #define IOPT(c) ((c)->sock)

The 2.6.14 patch (assuming you're talking about my 2.6.14 patch)
changes the definition and wraps the change in a test of the kernel
release:
    #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,12)
    #define IOPT(c) (&(c)->sock->inet)
    #else
    #define IOPT(c) ((c)->sock)
    #endif

(I'm not sure 2.6.12 is the correct branching point for this change,
but that won't affect kernels later than 2.6.12.)

It appears that
    - You applied some patch other than mine, or
    - Your build is picking up another cipe.h, or
    - Your build is finding a kernel build directory for an older
      release

For CIPE to live on, it needs someone or some group to step forward
and take on maintenance.  For awhile I thought I might be in a
position to do that, but my life took a different turn.  I believe
there is now a project to maintain CIPE, based on SourceForge I think.

--
Dick St.Peters, stpeters@...

--
Message sent by the cipe-l@... mailing list.
Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
Other commands available with "help" in body to the same address.
CIPE info and list archive: <URL:http://sites.inka.de/~bigred/devel/cipe.html>

Re: cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

by Keith Smith :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I got on 2.6.17.6/Slack 10.2

Source/patches at http://www.ksmith.com top of page, or these links:

http://www.ksmith.com/cipe/cipe-1.6.0-3.tar.bz2

http://www.ksmith.com/cipe/cipe-1.6.0-1.6.0-3.diff

YMMV, use at your own risk.

Header file problems is all...

--KS


Dirk Jakobsmeier wrote:

>Hello all,
>
>i´m trying to get cipe compiled on an 2.6.17.5 kernel. Applied
>cipe-2.6.14.patch and the changes to cipe/output.c. While compiling i got the
>following:
>
>/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c: In Funktion »cipe_xmit«:
>/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:176: Fehler: »struct inet_sock«
>hat kein Element namens »inet«
>/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:198: Fehler: »struct inet_sock«
>hat kein Element namens »inet«
>make[3]: *** [/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.o] Fehler 1
>make[2]: *** [_module_/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb] Fehler 2
>make[2]: Leaving directory `/usr/src/linux-2.6.17.5'
>make[1]: *** [all25] Fehler 2
>make[1]: Leaving directory `/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb'
>make: *** [all] Fehler 2
>
>Can anybody help me finding this missing element called "inet" ;-) ?
>
>Regards
>
>Dirk
>
>--
>Message sent by the cipe-l@... mailing list.
>Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
>Other commands available with "help" in body to the same address.
>CIPE info and list archive: <URL:http://sites.inka.de/~bigred/devel/cipe.html>
>  
>





signature.asc (352 bytes) Download Attachment
signature.asc (264 bytes) Download Attachment

Re: cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

by DJak :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Keith,

just downloaded new kernel and cipe sources. Compiling works quit well and
loading the module was no problem. CIpe Interface exists and near the end of
the week i will connect the new gateway to my dsl device.

Many thanks for your good tip.

Regards

Am Dienstag, 18. Juli 2006 04:33 schrieben Sie:

> I got on 2.6.17.6/Slack 10.2
>
> Source/patches at http://www.ksmith.com top of page, or these links:
>
> http://www.ksmith.com/cipe/cipe-1.6.0-3.tar.bz2
>
> http://www.ksmith.com/cipe/cipe-1.6.0-1.6.0-3.diff
>
> YMMV, use at your own risk.
>
> Header file problems is all...
>
> --KS
>
> Dirk Jakobsmeier wrote:
> >Hello all,
> >
> >i´m trying to get cipe compiled on an 2.6.17.5 kernel. Applied
> >cipe-2.6.14.patch and the changes to cipe/output.c. While compiling i got
> > the following:
> >
> >/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c: In Funktion »cipe_xmit«:
> >/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:176: Fehler: »struct
> > inet_sock« hat kein Element namens »inet«
> >/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.c:198: Fehler: »struct
> > inet_sock« hat kein Element namens »inet«
> >make[3]: *** [/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb/output.o] Fehler 1
> >make[2]: *** [_module_/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb] Fehler 2
> >make[2]: Leaving directory `/usr/src/linux-2.6.17.5'
> >make[1]: *** [all25] Fehler 2
> >make[1]: Leaving directory `/tmp/cipe-1.6.0/2.6.17.5gateway-i386-cb'
> >make: *** [all] Fehler 2
> >
> >Can anybody help me finding this missing element called "inet" ;-) ?
> >
> >Regards
> >
> >Dirk
> >
> >--
> >Message sent by the cipe-l@... mailing list.
> >Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
> >Other commands available with "help" in body to the same address.
> >CIPE info and list archive:
> > <URL:http://sites.inka.de/~bigred/devel/cipe.html>

--
Message sent by the cipe-l@... mailing list.
Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
Other commands available with "help" in body to the same address.
CIPE info and list archive: <URL:http://sites.inka.de/~bigred/devel/cipe.html>

Re: cipe-1.6.0 kernel 2.6.17.5 kubuntu 6.0.6

by Konstantin Kubatkin-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> I got on 2.6.17.6/Slack 10.2

>
> Source/patches at http://www.ksmith.com top of page, or these links:
>
> http://www.ksmith.com/cipe/cipe-1.6.0-3.tar.bz2
>
> http://www.ksmith.com/cipe/cipe-1.6.0-1.6.0-3.diff
>
> YMMV, use at your own risk.
>
> Header file problems is all...
I got on 2.6.17.6, Debian/testing

I apply the given patch and I receive a following mistake ( in attach )

--
Konstantin Kubatkin [KUB-RIPE] [KUB-UANIC]
Kherson, TriLogiC Group
Fido: 2:468/13@FidoNet

Jul 20 15:04:36 ip54 kernel: cipc: CIPE driver vers 1.6.0 (c) Olaf Titz 1996-2003, 100 channels, debug=1
Jul 20 15:04:36 ip54 kernel: cipc: cipe_alloc_dev 0
Jul 20 15:04:51 ip54 kernel: cipc0: alloc
Jul 20 15:04:51 ip54 kernel: cipc0: setpar
Jul 20 15:04:51 ip54 kernel: crypto_alloc_tfm `blowfish-internal'
Jul 20 15:04:51 ip54 kernel: cipc0: setpar 0.0.0.0:0 2500 150000 0200 0
Jul 20 15:04:51 ip54 kernel: cipc0: setkey
Jul 20 15:04:51 ip54 kernel: BUG: unable to handle kernel paging request at virtual address f5b17a8b
Jul 20 15:04:51 ip54 kernel:  printing eip:
Jul 20 15:04:51 ip54 kernel: c01fc4a8
Jul 20 15:04:51 ip54 kernel: *pde = 00000000
Jul 20 15:04:51 ip54 kernel: Oops: 0000 [#1]
Jul 20 15:04:51 ip54 kernel: Modules linked in: cipc crc32 parport_pc parport via686a hwmon serio_raw i2c_isa i2c_viapro 3c59x mii ide_cd cdrom i2c_core
Jul 20 15:04:51 ip54 kernel: CPU:    0
Jul 20 15:04:51 ip54 kernel: EIP:    0060:[<c01fc4a8>]    Not tainted VLI
Jul 20 15:04:51 ip54 kernel: EFLAGS: 00010286   (2.6.17 #2)
Jul 20 15:04:51 ip54 kernel: EIP is at __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel: eax: ffffffff   ebx: de167f40   ecx: 0000000f   edx: decd51a4
Jul 20 15:04:51 ip54 kernel: esi: decd51a5   edi: de167f41   ebp: f5b17a8b   esp: de167ef8
Jul 20 15:04:51 ip54 kernel: ds: 007b   es: 007b   ss: 0068
Jul 20 15:04:51 ip54 kernel: Process ciped-c (pid: 2724, threadinfo=de166000 task=dfe61a50)
Jul 20 15:04:51 ip54 kernel: Stack: de167f40 00000001 000089f3 00000000 c01fd890 de167f40 c01fe432 bfbf3ec4
Jul 20 15:04:51 ip54 kernel:        c012f9fa de167f68 de2a543c df13b3c0 df13b404 dfb480ec 00000000 00000002
Jul 20 15:04:51 ip54 kernel:        c0286e48 00000000 63706963 bfbf0030 0804cd32 00000063 bfbf3fa4 0000000a
Jul 20 15:04:51 ip54 kernel: Call Trace:
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: Code: 04 8d 04 07 01 d0 6b f8 0b 4e 41 83 fe ff 75 e5 89 f8 25 ff 00 00 00 8b 2c 85 e0 9c 2f c0 eb 03 8b 6d 00 85 ed 75 04 31 d2 eb 2a <8b> 45 00 8d 44 20 00 8d 55 f0 b9 10 00 00 00 89 df 89 d6 49 78
Jul 20 15:04:51 ip54 kernel: EIP: [<c01fc4a8>] __dev_get_by_name+0x5b/0x8c SS:ESP 0068:de167ef8
Jul 20 15:04:51 ip54 kernel:  BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
Jul 20 15:04:51 ip54 kernel:  <c0135ee5> free_pgd_range+0x127/0x14a  <c01f53ff> sock_fasync+0x54/0xf7
Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f5497> sock_fasync+0xec/0xf7
Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c0240f25> unix_release_sock+0x3c/0x179
Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
Jul 20 15:04:51 ip54 kernel:  <c01f53ff> sock_fasync+0x54/0xf7  <c01f619f> sock_close+0x1e/0x2a
Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f5497> sock_fasync+0xec/0xf7
Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
Jul 20 15:04:51 ip54 kernel:  <c010303a> dump_stack+0x13/0x15  <c022a201> udp_destroy_sock+0x8/0x1a
Jul 20 15:04:51 ip54 kernel:  <c01f7738> sk_common_release+0x11/0x89  <c0230168> inet_release+0x43/0x48
Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c022a20f> udp_destroy_sock+0x16/0x1a
Jul 20 15:04:51 ip54 kernel:  <c01f7738> sk_common_release+0x11/0x89  <c0230168> inet_release+0x43/0x48
Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7740> sk_common_release+0x19/0x89
Jul 20 15:04:51 ip54 kernel:  <c0230168> inet_release+0x43/0x48  <c01f5fa9> sock_release+0x11/0x63
Jul 20 15:04:51 ip54 kernel:  <c01f61a7> sock_close+0x26/0x2a  <c01442d3> __fput+0x87/0x116
Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f776c> sk_common_release+0x45/0x89
Jul 20 15:04:51 ip54 kernel:  <c0230168> inet_release+0x43/0x48  <c01f5fa9> sock_release+0x11/0x63
Jul 20 15:04:51 ip54 kernel:  <c01f61a7> sock_close+0x26/0x2a  <c01442d3> __fput+0x87/0x116
Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb

Kernel Panic ...

by Keith Smith :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I've noted an issue with CIPE recently that required some other ethx
interface to be up and running before you load the cipcb *module*.  Not
doing this causes a kernel panic.  Why is beyond me, and I haven't
investigated that much to be honest.  Caused me no end of grief for
quite a long time.

Now I just make sure my eth modules are loaded and the interface is up
and allow cipcb to autoload later.

Let me know if this helps.  I'm currently typing this on a connection
using my patch!

--KS

Konstantin Kubatkin wrote:

>> I got on 2.6.17.6/Slack 10.2
>>
>> Source/patches at http://www.ksmith.com top of page, or these links:
>>
>> http://www.ksmith.com/cipe/cipe-1.6.0-3.tar.bz2
>>
>> http://www.ksmith.com/cipe/cipe-1.6.0-1.6.0-3.diff
>>
>> YMMV, use at your own risk.
>>
>> Header file problems is all...
>
> I got on 2.6.17.6, Debian/testing
>
> I apply the given patch and I receive a following mistake ( in attach )
>
> ------------------------------------------------------------------------
>
> Jul 20 15:04:36 ip54 kernel: cipc: CIPE driver vers 1.6.0 (c) Olaf Titz 1996-2003, 100 channels, debug=1
> Jul 20 15:04:36 ip54 kernel: cipc: cipe_alloc_dev 0
> Jul 20 15:04:51 ip54 kernel: cipc0: alloc
> Jul 20 15:04:51 ip54 kernel: cipc0: setpar
> Jul 20 15:04:51 ip54 kernel: crypto_alloc_tfm `blowfish-internal'
> Jul 20 15:04:51 ip54 kernel: cipc0: setpar 0.0.0.0:0 2500 150000 0200 0
> Jul 20 15:04:51 ip54 kernel: cipc0: setkey
> Jul 20 15:04:51 ip54 kernel: BUG: unable to handle kernel paging request at virtual address f5b17a8b
> Jul 20 15:04:51 ip54 kernel:  printing eip:
> Jul 20 15:04:51 ip54 kernel: c01fc4a8
> Jul 20 15:04:51 ip54 kernel: *pde = 00000000
> Jul 20 15:04:51 ip54 kernel: Oops: 0000 [#1]
> Jul 20 15:04:51 ip54 kernel: Modules linked in: cipc crc32 parport_pc parport via686a hwmon serio_raw i2c_isa i2c_viapro 3c59x mii ide_cd cdrom i2c_core
> Jul 20 15:04:51 ip54 kernel: CPU:    0
> Jul 20 15:04:51 ip54 kernel: EIP:    0060:[<c01fc4a8>]    Not tainted VLI
> Jul 20 15:04:51 ip54 kernel: EFLAGS: 00010286   (2.6.17 #2)
> Jul 20 15:04:51 ip54 kernel: EIP is at __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel: eax: ffffffff   ebx: de167f40   ecx: 0000000f   edx: decd51a4
> Jul 20 15:04:51 ip54 kernel: esi: decd51a5   edi: de167f41   ebp: f5b17a8b   esp: de167ef8
> Jul 20 15:04:51 ip54 kernel: ds: 007b   es: 007b   ss: 0068
> Jul 20 15:04:51 ip54 kernel: Process ciped-c (pid: 2724, threadinfo=de166000 task=dfe61a50)
> Jul 20 15:04:51 ip54 kernel: Stack: de167f40 00000001 000089f3 00000000 c01fd890 de167f40 c01fe432 bfbf3ec4
> Jul 20 15:04:51 ip54 kernel:        c012f9fa de167f68 de2a543c df13b3c0 df13b404 dfb480ec 00000000 00000002
> Jul 20 15:04:51 ip54 kernel:        c0286e48 00000000 63706963 bfbf0030 0804cd32 00000063 bfbf3fa4 0000000a
> Jul 20 15:04:51 ip54 kernel: Call Trace:
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: Code: 04 8d 04 07 01 d0 6b f8 0b 4e 41 83 fe ff 75 e5 89 f8 25 ff 00 00 00 8b 2c 85 e0 9c 2f c0 eb 03 8b 6d 00 85 ed 75 04 31 d2 eb 2a <8b> 45 00 8d 44 20 00 8d 55 f0 b9 10 00 00 00 89 df 89 d6 49 78
> Jul 20 15:04:51 ip54 kernel: EIP: [<c01fc4a8>] __dev_get_by_name+0x5b/0x8c SS:ESP 0068:de167ef8
> Jul 20 15:04:51 ip54 kernel:  BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
> Jul 20 15:04:51 ip54 kernel:  <c0135ee5> free_pgd_range+0x127/0x14a  <c01f53ff> sock_fasync+0x54/0xf7
> Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
> Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
> Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
> Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f5497> sock_fasync+0xec/0xf7
> Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
> Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
> Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
> Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c0240f25> unix_release_sock+0x3c/0x179
> Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
> Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
> Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
> Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
> Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
> Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
> Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
> Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
> Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
> Jul 20 15:04:51 ip54 kernel:  <c01f53ff> sock_fasync+0x54/0xf7  <c01f619f> sock_close+0x1e/0x2a
> Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
> Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
> Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
> Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
> Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
> Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
> Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
> Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f5497> sock_fasync+0xec/0xf7
> Jul 20 15:04:51 ip54 kernel:  <c01f619f> sock_close+0x1e/0x2a  <c01442d3> __fput+0x87/0x116
> Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
> Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
> Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7348> lock_sock+0x84/0x8b
> Jul 20 15:04:51 ip54 kernel:  <c010303a> dump_stack+0x13/0x15  <c022a201> udp_destroy_sock+0x8/0x1a
> Jul 20 15:04:51 ip54 kernel:  <c01f7738> sk_common_release+0x11/0x89  <c0230168> inet_release+0x43/0x48
> Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
> Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
> Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
> Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
> Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
> Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
> Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
> Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
> Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c022a20f> udp_destroy_sock+0x16/0x1a
> Jul 20 15:04:51 ip54 kernel:  <c01f7738> sk_common_release+0x11/0x89  <c0230168> inet_release+0x43/0x48
> Jul 20 15:04:51 ip54 kernel:  <c01f5fa9> sock_release+0x11/0x63  <c01f61a7> sock_close+0x26/0x2a
> Jul 20 15:04:51 ip54 kernel:  <c01442d3> __fput+0x87/0x116  <c0141fb8> filp_close+0x4e/0x54
> Jul 20 15:04:51 ip54 kernel:  <c010fe3e> put_files_struct+0x63/0xa5  <c0110c7f> do_exit+0x190/0x624
> Jul 20 15:04:51 ip54 kernel:  <c010f270> printk+0x14/0x18  <c0102f25> die+0x1fd/0x205
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c010ae44> do_page_fault+0x449/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010a9fb> do_page_fault+0x0/0x52b  <c01026c7> error_code+0x4f/0x54
> Jul 20 15:04:51 ip54 kernel:  <c01fc4a8> __dev_get_by_name+0x5b/0x8c  <c01fd890> dev_load+0x8/0x26
> Jul 20 15:04:51 ip54 kernel:  <c01fe432> dev_ioctl+0x35b/0x3a2  <c012f9fa> filemap_nopage+0x166/0x2c0
> Jul 20 15:04:51 ip54 kernel:  <c01f55a7> sock_ioctl+0x0/0x1a2  <c0150a52> do_ioctl+0x16/0x48
> Jul 20 15:04:51 ip54 kernel:  <c0150c86> vfs_ioctl+0x202/0x219  <c0150cc9> sys_ioctl+0x2c/0x43
> Jul 20 15:04:51 ip54 kernel:  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f7740> sk_common_release+0x19/0x89
> Jul 20 15:04:51 ip54 kernel:  <c0230168> inet_release+0x43/0x48  <c01f5fa9> sock_release+0x11/0x63
> Jul 20 15:04:51 ip54 kernel:  <c01f61a7> sock_close+0x26/0x2a  <c01442d3> __fput+0x87/0x116
> Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
> Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
> Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
> Jul 20 15:04:51 ip54 kernel: BUG: warning at kernel/softirq.c:141/local_bh_enable()
> Jul 20 15:04:51 ip54 kernel:  <c01126ae> local_bh_enable+0x25/0x58  <c01f776c> sk_common_release+0x45/0x89
> Jul 20 15:04:51 ip54 kernel:  <c0230168> inet_release+0x43/0x48  <c01f5fa9> sock_release+0x11/0x63
> Jul 20 15:04:51 ip54 kernel:  <c01f61a7> sock_close+0x26/0x2a  <c01442d3> __fput+0x87/0x116
> Jul 20 15:04:51 ip54 kernel:  <c0141fb8> filp_close+0x4e/0x54  <c010fe3e> put_files_struct+0x63/0xa5
> Jul 20 15:04:51 ip54 kernel:  <c0110c7f> do_exit+0x190/0x624  <c010f270> printk+0x14/0x18
> Jul 20 15:04:51 ip54 kernel:  <c0102f25> die+0x1fd/0x205  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c010ae44> do_page_fault+0x449/0x52b  <c010a9fb> do_page_fault+0x0/0x52b
> Jul 20 15:04:51 ip54 kernel:  <c01026c7> error_code+0x4f/0x54  <c01fc4a8> __dev_get_by_name+0x5b/0x8c
> Jul 20 15:04:51 ip54 kernel:  <c01fd890> dev_load+0x8/0x26  <c01fe432> dev_ioctl+0x35b/0x3a2
> Jul 20 15:04:51 ip54 kernel:  <c012f9fa> filemap_nopage+0x166/0x2c0  <c01f55a7> sock_ioctl+0x0/0x1a2
> Jul 20 15:04:51 ip54 kernel:  <c0150a52> do_ioctl+0x16/0x48  <c0150c86> vfs_ioctl+0x202/0x219
> Jul 20 15:04:51 ip54 kernel:  <c0150cc9> sys_ioctl+0x2c/0x43  <c010249f> syscall_call+0x7/0xb
>  


--
Message sent by the cipe-l@... mailing list.
Unsubscribe: mail majordomo@..., "unsubscribe cipe-l" in body
Other commands available with "help" in body to the same address.
CIPE info and list archive: <URL:http://sites.inka.de/~bigred/devel/cipe.html>