Panic with Raw Socket-Page fault in module "ip" due to a NULL pointer deref

I see a panic when using raw sockets with Solaris 10 10/09 (u8). I included a sample program that can cause this issue (panic happens when a udp datagram is received on port 60000). This sample code works as expected with the previous version I was using - 5/08. If I bind with a port number of 0 I don't see the panic but I don't receive anything either.
I believe I have all the latest patches installed. I'd appreciate any assistance in resolving this. Thanks...
^Mpanic[cpu11]/thread=fffffe8000916c60:
BAD TRAP: type=e (#pf Page fault) rp=fffffe80009166c0 addr=83 occurred in module "ip" due to a NULL pointer dereference
sched:
#pf Page fault
Bad kernel fault at addr=0x83
pid=0, pc=0xffffffffedf86a10, sp=0xfffffe80009167b0, eflags=0x10246
cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6f8<xmme,fxsr,pge,mce,pae,pse,de>
cr2: 83 cr3: 1a345000 cr8: c
rdi: ffffffffa7092808 rsi: ffffffffb0094e00 rdx: ffffffffa73c9d40
rcx: 0 r8: fffffe8000916878 r9: fffffe8000916880
rax: 0 rbx: ffffffffb0094e00 rbp: fffffe8000916800
r10: ffffffffa7c18840 r11: ffffffffa73c9d40 r12: fffffe8000916880
r13: ffffffff9b314000 r14: ffffffff9a70b000 r15: 0
fsb: ffffffff80000000 gsb: ffffffff9c52d800 ds: 43
es: 43 fs: 0 gs: 1c3
trp: e err: 0 rip: ffffffffedf86a10
cs: 28 rfl: 10246 rsp: fffffe80009167b0
ss: 30
fffffe80009165d0 unix:die+da ()
fffffe80009166b0 unix:trap+5e6 ()
fffffe80009166c0 unix:_cmntrap+140 ()
fffffe8000916800 ip:ip_udp_check+b0 ()
fffffe80009168b0 ip:ip_udp_input+15a ()
fffffe80009169d0 ip:ip_input+c7c ()
fffffe8000916aa0 dls:i_dls_link_rx+32e ()
fffffe8000916af0 mac:mac_rx+71 ()
fffffe8000916b90 bnx:bnx_recv_ring_recv+113 ()
fffffe8000916ba0 bnx:bnx_rxpkts_intr+17 ()
fffffe8000916bc0 bnx:bnx_intr_recv+58 ()
fffffe8000916bf0 bnx:bnx_intr_1lvl+120 ()
fffffe8000916c40 unix:av_dispatch_autovect+78 ()
fffffe8000916c50 unix:intr_thread+5f ()
EXAMPLE USED TO CAUSE ABOVE PANIC
#include        <unistd.h>
#include        <stdio.h>
#include        <stdlib.h>
#include        <sys/socket.h>
#include        <arpa/inet.h>
#define BUFFER_SIZE 2048
int main(int argc, char *argv[])
        int                     i, j, sd, iosize;
        char                    *ipbuffer;
        struct sockaddr_in      saddr, daddr;
        ipbuffer = calloc( 1, BUFFER_SIZE );
        //if ( ( sd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP) ) < 0 ) {        // Works
        if ( ( sd = socket(PF_INET, SOCK_RAW, IPPROTO_UDP) ) < 0 ) {            // Fails
                perror("socket() error");
                exit(-1);
        saddr.sin_family = AF_INET;
        saddr.sin_addr.s_addr = inet_addr( "0.0.0.0" );
        saddr.sin_port = htons( 60000 );
        if ( bind( sd, (struct sockaddr *) &saddr, sizeof( saddr ) ) < 0 ) {
                perror("bind() error");
                exit(-1);
        printf( "Awaiting inbound datagrams...\n" );
        for ( i = 1; i <= 10; i++ ) {
                j = sizeof( daddr );
                iosize = recvfrom( sd, ipbuffer, BUFFER_SIZE, 0, (struct sockaddr *) &daddr, &j );
                printf( "Received %d bytes from %s\n", iosize, inet_ntoa( daddr.sin_addr ) );
        close( sd );
        return( 0 );
}------------------------------------------------------------------

This issue could be related. Recommend you open a call with support.
http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6882984

Similar Messages

  • Kernel Panic: ...in module "ip" due to a NULL pointer dereference

    I already had 2 panic-s in the IP module over the last 24 hours. I am running Solaris Express 11 - snv_151a - 2010.11.
    I am trying to:
    - decode which function is failing
    - determine what's (who since its network) causing them
    - find a bug fix for the problem
    I have preserved both dumps via snapshots to be analyzed further as needed.
    Here's the details:
    unix: [ID 836849 kern.notice]
    ^Mpanic[cpu4]/thread=ffffff005c995c40:
    genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=ffffff005c995040 addr=20 occurred in module "ip" due to a NULL pointer dereference
    unix: [ID 100000 kern.notice]
    unix: [ID 839527 kern.notice] sched:
    unix: [ID 753105 kern.notice] #pf Page fault
    unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x20
    unix: [ID 243837 kern.notice] pid=0, pc=0xfffffffff7c3f005, sp=0xffffff005c995130, eflags=0x10246
    unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6f8<xmme,fxsr,pge,mce,pae,pse,de>
    unix: [ID 624947 kern.notice] cr2: 20
    unix: [ID 625075 kern.notice] cr3: 8c00000
    unix: [ID 625715 kern.notice] cr8: c
    unix: [ID 100000 kern.notice]
    unix: [ID 592667 kern.notice] rdi: 0 rsi: ffffff0d5738c3a0 rdx: 1
    unix: [ID 592667 kern.notice] rcx: 0 r8: ffffff005c995190 r9: ffffff005c99518c
    unix: [ID 592667 kern.notice] rax: 0 rbx: ffffff0df67a1a54 rbp: ffffff005c9952a0
    unix: [ID 592667 kern.notice] r10: 0 r11: 46 r12: ffffff0e29547a40
    unix: [ID 592667 kern.notice] r13: ffffff0d5738c3a0 r14: 1 r15: ffffff0dbddf2a74
    unix: [ID 592667 kern.notice] fsb: 0 gsb: ffffff0d35219080 ds: 4b
    unix: [ID 592667 kern.notice] es: 4b fs: 0 gs: 1c3
    unix: [ID 592667 kern.notice] trp: e err: 0 rip: fffffffff7c3f005
    unix: [ID 592667 kern.notice] cs: 30 rfl: 10246 rsp: ffffff005c995130
    unix: [ID 266532 kern.notice] ss: 38
    unix: [ID 100000 kern.notice]
    genunix: [ID 655072 kern.notice] ffffff005c994f20 unix:die+dd ()
    genunix: [ID 655072 kern.notice] ffffff005c995030 unix:trap+1799 ()
    genunix: [ID 655072 kern.notice] ffffff005c995040 unix:cmntrap+e6 ()
    genunix: [ID 655072 kern.notice] ffffff005c9952a0 ip:tcp_input_data+38ad ()
    genunix: [ID 655072 kern.notice] ffffff005c995330 ip:squeue_enter+440 ()
    genunix: [ID 655072 kern.notice] ffffff005c995400 ip:ip_fanout_v4+48d ()
    genunix: [ID 655072 kern.notice] ffffff005c995480 ip:ire_recv_local_v4+1ce ()
    genunix: [ID 655072 kern.notice] ffffff005c995560 ip:ill_input_short_v4+69e ()
    genunix: [ID 655072 kern.notice] ffffff005c995790 ip:ip_input+23b ()
    genunix: [ID 655072 kern.notice] ffffff005c995820 mac:mac_rx_soft_ring_process+17a ()
    genunix: [ID 655072 kern.notice] ffffff005c995960 mac:mac_rx_srs_proto_fanout+46f ()
    genunix: [ID 655072 kern.notice] ffffff005c9959e0 mac:mac_rx_srs_drain+26e ()
    genunix: [ID 655072 kern.notice] ffffff005c995a70 mac:mac_rx_srs_process+180 ()
    genunix: [ID 655072 kern.notice] ffffff005c995ac0 mac:mac_rx_common+94 ()
    genunix: [ID 655072 kern.notice] ffffff005c995b10 mac:mac_rx+ac ()
    genunix: [ID 655072 kern.notice] ffffff005c995b50 mac:mac_rx_ring+4c ()
    genunix: [ID 655072 kern.notice] ffffff005c995b90 igb:igb_intr_rx+5e ()
    genunix: [ID 655072 kern.notice] ffffff005c995be0 unix:av_dispatch_autovect+7c ()
    genunix: [ID 655072 kern.notice] ffffff005c995c20 unix:dispatch_hardint+33 ()
    genunix: [ID 655072 kern.notice] ffffff005c965a10 unix:switch_sp_and_call+13 ()
    genunix: [ID 655072 kern.notice] ffffff005c965a60 unix:do_interrupt+b1 ()
    genunix: [ID 655072 kern.notice] ffffff005c965a70 unix:cmnint+ba ()
    genunix: [ID 655072 kern.notice] ffffff005c965b60 unix:i86_mwait+d ()
    genunix: [ID 655072 kern.notice] ffffff005c965bb0 unix:cpu_idle_mwait+f1 ()
    genunix: [ID 655072 kern.notice] ffffff005c965be0 unix:cpu_acpi_idle+8d ()
    genunix: [ID 655072 kern.notice] ffffff005c965bf0 unix:cpu_idle_adaptive+19 ()
    genunix: [ID 655072 kern.notice] ffffff005c965c20 unix:idle+112 ()
    genunix: [ID 655072 kern.notice] ffffff005c965c30 unix:thread_start+8 ()
    unix: [ID 100000 kern.notice]
    genunix: [ID 672855 kern.notice] syncing file systems...
    genunix: [ID 904073 kern.notice] done
    genunix: [ID 111219 kern.notice] dumping to /dev/zvol/dsk/rpool/dump, offset 65536, content: kernel
    ahci: [ID 405573 kern.info] NOTICE: ahci0: ahci_tran_reset_dport port 0 reset port
    ahci: [ID 405573 kern.info] NOTICE: ahci0: ahci_tran_reset_dport port 1 reset port

    I'm not seeing any obvious bugs relating to the stack. There's something similar but it was fixed in b147. Can I suggest and recommend that you raise a Service Request so we can review the data and establish if this is a known or new bug. When creating the new service request it will need to go to the network team so the following will need to be used:
    Product: Oracle Solaris Express
    Component: Protocols and Routing
    Sub-Component: IP - TCP/IP
    Once the SR is raised, we'll need the crash dumps and explorer from the host in question.
    If the crash dumps are of the form vmcore.n, then please gzip them
    If the crash dumps are of the form vmdump.n then they are already in bzip2 format so please do not compress them.
    Prefix the filenames with the SR number and upload them to https://supportfiles.sun.com and select "/cores" from the list of options in Step #2
    Explorer will collect the configuration from the system which is useful for reviewing alongside the crash dump. It should live in /opt/SUNWexplo/bin/ and can be executed using /opt/SUNWexplo/bin/explorer. If it's not installed, please download it from Doc ID 6972175 - "Oracle Services Tools Bundle (STB) - Explorer, SNEEP, LWACT, RDA"
    Regards,
    Steve

  • Occurred in module "ip" due to a NULL pointer dereference

    My solaris 10 x86 server would auto reboot 3 to 4 times at each day.
    System Config:-
    Dual Pentium III 1GHz
    VIA Chips Set main board
    512MB RAM
    LGI SCSI Interface
    Hitaichi 73GB SCSI HDD
    Seagate 120GB IDE HDD
    Intel VGA Display Card
    3Com 3c905 Network Card
    I removed all RPC and NFS function.
    Installed gcc form Solaris CD pack.
    And I compiled new Apache 2.0 + php + MySQL + FastCGI in server.
    Base this error problem, I have try to install patch(119076-05) and try to re-compile apache. But the error cannot fix.
    The BIG PROBLEM is the solaris 10 always auto reboot. Let my some files and MySQL database error.
    And I checked /var/adm/message get the following error message. Anyone can help me
    Jul 6 12:41:56 tophkweb unix: [ID 836849 kern.notice]
    Jul 6 12:41:56 tophkweb ^Mpanic[cpu0]/thread=d45d3000:
    Jul 6 12:41:56 tophkweb genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=d4667acc addr=9d occurred in module "ip" due to a NULL pointer dereference
    Jul 6 12:41:56 tophkweb unix: [ID 100000 kern.notice]
    Jul 6 12:41:56 tophkweb unix: [ID 839527 kern.notice] httpd:
    Jul 6 12:41:56 tophkweb unix: [ID 753105 kern.notice] #pf Page fault
    Jul 6 12:41:56 tophkweb unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x9d
    Jul 6 12:41:56 tophkweb unix: [ID 243837 kern.notice] pid=271, pc=0xfeaa24b7, sp=0xd6048580, eflags=0x10202
    Jul 6 12:41:56 tophkweb unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6d8<xmme,fxsr,pge,mce,pse,de>
    Jul 6 12:41:56 tophkweb unix: [ID 936844 kern.notice] cr2: 9d cr3: 14f02000
    Jul 6 12:41:56 tophkweb unix: [ID 537610 kern.notice] gs: fea401b0 fs: fea80000 es: d4520160 ds: ffff0160
    Jul 6 12:41:56 tophkweb unix: [ID 537610 kern.notice] edi: d57b43c0 esi: 0 ebp: d4667b18 esp: d4667afc
    Jul 6 12:41:56 tophkweb unix: [ID 537610 kern.notice] ebx: d60486c0 edx: d528b900 ecx: 0 eax: a1
    Jul 6 12:41:56 tophkweb unix: [ID 537610 kern.notice] trp: e err: 0 eip: feaa24b7 cs: 158
    Jul 6 12:41:56 tophkweb unix: [ID 717149 kern.notice] efl: 10202 usp: d6048580 ss: d60486c0
    Jul 6 12:41:56 tophkweb unix: [ID 100000 kern.notice]
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667a2c unix:die+a7 (e, d4667acc, 9d, 0)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667ab8 unix:trap+f56 (d4667acc, 9d, 0)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667acc unix:cmntrap+83 ()
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667b18 ip:tcp_unfuse+2b (d60486c0)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667bf4 ip:tcp_rput_data+4a (d6048580, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667c0c ip:tcp_input+39 (d6048580, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667c30 ip:squeue_enter+b5 (d3e85f40, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667c68 ip:ip_fanout_tcp+38e (d61cd438, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667cac ip:ip_wput_local+1bb (d61cd438, da979c54,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667d48 ip:ip_wput_ire+1436 (d61cd438, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667da0 ip:ip_output+70a (d60489c0, d57b43c0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667de4 ip:tcp_send_data+5f9 (d6048b00, d61cd438,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667e04 ip:tcp_xmit_end+88 (d6048b00)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667e20 ip:tcp_close_output+115 (d60489c0, d6048d10,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667e44 ip:squeue_enter+1bf (d3e85f40, d6048d10,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667e70 ip:tcp_close+6c (d61cd3b0, 83, dad03)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667e90 genunix:qdetach+8b (d61cd3b0, 1, 83, da)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667ec4 genunix:strclose+2e3 (d45cdcc0, 83, dad03)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667eec sockfs:socktpi_close+d7 (d45cdcc0, 83, 1, 0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667f1c genunix:fop_close+26 (d45cdcc0, 83, 1, 0,)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667f58 genunix:closef+56 (d5b7f180)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667f7c genunix:closeandsetf+2e7 (16, 0)
    Jul 6 12:41:56 tophkweb genunix: [ID 353471 kern.notice] d4667f8c genunix:close+d (16, 3, fec1d444, d4)
    Jul 6 12:41:56 tophkweb unix: [ID 100000 kern.notice]
    Jul 6 12:41:56 tophkweb genunix: [ID 672855 kern.notice] syncing file systems...
    Jul 6 12:41:56 tophkweb genunix: [ID 733762 kern.notice] 11
    Jul 6 12:41:57 tophkweb genunix: [ID 733762 kern.notice] 9
    Jul 6 12:41:58 tophkweb genunix: [ID 733762 kern.notice] 6
    Jul 6 12:42:18 tophkweb last message repeated 20 times
    Jul 6 12:42:19 tophkweb genunix: [ID 622722 kern.notice] done (not all i/o completed)
    Jul 6 12:42:20 tophkweb genunix: [ID 111219 kern.notice] dumping to /dev/dsk/c2t0d0s0, offset 214695936, content: kernel
    Jul 6 12:42:29 tophkweb genunix: [ID 409368 kern.notice] ^M100% done: 16280 pages dumped, compression ratio 3.06,
    Jul 6 12:42:29 tophkweb genunix: [ID 851671 kern.notice] dump succeeded

    I have a server suffering similar symptoms. In fact, it's crashed 16 times since the 29/07/2005! It's been getting worse with more use.
    The server runs the latest Big Brother and Apache that shipped with Solaris 10.
    The server has the latest patches (via smpatch)
    -bash-3.00$ uname -a
    SunOS <omitted> 5.10 Generic_118844-08 i86pc i386 i86pc
    Jul 27 06:20:32 <omitted> unix: [ID 836849 kern.notice]
    Jul 27 06:20:32 <omitted> ^Mpanic[cpu3]/thread=d3b0fa00:
    Jul 27 06:20:32 <omitted> genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=cfba4acc addr=9
    d occurred in module "ip" due to a NULL pointer dereference
    Jul 27 06:20:32 <omitted> unix: [ID 100000 kern.notice]
    Jul 27 06:20:32 <omitted> unix: [ID 839527 kern.notice] bb:
    Jul 27 06:20:32 <omitted> unix: [ID 753105 kern.notice] #pf Page fault
    Jul 27 06:20:32 <omitted> unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x9d
    Jul 27 06:20:32 <omitted> unix: [ID 243837 kern.notice] pid=14256, pc=0xfeb06827, sp=0xd6d20580, eflags=0x10202
    Jul 27 06:20:32 <omitted> unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6d8<xmme,fxsr,
    pge,mce,pse,de>
    Jul 27 06:20:32 <omitted> unix: [ID 936844 kern.notice] cr2: 9d cr3: 691ea000
    Jul 27 06:20:32 <omitted> unix: [ID 537610 kern.notice] gs: feab01b0 fs: feae0000 es: d0860160 ds: ffff
    0160
    Jul 27 06:20:32 <omitted> unix: [ID 537610 kern.notice] edi: cfd084c0 esi: 0 ebp: cfba4b18 esp: cfba
    4afc
    Jul 27 06:20:32 <omitted> unix: [ID 537610 kern.notice] ebx: d6d206c0 edx: d3025540 ecx: 0 eax:
    81
    Jul 27 06:20:32 <omitted> unix: [ID 537610 kern.notice] trp: e err: 0 eip: feb06827 cs:
    158
    Jul 27 06:20:32 <omitted> unix: [ID 717149 kern.notice] efl: 10202 usp: d6d20580 ss: d6d206c0
    Jul 27 06:20:32 <omitted> unix: [ID 100000 kern.notice]
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4a2c unix:die+a7 (e, cfba4acc, 9d, 3)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4ab8 unix:trap+f56 (cfba4acc, 9d, 3)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4acc unix:cmntrap+83 ()
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4b18 ip:tcp_unfuse+2b (d6d206c0)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4bf4 ip:tcp_rput_data+4a (d6d20580, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4c0c ip:tcp_input+39 (d6d20580, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4c30 ip:squeue_enter+b5 (cff74dc0, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4c68 ip:ip_fanout_tcp+38e (d4d2e6b8, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4cac ip:ip_wput_local+1bb (d4d2e6b8, d071f554,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4d48 ip:ip_wput_ire+1436 (d4d2e6b8, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4da0 ip:ip_output+70a (d3fef140, cfd084c0,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4de4 ip:tcp_send_data+5f9 (d3fef280, d4d2e6b8,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4e04 ip:tcp_xmit_end+88 (d3fef280)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4e20 ip:tcp_close_output+115 (d3fef140, d3fef490
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4e44 ip:squeue_enter+1bf (cff74dc0, d3fef490,)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4e70 ip:tcp_close+6c (d4d2e630, 3, d156a7)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4e90 genunix:qdetach+8b (d4d2e630, 1, 3, d15)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4ec4 genunix:strclose+2e3 (d4c2acc0, 3, d156a7)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4eec sockfs:socktpi_close+d7 (d4c2acc0, 3, 1, 0,
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4f1c genunix:fop_close+26 (d4c2acc0, 3, 1, 0, )
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4f58 genunix:closef+56 (d38bbbe0)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4f7c genunix:closeandsetf+2e7 (3, 0)
    Jul 27 06:20:32 <omitted> genunix: [ID 353471 kern.notice] cfba4f8c genunix:close+d (3, 5c, d027b0b8, cf)
    Jul 27 06:20:32 <omitted> unix: [ID 100000 kern.notice]
    Jul 27 06:20:32 <omitted> genunix: [ID 672855 kern.notice] syncing file systems...
    Jul 27 06:21:01 <omitted> unix: [ID 836849 kern.notice]
    Jul 27 06:21:01 <omitted> ^Mpanic[cpu3]/thread=d3b0fa00:

  • Sol10 got page fault at module "unix" ....unix:die+da

    Hi Dear All
    I have met sol10 kernel page fault as following description.
    Does anybody know what's happen with it?
    Jan 2 20:14:40 unknown genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=fffffe800076f910 addr=0 occurred in module "unix" due to a NULL pointer dereference
    Jan 2 20:14:40 unknown unix: [ID 100000 kern.notice]
    Jan 2 20:14:40 unknown unix: [ID 839527 kern.notice] vold:
    Jan 2 20:14:40 unknown unix: [ID 753105 kern.notice] #pf Page fault
    Jan 2 20:14:40 unknown unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x0
    Jan 2 20:14:40 unknown unix: [ID 243837 kern.notice] pid=485, pc=0xfffffffffb820fda, sp=0xfffffe800076f9f8, eflags=0x10203
    Jan 2 20:14:40 unknown unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6f0<xmme,fxsr,pge,mce,pae,pse>
    Jan 2 20:14:40 unknown unix: [ID 354241 kern.notice] cr2: 0 cr3: 1f4f2000 cr8: c
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      rdi: 0 rsi: fffffe800076fbb0 rdx: d
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      rcx: 1 r8: fffffe80001a3c80 r9: 7
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      rax: 0 rbx: d rbp: fffffe800076fa40
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      r10: 16 r11: 0 r12: c
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      r13: ffffffff820ff608 r14: fffffe800076fbb0 r15: ffffffff81695010
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      fsb: ffffffff80000000 gsb: ffffffff80bd3800 ds: 43
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      es: 43 fs: 0 gs: 1c3
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      trp: e err: 2 rip: fffffffffb820fda
    Jan 2 20:14:40 unknown unix: [ID 592667 kern.notice]      cs: 28 rfl: 10203 rsp: fffffe800076f9f8
    Jan 2 20:14:40 unknown unix: [ID 266532 kern.notice]      ss: 0
    Jan 2 20:14:40 unknown unix: [ID 100000 kern.notice]
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076f820 unix:die+da (fffffe800076f850, 1fbadccbf)
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076f900 unix:trap+5ea ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076f910 unix:cmntrap+11b ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fa40 unix:bcopy+a ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fad0 devfs:dv_find+430 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076faf0 devfs:devfs_lookup+1f ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fb10 genunix:fop_lookup+18 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fce0 genunix:lookuppnvp+1bf ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fd50 genunix:lookuppnat+f9 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fe10 genunix:lookupnameat+e5 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fe60 genunix:cstatat_getvp+115 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fec0 genunix:cstatat64_32+49 ()
    Jan 2 20:14:40 unknown genunix: [ID 655072 kern.notice] fffffe800076fed0 genunix:stat64_32+22 ()
    Jan 2 20:14:40 unknown unix: [ID 100000 kern.notice]
    Jan 2 20:14:40 unknown genunix: [ID 672855 kern.notice] syncing file systems...
    Jan 2 20:14:40 unknown genunix: [ID 733762 kern.notice] 54
    Jan 2 20:14:41 unknown genunix: [ID 733762 kern.notice] 17
    Jan 2 20:14:42 unknown genunix: [ID 733762 kern.notice] 1
    Jan 2 20:15:03 unknown last message repeated 20 times
    Jan 2 20:15:04 unknown genunix: [ID 622722 kern.notice] done (not all i/o completed)
    Jan 2 20:15:05 unknown genunix: [ID 111219 kern.notice] dumping to /dev/dsk/c0d0s1, offset 108199936, content: kernel
    Jan 2 20:15:06 unknown genunix: [ID 409368 kern.notice] ^M100% done: 19116 pages dumped, compression ratio 3.42,
    Jan 2 20:15:06 unknown genunix: [ID 851671 kern.notice] dump succeeded
    Jan 2 20:16:23 unknown genunix: [ID 540533 kern.notice] ^MSunOS Release 5.10 Version Generic 64-bit
    Jan 2 20:16:23 unknown genunix: [ID 943906 kern.notice] Copyright 1983-2005 Sun Microsystems, Inc. All rights reserved.

    This issue could be related. Recommend you open a call with support.
    http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6882984

  • F50DBG32 caused an invalid page fault in module MSVCRT40.DLL at 0167:7967d7f0.

    HI all,
    I trying to run a multi-tabbed form built in forms 5.0 with Oracle 8.1.7 db running on a solaris m/c.
    The client m/c os is windows '98.
    but when trying to run it, i get the following error:
    F50DBG32 caused an invalid page fault in
    module MSVCRT40.DLL at 0167:7967d7f0.
    Registers:
    EAX=796aadff CS=0167 EIP=7967d7f0 EFLGS=00010286
    EBX=00aef3f4 SS=016f ESP=00aef284 EBP=00aef290
    ECX=008e56c0 DS=016f ESI=00357365 FS=586f
    EDX=0000001f ES=016f EDI=008e579c GS=0000
    Bytes at CS:EIP:
    8a 06 46 8a 27 47 38 c4 74 f2 2c 41 3c 1a 1a c9
    Stack dump:
    00aef3f4 00aef43c ffffffff 00aef2a8 617e7573 008e579c 00357365 008e56c0 008e56a8 00aef3a8 617d8bae 0101343c 008e56c0 00aef43c 00000001 00aef3f4
    . The problem is tat the same form runs fine in a Win-NT machine.
    Unfortunately, we have a mixed group of users for this form. some of them have NT and some others have Win95/98...
    Any help?
    Regards
    -Sree Ram

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

  • NIMAX caused an invalid page fault in module PDM.DLL at 0167:4a01259d

    When I closed the MAX 2.2 and get the following problem~~
    NIMAX caused an invalid page fault in
    module PDM.DLL at 0167:4a01259d.
    Registers:
    EAX=00000000 CS=0167 EIP=4a01259d EFLGS=00010246
    EBX=00761f04 SS=016f ESP=022cfe44 EBP=00000000
    ECX=007700b0 DS=016f ESI=00781a10 FS=3f87
    EDX=00000004 ES=016f EDI=00761ef4 GS=0000
    Bytes at CS:EIP:
    8b 10 ff 52 08 83 c6 04 eb c9 53 ff 15 f4 00 02
    Stack dump:
    00000000 00849070 00761ee8 00000001 4a01275a 00761ee4 00849070 00000000 4a012fed 00761ee8 4a012b06 0084a020 00000000 00000000 00000000 00760630
    Can anyone help me to solve this problem?

    Hello Ivan ,
    Thank you for your inquiry regarding problems closing MAX 2.2. It sounds like MAX crashes causing an invalid page fault in module PDM.DLL. This problem can happen when Microsoft Visual Studio is installed. The following link is a great resource when dealing with this issue.
    http://digital.ni.com/public.nsf/websearch/1F1B0B6A05772B6A86256BC1005634D3?OpenDocument
    Other resources similar to this can be found on the ni.com website by clicking the support tab at the top of the home page. Then search for �PDM.DLL� from Technical Resources at the top of the page or topics similar to this. I hope these resources help. Let me know if I can further assist you.
    Shea C.
    Applications Engineering

  • JAVA caused an invalid page fault in module KERNEL32.DLL at 016f:bff7b9a6

    Hi All,
    This problem is bugging me for last two days. Actually I am trying to embed Internet Explorer inside Java application. Everything is working fine till I dont close the application window. But just when I close the window everything goes down. I am working on win98 platform and not sure if it is this reason. The exact error message I am getting is:
    JAVA caused an invalid page fault in
    module KERNEL32.DLL at 016f:bff7b9a6.
    Registers:
    EAX=00000000 CS=016f EIP=bff7b9a6 EFLGS=00000246
    EBX=00000001 SS=0177 ESP=0c08fb7c EBP=653cfbd0
    ECX=004271ec DS=0177 ESI=653cfbd0 FS=443f
    EDX=00427310 ES=0177 EDI=0042701c GS=0000
    Bytes at CS:EIP:
    ff 76 04 e8 13 89 ff ff 5e c2 04 00 56 8b 74 24
    Stack dump:
    004272e4 653a8f88 653cfbd0 0042701c 004272e4 004271fc 00000000 653aaf7b 0042701c 0b1df32c 5f3ed308 0c08fc70 00000000 5f3e5adc 004272e4 5f3ed6d8
    Also since JVM is also crashing it is creating a log file which reads:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D0670CD
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at sun.awt.windows.WToolkit.eventLoop(Native Method)
         at sun.awt.windows.WToolkit.run(WToolkit.java:240)
         at java.lang.Thread.run(Thread.java:536)
    Dynamic libraries:
    0x7CC00000 - 0x7CC1D000      C:\WINDOWS\SYSTEM\IMAGEHLP.DLL
    Local Time = Tue May 14 18:46:45 2002
    Elapsed Time = 616
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode)
    I am not getting any clue about this error. Please help me out. :-(

    aman ghus jao bans balli bamboo lekar..

  • "Program" caused an invalid page fault in module SQORA32.DLL in 0177:02f92c

    We has an Visual FoxPro that generated an invalid page fault en module SQORA32.DLL
    We use Windows 98 SE, ODBC 9.2.0.6.5
    Server Windows 2003, Database 9.2.0.7
    any ideas...

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

  • Invalid page fault in module cvirte.dll

    I have updated two old programs using LabWindows 7.0 which were perviously created with an earlier version of LabWindows. I am having problems though updating a third program. I get an error stating...
    Characerization (the name of the program) caused an invalid page fault in the module cvirte.dll at 0167:684b77f5.
    The operating system that I am installing these program on is Windows 95.
    I'm not sure where this error is coming from but I'm assuming there might be a problem when I build with LabWindows 7.0 and install to Windows 95. But, the previous two programs updated before this one have had no problems at all. Any help is greatly appreciated.

    JuanCarlos,
    Thanks for you help. Since I have been getting this error, we did some system monitoring and noticed that when the system crashes, the CPU is running at 100%. It also crashes during debug mode as well. I have been putting in break points to specifically find a location. What we have come down to is that its writes the test information to a file, but crashes when the file is recalled within the program to process some results. As far as GPIB drivers, everything is correctly installed and since we are using old ISA slots, I have made sure there are no IRQ conflicts.
    The funny thing is...this exact program works perfectly fine on another station but crashes on this current station! We need both fully functional though.
    Is there a
    nything I should look for specifically to tell if its a GPIB problem? Anything specific for CVI problems?
    Thanks for you help!
    Paul

  • _INS5567 caused an invalid page fault in module PFMODINTL.DLL at 0167:01651

    Can someone help me with this I had to reinstall windows 98se and because of that I had to reinstall the drivers for my sound blaster pci28 sound card and that error comes up every time it trys to install the drivers for it, it happens when it gets to the 00% mark of the setup for the installation. This is the full error's details.
    _INS5576 caused an invalid page fault inmodule PFMODINTL.DLL at 067:065e0.
    Registers:EAX=005b0000 CS=067 EIP=065e0 EFLGS=0000202EBX=003037 SS=06f ESP=006bf78c EBP=006bfcb8ECX=2000690 DS=06f ESI=00000000 FS=447EDX=006bf7a8 ES=06f EDI=00000000 GS=0000Bytes at CS:EIP:8b 08 52 56 50 ff 5 40 85 c0 7c 0a 39 5c 24 44 Stack dump:006bf7dc 006bf7a4 00000000 00000000 005b0000 0980c20 00000000 0700000 006bf7d0 0044790 0054afc2 00000004 00040005 0054ad8 00440004 003037
    please if you can help me with this please do thank you.

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

  • ZFS on solaris10 panics HP Proliant server BAD TRAP page fault in kernel

    When installing Solaris 9/10 on a HP Proliant DL 380 G5
    the system resets when choosing ZFS as a root file system,
    even after CPQary3 device driver has been installed.
    The CPQary3 device driver is the latest version 2.3.0,is neccessary because of the presence of a HP Smart Array E200 Controller
    and is installed sucessfully during the installation from DVD
    When choosing UFS as a root file system, the OS installs fine.
    But when zfs is used to configure a zps pool after the installation, the system resets again
    Has anyone experienced the same problems ? knows how to solve this ?
    Solaris installs fine when choosing UFS as a root file system.
    After that, a second disk partition is created of type Other to hold a zfs pool with the following command:
    zpool create datapool c0t0d0p2
    After that the system PANICS: here is an extract from the /var/adm/messages files:
    Mar 14 16:36:49 solarisintel ^Mpanic[cpu1]/thread=fffffe800069bc60:
    Mar 14 16:36:49 solarisintel genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=fffffe800069b940 addr=238 occurred in
    module "unix" due to a NULL pointer dereference
    Mar 14 16:36:49 solarisintel unix: [ID 100000 kern.notice]
    Mar 14 16:36:49 solarisintel unix: [ID 839527 kern.notice] sched:
    Mar 14 16:36:49 solarisintel unix: [ID 753105 kern.notice] #pf Page fault
    Mar 14 16:36:49 solarisintel unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x238
    Mar 14 16:36:49 solarisintel unix: [ID 243837 kern.notice] pid=0, pc=0xfffffffffb8406fb, sp=0xfffffe800069ba38, eflags=0x10246
    Mar 14 16:36:49 solarisintel unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6f0<xmme,fxsr,pge,mce,pae,pse>
    Mar 14 16:36:49 solarisintel unix: [ID 354241 kern.notice] cr2: 238 cr3: 11ada000 cr8: c
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] rdi: 238 rsi: 4 rdx: fffffe800069bc60
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] rcx: 14 r8: 0 r9: 0
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] rax: 0 rbx: 238 rbp: fffffe800069ba60
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] r10: 0 r11: 1 r12: 100000
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] r13: 0 r14: 4 r15: ffffffffb3a61af0
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] fsb: 0 gsb: ffffffff9b2ac800 ds: 43
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] es: 43 fs: 0 gs: 1c3
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] trp: e err: 2 rip: fffffffffb8406fb
    Mar 14 16:36:49 solarisintel unix: [ID 592667 kern.notice] cs: 28 rfl: 10246 rsp: fffffe800069ba38
    Mar 14 16:36:49 solarisintel unix: [ID 266532 kern.notice] ss: 30
    Mar 14 16:36:49 solarisintel unix: [ID 100000 kern.notice]
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069b850 unix:die+da ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069b930 unix:trap+5e6 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069b940 unix:cmntrap+140 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069ba60 unix:mutex_enter+b ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069ba70 zfs:zio_buf_alloc+1d ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069baa0 zfs:zio_vdev_io_start+120 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bad0 zfs:zio_execute+7b ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069baf0 zfs:zio_nowait+1a ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bb60 zfs:vdev_probe+f0 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bba0 zfs:vdev_open+2b1 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bbc0 zfs:vdev_open_child+21 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bc40 genunix:taskq_thread+295 ()
    Mar 14 16:36:49 solarisintel genunix: [ID 655072 kern.notice] fffffe800069bc50 unix:thread_start+8 ()
    Mar 14 16:36:49 solarisintel unix: [ID 100000 kern.notice]
    Mar 14 16:36:49 solarisintel genunix: [ID 672855 kern.notice] syncing file systems...
    Mar 14 16:36:49 solarisintel genunix: [ID 904073 kern.notice] done
    Mar 14 16:36:50 solarisintel genunix: [ID 111219 kern.notice] dumping to /dev/dsk/c0t0d0s1, offset 108593152, content: kernel
    Mar 14 16:36:54 solarisintel genunix: [ID 100000 kern.notice]
    Mar 14 16:36:54 solarisintel genunix: [ID 665016 kern.notice] ^M100% done: 210699 pages dumped,
    Mar 14 16:36:54 solarisintel genunix: [ID 851671 kern.notice] dump succeeded
    Mar 14 16:38:21 solarisintel genunix: [ID 540533 kern.notice] ^MSunOS Release 5.10 Version Generic_142910-17 64-bit
    I will try again now with solaris 10 5/09 (U7)
    Chris.
    Edited by: user5485639 on 14-Mar-2011 08:42

    What do you mean after the driver is installed?
    S10/U9 has the Compaq Array3 driver pre-installed. No more adding it to the jumpstart tree or "adding a driver" necessary.
    I have setup several DL360 G3's and G4's which use the same controller.

  • IPQoS panic: BAD TRAP in module "flowacct" due to NULL pointer.

    I've recently started using IPQoS and the flowacct module to do some very simple tracking of bandwidth usage (along with one tokenmt action to meter traffic to and from one particular zone) on a host with multiple zones, running Solaris 10 x86, 118844-30. This host has been otherwise stable to date. A couple of hours ago, I got a kernel panic, apparently caused by flowacct:
    Dec 21 07:31:46 sol genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=d6e169a4 addr=8 occurred in module "flowacct" due to a NULL pointer dereference
    Dec 21 07:31:46 sol unix: [ID 100000 kern.notice]
    Dec 21 07:31:46 sol unix: [ID 839527 kern.notice] named:
    Dec 21 07:31:46 sol unix: [ID 753105 kern.notice] #pf Page fault
    Dec 21 07:31:46 sol unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x8
    Dec 21 07:31:46 sol unix: [ID 243837 kern.notice] pid=22655, pc=0xf7cad802, sp=0xd, eflags=0x10283
    Dec 21 07:31:46 sol unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 6d8<xmme,fxsr,pge,mce,pse,de>
    Dec 21 07:31:46 sol unix: [ID 936844 kern.notice] cr2: 8 cr3: ab02000
    Dec 21 07:31:46 sol unix: [ID 537610 kern.notice]      gs: 1b0 fs: d6250000 es: d6e10160 ds: fe870160
    Dec 21 07:31:46 sol unix: [ID 537610 kern.notice]      edi: d3b25938 esi: d3b26838 ebp: d6e16a18 esp: d6e169d4
    Dec 21 07:31:46 sol unix: [ID 537610 kern.notice]      ebx: db0853b4 edx: d3b26828 ecx: 0 eax: 0
    Dec 21 07:31:46 sol unix: [ID 537610 kern.notice]      trp: e err: 2 eip: f7cad802 cs: 158
    Dec 21 07:31:46 sol unix: [ID 717149 kern.notice]      efl: 10283 usp: d ss: d65fd9c0
    Dec 21 07:31:46 sol unix: [ID 100000 kern.notice]
    Dec 21 07:31:46 sol genunix: [ID 353471 kern.notice] d6e16904 unix:die+a7 (e, d6e169a4, 8, 0)
    Dec 21 07:31:46 sol genunix: [ID 353471 kern.notice] d6e16990 unix:trap+fc8 (d6e169a4, 8, 0)
    Dec 21 07:31:46 sol genunix: [ID 353471 kern.notice] d6e169a4 unix:cmntrap+83 ()
    Dec 21 07:31:46 sol genunix: [ID 353471 kern.notice] d6e16a18 flowacct:flowacct_update_flows_tbl+337 (d65fd9c0, d3b25000)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16a34 flowacct:flowacct_process+85 (d6e16a4c, d3b25000)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16a50 flowacct:flowacct_invoke_action+32 (d, dfa9cd00)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16a7c genunix:ipp_packet_process+fc (d6e16a94)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16a9c ip:ip_process+85 (2, d6e16ac8, 2)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16ac0 ip:ip_wput_attach_llhdr+92 (dccbf020, d92d61f8,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16b50 ip:ip_wput_ire+1792 (d7196ee0, dccbf020,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16ba8 ip:ip_output+70a (d7414e80, dccbf020,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16bc0 ip:ip_wput+14 (d7196ee0, dccbf020)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16bf4 unix:putnext+1b7 (d7196ee0, dccbf020)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16c40 udp:udp_wput+380 (d5aabc98, dcf78360)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16c74 unix:putnext+1b7 (d5aabc98, dcf78360)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16d54 genunix:strput+16b (d9ad6138, dcf78360,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16d90 genunix:kstrputmsg+1df (d5c24cc0, dcf12660,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16e0c sockfs:sosend_dgram+1ca (d5c32d60, dc3504d0,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16e50 sockfs:sotpi_sendmsg+3f1 (d5c32d60, d6e16ecc,)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16e90 sockfs:sendit+105 (16, d6e16ecc, d6e16)
    Dec 21 07:31:47 sol genunix: [ID 353471 kern.notice] d6e16f8c sockfs:sendmsg+131 (16, ce4d5cc4, 8000,)
    I had a single "kstat -m flowacct 90" running at the time, but the timing doesn't particularly coincide. My flowacct setting look like this:
    action {
    module flowacct
    name zone1
    params {
    global_stats TRUE
    timer 10000
    timeout 10000
    max_limit 2048
    next_action continue
    Pretty much a cut and paste from the Solaris 10 IPQoS documentation. This configuration didn't suffer any similar problems on a test host.
    I've searched various places, not had any joy. Obviously, I'm down a while on kernel patching (ironically, I've been holding off to minimise downtime for users, and now this.) But, while 118855-19 does replace some of objects in question, I see no mention of any particular fix for this problem. I'm going to go ahead with patching to 118855-19 (and whatever else smpatch recommends) within the next few days, but I've disabled IPQoS. I'm a little nervous about switching it back on on a production server. Shame.
    Anyone had any similar experiences with flowacct?
    Cheers,
    Chris.

    Good news, everyone! A repeat on a test host that's patched up to date as of last week, including kernel 118855-19. I'd tell you what smpatch thinks is missing, but "Failure: Response code was 403".
    Dec 23 09:43:14 crippen ^Mpanic[cpu0]/thread=d3275de0:
    Dec 23 09:43:14 crippen genunix: [ID 335743 kern.notice] BAD TRAP: type=e (#pf Page fault) rp=d3275924 addr=8 occurred in module "flowacct" due to a NULL pointer dereference
    Dec 23 09:43:14 crippen unix: [ID 100000 kern.notice]
    Dec 23 09:43:14 crippen unix: [ID 839527 kern.notice] sched:
    Dec 23 09:43:14 crippen unix: [ID 753105 kern.notice] #pf Page fault
    Dec 23 09:43:14 crippen unix: [ID 532287 kern.notice] Bad kernel fault at addr=0x8
    Dec 23 09:43:14 crippen unix: [ID 243837 kern.notice] pid=0, pc=0xf9a413ae, sp=0x6, eflags=0x10286
    Dec 23 09:43:14 crippen unix: [ID 211416 kern.notice] cr0: 8005003b<pg,wp,ne,et,ts,mp,pe> cr4: 698<xmme,fxsr,pge,pse,de>
    Dec 23 09:43:14 crippen unix: [ID 936844 kern.notice] cr2: 8 cr3: 4cdc000
    Dec 23 09:43:14 crippen unix: [ID 537610 kern.notice] gs: fe8801b0 fs: fe830000 es: d4890160 ds: d4890160
    Dec 23 09:43:14 crippen unix: [ID 537610 kern.notice] edi: d489b6a0 esi: d489b838 ebp: d32759a0 esp: d327595c
    Dec 23 09:43:14 crippen unix: [ID 537610 kern.notice] ebx: d66187f4 edx: d489b828 ecx: 0 eax: 0
    Dec 23 09:43:14 crippen unix: [ID 537610 kern.notice] trp: e err: 2 eip: f9a413ae cs: 158
    Dec 23 09:43:14 crippen unix: [ID 717149 kern.notice] efl: 10286 usp: 6 ss: d6d35d80
    Dec 23 09:43:14 crippen unix: [ID 100000 kern.notice]
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275884 unix:die+a7 (e, d3275924, 8, 0)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275910 unix:trap+103f (d3275924, 8, 0)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275924 unix:cmntrap+9a (fe8801b0, fe830000,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d32759a0 flowacct:flowacct_update_flows_tbl+337 (d6d35d80, d489a000)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d32759b8 flowacct:flowacct_process+85 (d32759d0, d489a000)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d32759d4 flowacct:flowacct_invoke_action+32 (6, d5441f80)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275a00 genunix:ipp_packet_process+fc (d3275a18)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275a20 ip:ip_process+85 (2, d3275a4c, 2)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275a44 ip:ip_wput_attach_llhdr+92 (d5e61fc0, d67b1ad0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275ad0 ip:ip_wput_ire+1aca (d4186c60, d5e61fc0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275b30 ip:ip_output+1715 (da1b7554, d5e61fc0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275b48 ip:ip_wput+14 (d4186c60, d5aaff80)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275b74 unix:put+164 (d4186c60, d5aaff80)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275bb0 ip:icmp_inbound+97e (d4186bd8, d5e61fc0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275c00 ip:ip_proto_input+8ae (d4186bd8, d5e61fc0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275c58 ip:ip_input+440 (da1b7554, 0, d5e61f)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275c80 ip:ip_rput+f7 (d4186bd8, d5e61fc0)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275cb0 unix:putnext+1b7 (d4186bd8, d5e61fc0)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275d40 gld:gld_recv_tagged+ed (d4188800, d5e61fc0,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275d54 gld:ri_ste_def+2603276e (d4188800, d5e61fc0)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275d88 iprb:iprb_process_recv+1d4 (d4188800)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275da0 iprb:iprb_intr+61 (d4188800, d3275ddc,)
    Dec 23 09:43:14 crippen genunix: [ID 353471 kern.notice] d3275dac gld:gld_intr+1e (d4188800, 0)
    Dec 23 09:43:14 crippen unix: [ID 100000 kern.notice]
    Dec 23 09:43:14 crippen genunix: [ID 672855 kern.notice] syncing file systems...
    Dec 23 09:43:14 crippen genunix: [ID 733762 kern.notice] 4
    Dec 23 09:43:15 crippen genunix: [ID 733762 kern.notice] 3
    Dec 23 09:43:16 crippen genunix: [ID 904073 kern.notice] done
    Dec 23 09:43:17 crippen genunix: [ID 111219 kern.notice] dumping to /dev/dsk/c0d0s1, offset 214695936, content: kernel
    Dec 23 09:43:20 crippen genunix: [ID 409368 kern.notice] ^M100% done: 22636 pages dumped, compression ratio 2.72,
    Dec 23 09:43:20 crippen genunix: [ID 851671 kern.notice] dump succeeded

  • Kernel panic with ipf and patch 125014-02?

    Hi,
    After bringing a bunch of Sparc servers running Solaris 10 up to current patch level I've been experiencing strange and unstable behavior. All servers are running with an ipfilter configuration.
    One server has been freezing on the network interface at least once every day without any syslog notice. A reboot is the only way up again.
    Now today one server (a Internet proxy server) did a kernel panic twice - never seen that before on this server.
    It seems like it was caused by the kernel module ipf. And since it has never happend before I guess it could be caused by the IP filter patch 125014-02.
    Anyone experiencing something similar and am I on the right track with suspecting this patch to be bad?
    Thanks
    Kasper
    Message from syslog:
    Feb 20 14:53:00 ceres unix: [ID 836849 kern.notice]
    Feb 20 14:53:00 ceres ^Mpanic[cpu0]/thread=2a10053dcc0:
    Feb 20 14:53:00 ceres unix: [ID 340138 kern.notice] BAD TRAP: type=31 rp=2a10053ca70 addr=18 mmu_fsr=0 occurred in module "ipf" due to a NULL pointer dereference
    Feb 20 14:53:00 ceres unix: [ID 100000 kern.notice]
    Feb 20 14:53:00 ceres unix: [ID 839527 kern.notice] sched:
    Feb 20 14:53:00 ceres unix: [ID 520581 kern.notice] trap type = 0x31
    Feb 20 14:53:00 ceres unix: [ID 381800 kern.notice] addr=0x18
    Feb 20 14:53:00 ceres unix: [ID 101969 kern.notice] pid=0, pc=0x7bb3ad30, sp=0x2a10053c311, tstate=0x80001602, context=0x0
    Feb 20 14:53:00 ceres unix: [ID 743441 kern.notice] g1-g7: 0, 0, 2621c, 1aa10, ea0a, 16, 2a10053dcc0
    Feb 20 14:53:00 ceres unix: [ID 100000 kern.notice]
    Feb 20 14:53:00 ceres genunix: [ID 723222 kern.notice] 000002a10053c790 unix:die+78 (31, 2a10053ca70, 18, 0, 2a10053c850, 1076000)
    Feb 20 14:53:00 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000001fff 0000000000000031 0000000001000000 0000000000002000
    Feb 20 14:53:00 ceres %l4-7: 000000000181a1d8 000000000181a000 0000000000000000 00000000e85e2018
    Feb 20 14:53:00 ceres genunix: [ID 723222 kern.notice] 000002a10053c870 unix:trap+9d4 (2a10053ca70, 10000, 1fff, 5, 0, 1)
    Feb 20 14:53:00 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000000 00000000018364c0 0000000000000031 0000000000000000
    Feb 20 14:53:00 ceres %l4-7: ffffffffffffe000 0000000000f250af 0000000000000001 0000000000000005
    Feb 20 14:53:01 ceres genunix: [ID 723222 kern.notice] 000002a10053c9c0 unix:ktl0+48 (b80c, c006, b7f2, 3511, 1a, 82e1)
    Feb 20 14:53:01 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000003 0000000000001400 0000000080001602 000000000101aa04
    Feb 20 14:53:01 ceres %l4-7: 0000000000000008 00000600009a6e04 0000000000000006 000002a10053ca70
    Feb 20 14:53:01 ceres genunix: [ID 562518 kern.notice] 000002a10053cb10 6 (0, 600009a6df0, 4, 600009a6e04, f332, 0)
    Feb 20 14:53:01 ceres genunix: [ID 179002 kern.notice] %l0-3: 00000600009a6e14 0000000000000014 0000000000000006 0000000000000014
    Feb 20 14:53:01 ceres %l4-7: 0000000000000028 0000000000000005 0000000000000045 0000000000000000
    Feb 20 14:53:01 ceres genunix: [ID 723222 kern.notice] 000002a10053cbc0 ipf:appr_check+32c (2a10053cff8, 60002a0ef00, 0, 2a10053d000, 600010ad7b0, 0)
    Feb 20 14:53:01 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000000 00000600009a6df0 00000600009a6e04 0000000000000000
    Feb 20 14:53:01 ceres %l4-7: 000000000000ffff 00000000701734b8 000000000000ffff 000000000000fc00
    Feb 20 14:53:01 ceres genunix: [ID 723222 kern.notice] 000002a10053cc70 ipf:fr_natout+248 (2a10053cff8, 60002a0ef00, 1, 600009a6e14, a85a, fffff4e3)
    Feb 20 14:53:01 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000000 000006000115b500 0000060002a0f008 00000600009a6df0
    Feb 20 14:53:01 ceres %l4-7: 0000000082e13511 0000000000000001 00000000701734b8 0000000000000001
    Feb 20 14:53:01 ceres genunix: [ID 723222 kern.notice] 000002a10053cd20 ipf:fr_checknatout+4a8 (2a10053cff8, 6000115b500, 2a10053d000, 6000106bdf0, 70173388, fc)
    Feb 20 14:53:02 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000080000000 0000000000040007 ffffffff00000000 0000000100000000
    Feb 20 14:53:02 ceres %l4-7: 0000000082e13511 0000060002a0ef00 0000000000000000 0000000000000001
    Feb 20 14:53:02 ceres genunix: [ID 723222 kern.notice] 000002a10053ce20 ipf:fr_fastroute+278 (600036e3000, 2a10053d188, 2a10053cff8, 0, 4, 6000106bdf0)
    Feb 20 14:53:02 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000000 0000000000000000 000006000106bdf0 0000000000000001
    Feb 20 14:53:02 ceres %l4-7: 00000600036e3040 000002a10053cfa8 00000600009a6df0 00000600009a6df0
    Feb 20 14:53:02 ceres genunix: [ID 723222 kern.notice] 000002a10053cef0 ipf:fr_send_ip+168 (2a10053d258, 600036e3040, 2a10053d188, 4000, ff, 600009a6df0)
    Feb 20 14:53:02 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000040000000 0000000000000000 0000000000000000 000000000000000e
    Feb 20 14:53:02 ceres %l4-7: 0000060000b969c0 000002a10053d410 000006000106beac 0000060000aee2a0
    Feb 20 14:53:02 ceres genunix: [ID 723222 kern.notice] 000002a10053d0d0 ipf:fr_send_reset+258 (2a10053d258, c006ea0a, 600009a6e04, 600009a6df0, 0, 82e13511)
    Feb 20 14:53:02 ceres genunix: [ID 179002 kern.notice] %l0-3: 000002a10053d260 0000000000000000 00000600009a7de0 0000000000000028
    Feb 20 14:53:02 ceres %l4-7: 0000000000000006 0000000000000045 0000000000000040 0000000000000040
    Feb 20 14:53:03 ceres genunix: [ID 723222 kern.notice] 000002a10053d190 ipf:fr_check+59c (3000, 0, 0, 701720d0, 600022d5900, 2a10053d518)
    Feb 20 14:53:03 ceres genunix: [ID 179002 kern.notice] %l0-3: 000002a10053d258 0000000000000001 0000000000000000 0000000000000000
    Feb 20 14:53:03 ceres %l4-7: 000002a10053d254 0000000000000000 0000000040009101 0000000000080000
    Feb 20 14:53:03 ceres genunix: [ID 723222 kern.notice] 000002a10053d330 pfil:pfil_precheck+6c8 (0, 1, 14, 6000106bdf0, 0, 0)
    Feb 20 14:53:03 ceres genunix: [ID 179002 kern.notice] %l0-3: 000002a10053d410 00000600009a7e08 0000060001109900 000006000311b1c0
    Feb 20 14:53:03 ceres %l4-7: 00000000700cfef0 0000000000000000 00000600009a7de0 0000000000000800
    Feb 20 14:53:03 ceres genunix: [ID 723222 kern.notice] 000002a10053d460 pfil:pfilmodrput+2c0 (60000aee2a0, 6000311b1c0, 2a100538000, 41, 6000106bdf0, 0)
    Feb 20 14:53:03 ceres genunix: [ID 179002 kern.notice] %l0-3: 00000000010076e4 0000000000000006 0000004480001600 00000000000007c8
    Feb 20 14:53:03 ceres %l4-7: 00000300000b3c80 0000000023800000 0000000000000042 0000000000000043
    Feb 20 14:53:03 ceres genunix: [ID 723222 kern.notice] 000002a10053d520 unix:putnext+218 (60000aee490, 60000aee2a0, 6000311b1c0, 100, 60000aee530, 0)
    Feb 20 14:53:03 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000000 0000000000000000 0000000000000000 00000000000055d0
    Feb 20 14:53:03 ceres %l4-7: 000000000000010d 000000007016ba40 000000007bb24418 fffffd5effac8000
    Feb 20 14:53:04 ceres genunix: [ID 723222 kern.notice] 000002a10053d5d0 dld:dld_str_rx_fastpath+24 (60001043e08, 0, 6000311b1c0, e, 0, 0)
    Feb 20 14:53:04 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000060001069f10 0000000000000006 000006000311b1c0 0000000000000000
    Feb 20 14:53:04 ceres %l4-7: 0000000000000003 0000000000000003 0000060001069f54 0000000000001e71
    Feb 20 14:53:04 ceres genunix: [ID 723222 kern.notice] 000002a10053d680 dls:i_dls_link_ether_rx+1c8 (0, 0, 133a850, 2a10053d740, 2a10053d748, 2a10053d730)
    Feb 20 14:53:04 ceres genunix: [ID 179002 kern.notice] %l0-3: 000002a10053d738 0000000000000000 0000000000000000 00000600008c4940
    Feb 20 14:53:04 ceres %l4-7: 0000060001061f80 0000060001061fa8 0000000000000001 0000000000000000
    Feb 20 14:53:04 ceres genunix: [ID 723222 kern.notice] 000002a10053d770 mac:mac_rx+58 (6000105fce8, 0, 6000311b1c0, 133c5fc, 0, 6000105fa78)
    Feb 20 14:53:04 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000000000005 00000600009a7d40 0000000000000002 0000000000000002
    Feb 20 14:53:04 ceres %l4-7: 0000000000000001 0000000000000000 0000060000ac9308 0000000000000000
    Feb 20 14:53:04 ceres genunix: [ID 723222 kern.notice] 000002a10053d820 bge:bge_receive+350 (60000e2fe10, 6000098f000, 0, 6000098fb40, 6000311b1c0, 6000311b1c0)
    Feb 20 14:53:04 ceres genunix: [ID 179002 kern.notice] %l0-3: 00000300016c6800 00000600009908e0 000006000098f840 000006000311b1c0
    Feb 20 14:53:04 ceres %l4-7: 00000300016db012 000000000000012e 0000000000000200 0000000000000040
    Feb 20 14:53:05 ceres genunix: [ID 723222 kern.notice] 000002a10053d970 bge:bge_intr+108 (6000098f000, 18e0, 50000002a000000, 1800, 600009908e0, 1a20)
    Feb 20 14:53:05 ceres genunix: [ID 179002 kern.notice] %l0-3: 0000000100000000 0000000000000000 0000000000000400 0000000000000002
    Feb 20 14:53:05 ceres %l4-7: 0000000000001a20 0000000000006808 0000000000006800 00000300016db000
    Feb 20 14:53:05 ceres genunix: [ID 723222 kern.notice] 000002a10053da20 pcisch:pci_intr_wrapper+b4 (300000c21c8, 60000b0b600, 0, 0, 0, 600010172d0)
    Feb 20 14:53:05 ceres genunix: [ID 179002 kern.notice] %l0-3: 00000000018d3bb0 00000600009cc580 00000000018d3bf8 0000000000f26e20
    Feb 20 14:53:05 ceres %l4-7: 00000300003e0970 000006000098f000 0000000000000000 000000007bb19110
    Feb 20 14:53:05 ceres unix: [ID 100000 kern.notice]
    Feb 20 14:53:05 ceres genunix: [ID 672855 kern.notice] syncing file systems...
    Feb 20 14:53:05 ceres genunix: [ID 433738 kern.notice] [1]
    Feb 20 14:53:05 ceres genunix: [ID 733762 kern.notice] 35
    Feb 20 14:53:07 ceres genunix: [ID 433738 kern.notice] [1]
    Feb 20 14:53:07 ceres genunix: [ID 733762 kern.notice] 28
    Feb 20 14:53:08 ceres genunix: [ID 433738 kern.notice] [1]
    Feb 20 14:53:29 ceres last message repeated 20 times
    Feb 20 14:53:30 ceres genunix: [ID 622722 kern.notice] done (not all i/o completed)
    Feb 20 14:53:33 ceres genunix: [ID 111219 kern.notice] dumping to /dev/dsk/c1t0d0s0, offset 430374912, content: kernel
    Feb 20 14:53:40 ceres genunix: [ID 409368 kern.notice] ^M100% done: 20967 pages dumped, compression ratio 4.92,
    Feb 20 14:53:40 ceres genunix: [ID 851671 kern.notice] dump succeeded

    me too - I'm still waiting for a patch:
    Case# 65340046 - panic due to IPF firewall
    From: Fletcher Cocquyt
    To: <[email protected]>
    Date: Feb 12 2007 - 10:09am
    We had another panic & reboot, so we will be forced to disable IPF firewall
    (is svcadm disable sufficient, or do I need to do more to prevent the
    panics?)
    How can I be notified when there is a proper Sun patch to fix this?
    thanks
    -----Original Message-----
    From: Fletcher Cocquyt
    Sent: Tuesday, February 06, 2007 8:08 AM
    To: '[email protected]'
    Subject: RE: Case# 65340046
    Is it IPF firewall related?
    Will disabling ipf (until there is a fix) avoid this bug ?
    Thanks
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Tuesday, February 06, 2007 8:01 AM
    To: fcocquyt@
    Subject: Case# 65340046
    Fletcher,
    This system panic'd due to bug 6490522: S10 System panic bad mutex in
    ipf:fr_derefrule. Unfortunately at this time we do not have an offical fix
    for
    this bug, however we do have a test binary built. Please let me know if you
    would like to test this binary on this system.
    Thanks.
    Christine Perrigo
    Kernel Technical Support Engineer
    Sun Services
    http://www.sun.com/service/online
    E-mail: [email protected]
    1-800-USA4-SUN (option 1, option 1, then case #)

  • Invalid page fault error in module kernel32.dll

    I'm a VB programmer attempting to learn java. I downloaded the j2se 1.40 sdk (At present I am running Windows 98) and installed it. The download and installation process was smooth. However when I attempt to launch the program, I get the illegal operation dialog with details as follows:
    SPLASH caused an invalid page fault in
    module KERNEL32.DLL at 0177:bff766bc.
    Registers:
    EAX=0055003c CS=0177 EIP=bff766bc EFLGS=00010202
    EBX=00000000 SS=017f ESP=00550000 EBP=00550010
    ECX=00000000 DS=017f ESI=00550108 FS=305f
    EDX=bff76855 ES=017f EDI=817b5b68 GS=0000
    Bytes at CS:EIP:
    e8 13 ad ff ff 8b 55 08 8f 82 b0 00 00 00 8b 4d
    Stack dump:
    002a0014 00000000 0055003c 0055003c 00550024 bff766fd 0055003c 005501b4 00000000 005501b4 bff883ed 0055003c bff79060 00000000 0064ffec ffffffff
    I suspect this has something to do with the OS. Can anyone shed some light on this for me.
    Thanks
    Nancy

    What command did you use to launch the program?
    The readme file explains how to set the path and classpath; if you've done that, try this command in a DOS window:
    java -version
    C:\>java -version
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)
    Good luck,
    Mike Rainville

  • Invaild Page Fault: what's the cause

    Hi!
    Can someone tell me what causes this message during program execution?
    JAVA caused an invalid page fault in
    module KERNEL32.DLL at 0167:bff7b997.
    Registers:
    EAX=00000000 CS=0167 EIP=bff7b997 EFLGS=00000246
    EBX=064c3754 SS=016f ESP=050dfc64 EBP=00000000
    ECX=00000000 DS=016f ESI=064c3754 FS=3587
    EDX=060c0294 ES=016f EDI=00000000 GS=0000
    Bytes at CS:EIP:
    ff 76 04 e8 26 89 ff ff 5e c2 04 00 56 8b 74 24
    Stack dump:
    064c3744 4123c044 064c3754 00000000 060c0294 050dfca0 060c0934 1f7025d1 064c3744 00000000 018c0000 007b1ec0 00679574 00000000 00000000 050dfcf8
    The program is a db application, i manage to save a few records (exactly 3 records) before that message appears. The program doesn't throw exceptions but that illegal operation box appears.
    And can someone tell me what to do?
    Mary.

    Can you post the code and the kind of data you are using? That can help in diagnosing the problem.
    You say that the program can insert 3 records. That means that the program is semantically and syntactically correct.
    Also, if such error occurs, its a good idea to run the application with different sets of data and determine whether same error occurs for those different sets of data. There can be some problem in the type of data that your application is trying to insert.

Maybe you are looking for

  • Mount NTFS volumes in Solaris 10 update 8

    Hi All, I have a requirement to mount a windows share to two different Solaris 10 update 8 hosts . The below are the steps that i have done for the same but it got failed . Please suggest a procedure and solution . 1 .  Created the network share  nam

  • Report not showing correct results

    I am new to SSRS.  Using SQL 2008, Visual Studio 2010 shell. I have a stored procedure that when I execute it through SSMS, it returns the correct results.  However, when my report runs through SSRS (using the same stored procedure).  I get inconsist

  • Access SAP Tables from Java Program

    Hi All, We have a requirement to integrate attendance portal(which is done in java) with SAP. Our problem is how to access SAP tables from a Java program? Database is Sybase. Please suggest us a good solution. Thanks in advance...

  • Storing users workspace information in XML

    Hi, I have to store users workspace information in XML file so that user can retreive it later. The information that needed to be stored can be any thing. This XML file will be stores in oracle back end. Well i am not totally well aware of XML advant

  • Application Locks up when trying to do a JDBC Delete

    Hello, We are using Weblogic 8.1 and a JDBC DELETE statement is locking the application up for 30 to 40 minutes. It takes roughly 30 minutes to delete 50k companies. When the same statement is called on the SQL Server database it takes 5-10 seconds.