View Single Post
  #6   (View Single Post)  
Old 10th June 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,984
Default

The dmesg buffer in RAM wraps when it is full. Your dmesg in RAM is flooded with this kernel message:
Code:
arpresolve: 192.168.1.1: route without link local address
You have a route in your routing table for this address but no defined address to reach it. And then, below these errors, we can see:
Code:
wpi0: fatal firmware error firmware error log (count=1):
   error type = "SYSASSERT" (0x00000005)
   error data      = 0x00000074
   branch link     = 0x000008B600000274
   interrupt link  = 0x0000031C00003564
   time            = 2192893784
 driver status:
   tx ring  0: qid=0  cur=4   queued=0
   tx ring  1: qid=1  cur=0   queued=0
   tx ring  2: qid=2  cur=0   queued=0  
   tx ring  3: qid=3  cur=0   queued=0  
   tx ring  4: qid=4  cur=21  queued=0 
   tx ring  5: qid=5  cur=0   queued=0 
   rx ring: cur=57   802.11 state 4
Your wpi(4) firmware fails. This is either a firmware or a hardware problem. It is impossible to determine that from here.

We don't know which release of wpi(4) firmware you have installed, nor if it is in sync with the wpi(4) driver you are using.

For a complete dmesg, which might help us to determine this, you might look in /var/run/dmesg.boot, as that may have more information than the wrapped buffer in RAM.

Your ifconfig(8) output appears to have been taken after you restarted the failed NIC. The NIC is reported "UP", with an active Ethernet link, and with an assigned IP address.

There is no netstat(8) output reported.

Last edited by jggimi; 10th June 2013 at 06:07 PM. Reason: clarity of code block for firmware failure
Reply With Quote