BDB vxworks 6.6 kernel port error

Hello,
I have Berkeley DB 4.7.25 compiled in kernel. When I try the example in txn_guide.c, I have got the following error:
Error opening environment: S_dosFsLib_FILE_NOT_FOUND
I'm all done.
value = 10 = 0xa
I traced the source code it fails in __rep_reset_init() when it tries to open file __db.rep.init. How can I fix this? Thanks.
Allan
#ifdef HAVE_REPLICATION
          if ((ret = __rep_reset_init(env)) != 0 ||
          (ret = __env_remove_env(env)) != 0 ||
#else
Have I missed anything? Thanks.
/* File: txn_guide.c */
/* We assume an ANSI-compatible compiler */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <db.h>
#ifdef _WIN32
#include <windows.h>
#define     PATHD '\\'
extern int getopt(int, char * const *, const char *);
extern char *optarg;
typedef HANDLE thread_t;
#define     thread_create(thrp, attr, func, arg) \
(((*(thrp) = CreateThread(NULL, 0, \
     (LPTHREAD_START_ROUTINE)(func), (arg), 0, NULL)) == NULL) ? -1 : 0)
#define     thread_join(thr, statusp) \
((WaitForSingleObject((thr), INFINITE) == WAIT_OBJECT_0) && \
GetExitCodeThread((thr), (LPDWORD)(statusp)) ? 0 : -1)
typedef HANDLE mutex_t;
#define     mutex_init(m, attr) \
(((*(m) = CreateMutex(NULL, FALSE, NULL)) != NULL) ? 0 : -1)
#define     mutex_lock(m) \
((WaitForSingleObject(*(m), INFINITE) == WAIT_OBJECT_0) ? 0 : -1)
#define     mutex_unlock(m) (ReleaseMutex(*(m)) ? 0 : -1)
#else
#include <pthread.h>
#include <unistd.h>
#define     PATHD '/'
typedef pthread_t thread_t;
#define     thread_create(thrp, attr, func, arg) \
pthread_create((thrp), (attr), (func), (arg))
#define     thread_join(thr, statusp) pthread_join((thr), (statusp))
typedef pthread_mutex_t mutex_t;
#define     mutex_init(m, attr) pthread_mutex_init((m), (attr))
#define     mutex_lock(m) pthread_mutex_lock(m)
#define     mutex_unlock(m) pthread_mutex_unlock(m)
#endif
/* Run 5 writers threads at a time. */
#define     NUMWRITERS 5
* Printing of a thread_t is implementation-specific, so we
* create our own thread IDs for reporting purposes.
int global_thread_num;
mutex_t thread_num_lock;
/* Forward declarations */
int count_records(DB *, DB_TXN *);
int open_db(DB **, const char *, const char *, DB_ENV *, u_int32_t);
int usage(void);
void writer_thread(void );
/* Usage function */
int
usage()
fprintf(stderr, " [-h <database_home_directory>]\n");
return (EXIT_FAILURE);
#if 0
int
main(int argc, char *argv[])
/* Initialize our handles */
DB *dbp = NULL;
DB_ENV *envp = NULL;
thread_t writer_threads[NUMWRITERS];
int ch, i, ret, ret_t;
u_int32_t env_flags;
char *db_home_dir;
/* Application name */
const char *prog_name = "txn_guide";
/* Database file name */
const char *file_name = "mydb.db";
/* Parse the command line arguments */
#ifdef _WIN32
db_home_dir = ".\\";
#else
db_home_dir = "./";
#endif
while ((ch = getopt(argc, argv, "h:")) != EOF)
     switch (ch) {
     case 'h':
     db_home_dir = optarg;
     break;
     case '?':
     default:
     return (usage());
#endif
void myDbTest(char *home)
     /* Initialize our handles */
     DB *dbp = NULL;
     DB_ENV *envp = NULL;
     thread_t writer_threads[NUMWRITERS];
     int ch, i, ret, ret_t;
     u_int32_t env_flags;
     char *db_home_dir;
     /* Application name */
     const char *prog_name = "txn_guide";
     /* Database file name */
     const char *file_name = "mydb.db";
     /* Parse the command line arguments */
     #ifdef _WIN32
     db_home_dir = ".\\";
     #else
     db_home_dir = "./";
     #endif     
db_home_dir = home;
/* Create the environment */
ret = db_env_create(&envp, 0);
if (ret != 0) {
     fprintf(stderr, "Error creating environment handle: %s\n",
     db_strerror(ret));
     goto err;
* Indicate that we want db to perform lock detection internally.
* Also indicate that the transaction with the fewest number of
* write locks will receive the deadlock notification in
* the event of a deadlock.
ret = envp->set_lk_detect(envp, DB_LOCK_MINWRITE);
if (ret != 0) {
     fprintf(stderr, "Error setting lock detect: %s\n",
     db_strerror(ret));
     goto err;
envp->set_shm_key(envp, 10);
env_flags =
DB_CREATE | /* Create the environment if it does not exist */
DB_RECOVER | /* Run normal recovery. */
DB_INIT_LOCK | /* Initialize the locking subsystem */
DB_INIT_LOG | /* Initialize the logging subsystem */
DB_INIT_TXN | /* Initialize the transactional subsystem. This
               * also turns on logging. */
DB_INIT_MPOOL | /* Initialize the memory pool (in-memory cache) */
DB_THREAD; /* Cause the environment to be free-threaded */
/* Now actually open the environment */
ret = envp->open(envp, db_home_dir, env_flags, 0);
if (ret != 0) {
     fprintf(stderr, "Error opening environment: %s\n",
     db_strerror(ret));
     goto err;
* If we had utility threads (for running checkpoints or
* deadlock detection, for example) we would spawn those
* here. However, for a simple example such as this,
* that is not required.
/* Open the database */
ret = open_db(&dbp, prog_name, file_name,
envp, DB_DUPSORT);
if (ret != 0)
     goto err;
/* Initialize a mutex. Used to help provide thread ids. */
(void)mutex_init(&thread_num_lock, NULL);
/* Start the writer threads. */
for (i = 0; i < NUMWRITERS; i++)
     (void)thread_create(
     &writer_threads, NULL, writer_thread, (void *)dbp);
/* Join the writers */
for (i = 0; i < NUMWRITERS; i++)
     (void)thread_join(writer_threads[i], NULL);
err:
/* Close our database handle, if it was opened. */
if (dbp != NULL) {
     ret_t = dbp->close(dbp, 0);
     if (ret_t != 0) {
     fprintf(stderr, "%s database close failed: %s\n",
          file_name, db_strerror(ret_t));
     ret = ret_t;
/* Close our environment, if it was opened. */
if (envp != NULL) {
     ret_t = envp->close(envp, 0);
     if (ret_t != 0) {
     fprintf(stderr, "environment close failed: %s\n",
          db_strerror(ret_t));
          ret = ret_t;
/* Final status message and return. */
printf("I'm all done.\n");
return (ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
* A function that performs a series of writes to a
* Berkeley DB database. The information written
* to the database is largely nonsensical, but the
* mechanism of transactional commit/abort and
* deadlock detection is illustrated here.
void *
writer_thread(void *args)
static char *key_strings[] = {
     "key 1", "key 2", "key 3", "key 4", "key 5",
     "key 6", "key 7", "key 8", "key 9", "key 10"
DB *dbp;
DB_ENV *envp;
DBT key, value;
DB_TXN *txn;
int i, j, payload, ret, thread_num;
int retry_count, max_retries = 20; /* Max retry on a deadlock */
dbp = (DB *)args;
envp = dbp->get_env(dbp);
/* Get the thread number */
(void)mutex_lock(&thread_num_lock);
global_thread_num++;
thread_num = global_thread_num;
(void)mutex_unlock(&thread_num_lock);
/* Initialize the random number generator */
srand(thread_num);
/* Write 50 times and then quit */
for (i = 0; i < 50; i++) {
     retry_count = 0; /* Used for deadlock retries */
     * Some think it is bad form to loop with a goto statement, but
     * we do it anyway because it is the simplest and clearest way
     * to achieve our abort/retry operation.
retry:
     /* Begin our transaction. We group multiple writes in
     * this thread under a single transaction so as to
     * (1) show that you can atomically perform multiple writes
     * at a time, and (2) to increase the chances of a
     * deadlock occurring so that we can observe our
     * deadlock detection at work.
     * Normally we would want to avoid the potential for deadlocks,
     * so for this workload the correct thing would be to perform our
     * puts with autocommit. But that would excessively simplify our
     * example, so we do the "wrong" thing here instead.
     ret = envp->txn_begin(envp, NULL, &txn, 0);
     if (ret != 0) {
     envp->err(envp, ret, "txn_begin failed");
     return ((void *)EXIT_FAILURE);
     for (j = 0; j < 10; j++) {
     /* Set up our key and values DBTs */
     memset(&key, 0, sizeof(DBT));
     key.data = key_strings[j];
     key.size = (u_int32_t)strlen(key_strings[j]) + 1;
     memset(&value, 0, sizeof(DBT));
     payload = rand() + i;
     value.data = &payload;
     value.size = sizeof(int);
     /* Perform the database put. */
     switch (ret = dbp->put(dbp, txn, &key, &value, 0)) {
          case 0:
          break;
          * Our database is configured for sorted duplicates,
          * so there is a potential for a KEYEXIST error return.
          * If we get one, simply ignore it and continue on.
          * Note that you will see KEYEXIST errors only after you
          * have run this program at least once.
          case DB_KEYEXIST:
          printf("Got keyexists.\n");
          break;
          * Here's where we perform deadlock detection. If
          * DB_LOCK_DEADLOCK is returned by the put operation,
          * then this thread has been chosen to break a deadlock.
          * It must abort its operation, and optionally retry the
          * put.
          case DB_LOCK_DEADLOCK:
          * First thing that we MUST do is abort the
          * transaction.
          (void)txn->abort(txn);
          * Now we decide if we want to retry the operation.
          * If we have retried less than max_retries,
          * increment the retry count and goto retry.
          if (retry_count < max_retries) {
               printf("Writer %i: Got DB_LOCK_DEADLOCK.\n",
               thread_num);
               printf("Writer %i: Retrying write operation.\n",
               thread_num);
               retry_count++;
               goto retry;
          * Otherwise, just give up.
          printf("Writer %i: ", thread_num);
          printf("Got DB_LOCK_DEADLOCK and out of retries.\n");
          printf("Writer %i: Giving up.\n", thread_num);
          return ((void *)EXIT_FAILURE);
          * If a generic error occurs, we simply abort the
          * transaction and exit the thread completely.
          default:
          envp->err(envp, ret, "db put failed");
          ret = txn->abort(txn);
          if (ret != 0)
               envp->err(envp, ret,
               "txn abort failed");
          return ((void *)EXIT_FAILURE);
     } /** End case statement **/
     } /** End for loop **/
     * print the number of records found in the database.
     * See count_records() for usage information.
     printf("Thread %i. Record count: %i\n", thread_num,
     count_records(dbp, NULL));
     * If all goes well, we can commit the transaction and
     * exit the thread.
     ret = txn->commit(txn, 0);
     if (ret != 0) {
     envp->err(envp, ret, "txn commit failed");
     return ((void *)EXIT_FAILURE);
return ((void *)EXIT_SUCCESS);
* This simply counts the number of records contained in the
* database and returns the result. You can use this function
* in three ways:
* First call it with an active txn handle.
* Secondly, configure the cursor for uncommitted reads (this
* is what the example currently does).
* Third, call count_records AFTER the writer has committed
* its transaction.
* If you do none of these things, the writer thread will
* self-deadlock.
* Note that this function exists only for illustrative purposes.
* A more straight-forward way to count the number of records in
* a database is to use DB->stat() or DB->stat_print().
int
count_records(DB dbp, DB_TXN txn)
DBT key, value;
DBC *cursorp;
int count, ret;
cursorp = NULL;
count = 0;
/* Get the cursor */
ret = dbp->cursor(dbp, txn, &cursorp,
     DB_READ_UNCOMMITTED);
if (ret != 0) {
     dbp->err(dbp, ret,
     "count_records: cursor open failed.");
     goto cursor_err;
/* Get the key DBT used for the database read */
memset(&key, 0, sizeof(DBT));
memset(&value, 0, sizeof(DBT));
do {
     ret = cursorp->get(cursorp, &key, &value, DB_NEXT);
     switch (ret) {
     case 0:
          count++;
          break;
     case DB_NOTFOUND:
          break;
     default:
          dbp->err(dbp, ret,
          "Count records unspecified error");
          goto cursor_err;
} while (ret == 0);
cursor_err:
if (cursorp != NULL) {
     ret = cursorp->close(cursorp);
     if (ret != 0) {
     dbp->err(dbp, ret,
          "count_records: cursor close failed.");
return (count);
/* Open a Berkeley DB database */
int
open_db(DB **dbpp, const char progname, const char file_name,
DB_ENV *envp, u_int32_t extra_flags)
int ret;
u_int32_t open_flags;
DB *dbp;
/* Initialize the DB handle */
ret = db_create(&dbp, envp, 0);
if (ret != 0) {
     fprintf(stderr, "%s: %s\n", progname,
          db_strerror(ret));
     return (EXIT_FAILURE);
/* Point to the memory malloc'd by db_create() */
*dbpp = dbp;
if (extra_flags != 0) {
     ret = dbp->set_flags(dbp, extra_flags);
     if (ret != 0) {
     dbp->err(dbp, ret,
          "open_db: Attempt to set extra flags failed.");
     return (EXIT_FAILURE);
/* Now open the database */
open_flags = DB_CREATE | /* Allow database creation */
          DB_READ_UNCOMMITTED | /* Allow dirty reads */
          DB_AUTO_COMMIT; /* Allow autocommit */
ret = dbp->open(dbp, /* Pointer to the database */
          NULL, /* Txn pointer */
          file_name, /* File name */
          NULL, /* Logical db name */
          DB_BTREE, /* Database type (using btree) */
          open_flags, /* Open flags */
          0); /* File mode. Using defaults */
if (ret != 0) {
     dbp->err(dbp, ret, "Database '%s' open failed",
     file_name);
     return (EXIT_FAILURE);
return (EXIT_SUCCESS);

More information: After I create the DB, DB put works fine. The db_stat is OK.
After reboot the processor, db_stat gives error. After running db_recover, it gives errors.
Before reboot:
-> ls
CfgDbEr.log
__db.001
log.0000000001
OpvCfg.db
value = 0 = 0x0
-> db_stat "-h /bk1/db -d OpvCfg.db"
THU AUG 14 18:12:23 2008 Local time
53162 Btree magic number
9 Btree version number
Big-endian Byte order
Flags
2 Minimum keys per-page
4096 Underlying database page size
1007 Overflow key/data size
1 Number of levels in the tree
1 Number of unique keys in the tree
1 Number of data items in the tree
0 Number of tree internal pages
0 Number of bytes free in tree internal pages (0% ff)
1 Number of tree leaf pages
4058 Number of bytes free in tree leaf pages (0% ff)
0 Number of tree duplicate pages
0 Number of bytes free in tree duplicate pages (0% ff)
0 Number of tree overflow pages
0 Number of bytes free in tree overflow pages (0% ff)
0 Number of empty pages
0 Number of pages on the free list
value = 0 = 0x0
After reboot, it points out error:segment /bk1/db/__db.001 does not exist
-> db_stat "-h /bk1/db -d OpvCfg.db"
db_stat: segment /bk1/db/__db.001 does not exist
THU JAN 01 00:01:32 1970 Local time
53162 Btree magic number
9 Btree version number
Big-endian Byte order
Flags
2 Minimum keys per-page
4096 Underlying database page size
1007 Overflow key/data size
1 Number of levels in the tree
1 Number of unique keys in the tree
1 Number of data items in the tree
0 Number of tree internal pages
0 Number of bytes free in tree internal pages (0% ff)
1 Number of tree leaf pages
4058 Number of bytes free in tree leaf pages (0% ff)
0 Number of tree duplicate pages
0 Number of bytes free in tree duplicate pages (0% ff)
0 Number of tree overflow pages
0 Number of bytes free in tree overflow pages (0% ff)
0 Number of empty pages
0 Number of pages on the free list
value = 0 = 0x0
The result of running db_recover:
db_recover "-c -h /bk1/db"db_recover: segment /bk1/db/__db.001 does not exist
db_recover: /bk1/db/log.0000000002: log file unreadable: S_dosFsLib_FILE_NOT_FOU
ND
db_recover: PANIC: S_dosFsLib_FILE_NOT_FOUND
db_recover: PANIC: fatal region error detected; run recovery
db_recover: dbenv->close: DB_RUNRECOVERY: Fatal error, run database recovery
value = 1 = 0x1

Similar Messages

  • Multiple kernel panic errors after upgrading to snow leopard 10.6.8 on my MacBook Pro.

    After upgrading to 10.6.8, I almost immediately began experiencing multiple random kernel panic errors.  I reinstalled the operating system that came with my notebook from the cd (10.6?) and the problem went away.  I upgraded again to 10.6.8 and again began experiencing the same error.  I have since gone back and installed the operating syatem from the cd and then upgraded to 10.6.7.  I have not had a single kernel panic error since, but I would like to upgrade to 10.6.8 so that I can install Lion when it is avaialable.  Any thoughts as to how I can do this without experiencing all of the accompanying kernel panic errors?

    Thank you.  The log is below:
    Anonymous UUID:                    CC4821C8-35CD-469C-BE4C-98F1DE35B903
    Sun Jun 26 21:18:00 2011
    Machine-check capabilities (cpu 3) 0x0000000000000c09:
    family: 6 model: 37 stepping: 2 microcode: 9
    Intel(R) Core(TM) i5 CPU       M 540  @ 2.53GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000004:
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000800 invalid
    IA32_MC1_STATUS(0x405): 0x0000000000000000 invalid
    IA32_MC2_STATUS(0x409): 0xb200000000020005 valid
      MCA error code:            0x0005
      Model specific error code: 0x0002
      Other information:         0x00000000
      Threshold-based status:    No tracking
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0000000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0000000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0000000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0000000000000000 invalid
    panic(cpu 3 caller 0x2aaf41): Machine Check at 0x002b1eb9, thread:0x85833d4, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x02282868, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x000100de, EBX: 0x00000630, ECX: 0x00000000, EDX: 0x7fffffff
    ESP: 0x5c82bd28, EBP: 0x5c82bd28, ESI: 0x00000000, EDI: 0x5501e0a8
    EFL: 0x00000002, EIP: 0x002b1eb9
    Backtrace (CPU 3), Frame : Return Address (4 potential args on stack)
    0x550b8fb8 : 0x21b837 (0x5dd7fc 0x550b8fec 0x223ce1 0x0)
    0x550b9008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x2b1eb9 0x85833d4)
    0x550b90f8 : 0x2a29f2 (0x1 0x3b40c858 0xfffd9085 0x83077fff)
    0x5c82bd28 : 0x2b2124 (0x32 0x0 0x0 0x0)
    0x5c82bd48 : 0x11f1db7 (0x5501e0a8 0xffffffff 0x7fffffff 0xffffffff)
    0x5c82be28 : 0x11f3850 (0xffffffff 0x7fffffff 0x0 0x0)
    0x5c82bf28 : 0x2ad0c5 (0xffffffff 0x7fffffff 0x10 0x202)
    0x5c82bf48 : 0x225bba (0x0 0x4ffad2b2 0xd5 0x5502d488)
    0x5c82bfa8 : 0x22810b (0x85833d4 0x2280f4 0x0 0x8c57764)
    0x5c82bfc8 : 0x2a179c (0x0 0xffffffff 0x10 0xa1f1064)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.driver.AppleIntelCPUPowerManagement(142.6.0)@0x11f0000->0x1213fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K540
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 916750825314
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI    4.2.0 (addr 0x142d000, size 0x65536) - last unloaded 138176310496
    loaded kexts:
    com.Symantec.kext.SAVAPComm    11.0.6 - last loaded 30941770731
    com.apple.driver.AppleHWSensor    1.9.3d0
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AGPM    100.12.31
    com.apple.filesystems.ntfs    3.4
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AppleMikeyDriver    2.0.5f13
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleMCCSControl    1.0.20
    com.apple.driver.AppleHDA    2.0.5f13
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelHDGraphicsFB    6.3.6
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.GeForce    6.3.6
    com.apple.driver.AppleGraphicsControl    2.10.6
    com.apple.driver.AppleLPC    1.5.1
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.driver.AppleUSBTCButtons    201.6
    com.apple.driver.AppleUSBCardReader    2.6.1
    com.apple.driver.AppleIRController    303.8
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.BootCache    31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.iokit.SCSITaskUserClient    2.6.8
    com.apple.iokit.IOAHCIBlockStorage    1.6.4
    com.apple.driver.AppleUSBHub    4.2.4
    com.apple.driver.AppleFWOHCI    4.7.3
    com.apple.driver.AirPortBrcm43224    428.42.4
    com.apple.iokit.AppleBCM5701Ethernet    3.0.5b8
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleAHCIPort    2.1.7
    com.apple.driver.AppleUSBEHCI    4.2.4
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient    142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement    142.6.0
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.DspFuncLib    2.0.5f13
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP    2.0.3
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f3
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.0.5f13
    com.apple.iokit.IOHDAFamily    2.0.5f13
    com.apple.iokit.AppleProfileFamily    41
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.1
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.nvidia.nv50hal    6.3.6
    com.apple.NVDAResman    6.3.6
    com.apple.iokit.IONDRVSupport    2.2
    com.apple.iokit.IOGraphicsFamily    2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f3
    com.apple.iokit.IOBluetoothFamily    2.4.5f3
    com.apple.iokit.IOSCSIBlockCommandsDevice    2.6.8
    com.apple.iokit.IOUSBMassStorageClass    2.6.7
    com.apple.driver.AppleUSBMultitouch    207.7
    com.apple.iokit.IOUSBHIDDriver    4.2.0
    com.apple.driver.AppleUSBMergeNub    4.2.4
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.8
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.driver.XsanFilter    402.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.8
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOUSBUserClient    4.2.4
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOUSBFamily    4.2.4
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    6
    com.apple.driver.DiskImages    289.1
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    System Profile:
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.53 GHz, 4 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500325ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000

  • New MacBook Pro i7 2.66 - Kernel Panic Errors

    Greetings! I have a new MBP, less than 3 weeks old now. I have received numerous kernel panic errors and am not sure how to decipher the log. I have run disk utility from the install disk and no problems came back. Not sure what to do.
    The *first two crashes* happened while I was browsing in safari (only add = Web Developer, installed, but not enabled during the crash)...and the pages were quite simple, no heavy graphics--usually simple news blogs. It happens while I am connected via ethernet AND via airport. During the first two crashes I had a couple of firewire hard drives plugged in.
    The *latest crash* happened while I was in Photoshop--again not doing anything to heavy. ANd no external drives were plugged in. Nothing but the power supply wired to the machine.
    Can anyone help to explain what may be the problem. I am not sure if I should bring it in to the shop yet, or if there is something I can change from here to remedy the problem. Also, not sure if I should zap PRAM...I have yet to try this.
    Thanks in advance for any insight into this problem.
    g
    crash1
    Interval Since Last Panic Report: 197258 sec
    Panics Since Last Report: 1
    Anonymous UUID: 3EC9953A-242A-4C32-8797-0B78E46C08CC
    Tue Sep 21 14:05:29 2010
    panic(cpu 2 caller 0x2a8ab2): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000000, CR3: 0x5063b000, CR4: 0x00000660
    EAX: 0x0a383980, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x0c4b8780
    CR2: 0x00000000, EBP: 0x93713c68, ESI: 0x0c4b8780, EDI: 0x461e4000
    EFL: 0x00010246, EIP: 0x00000000, CS: 0x00000008, DS: 0x00ac0010
    Error code: 0x00000010
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x93713a48 : 0x21b455 (0x5cf328 0x93713a7c 0x2238b1 0x0)
    0x93713a98 : 0x2a8ab2 (0x591664 0x0 0xe 0x59182e)
    0x93713b78 : 0x29e9a8 (0x93713b90 0x157f4200 0x93713c68 0x0)
    0x93713b88 : 0x0 (0xe 0x1030048 0x1030010 0x10)
    0x93713c68 : 0x1243afd (0x461e4000 0xc4b8780 0x0 0x0)
    0x93713c98 : 0x124d715 (0x461e4000 0x988cadc 0xc4b8780 0x122deb6)
    0x93713cd8 : 0x124d85b (0x988c800 0x461e4000 0x988cb20 0x8)
    0x93713d08 : 0x122746a (0x988c800 0x461e4000 0x93713d38 0x213e04)
    0x93713d38 : 0x53352d (0x461e4000 0x9cdc7d0 0x9cdc7d0 0x1)
    0x93713d88 : 0x56440a (0x461e4000 0x9cdc7d0 0x9cdc7d0 0x1)
    0x93713de8 : 0x2850e5 (0x461e4000 0x9cdc7d0 0x1 0x0)
    0x93713e58 : 0x21d7f7 (0xf26e368 0x8c5c684 0xf26e36c 0xf26e3a4)
    0x93713e98 : 0x210983 (0xf26e300 0x93713edc 0x923047c 0x93713ed0)
    0x93713ef8 : 0x216be6 (0xf26e300 0x0 0x0 0x0)
    0x93713f78 : 0x293eb4 (0x158d2c68 0x0 0x0 0x0)
    0x93713fc8 : 0x29f48d (0x158d2c64 0x1 0x10 0x8b0ade4)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.1.8)@0x1223000->0x12cffff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x951000
    dependency: com.apple.iokit.IONDRVSupport(2.1)@0x984000
    dependency: com.apple.iokit.IOGraphicsFamily(2.1)@0x962000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 141730942947202
    unloaded kexts:
    com.apple.driver.InternalModemSupport 2.6.2 (addr 0x7f220000, size 0x16384) - last unloaded 126255484646091
    loaded kexts:
    at.obdev.nke.LittleSnitch 2.2.05
    com.apple.driver.IOBluetoothBNEPDriver 2.3.7f1 - last loaded 126129557539633
    com.apple.filesystems.afpfs 9.7
    com.apple.nke.asp_tcp 5.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.12
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.driver.AppleMikeyDriver 1.8.7f1
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.GeForce 6.1.8
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.63
    com.apple.driver.AppleIntelHDGraphics 6.1.8
    com.apple.driver.AppleIntelHDGraphicsFB 6.1.8
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleUSBCardReader 2.5.4
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.driver.Oxford_Semi 2.5.4
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 425.16.2
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.7f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.1.8
    com.apple.NVDAResman 6.1.8
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.7f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.7f1
    com.apple.iokit.IOBluetoothFamily 2.3.7f1
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.driver.AppleUSBMultitouch 205.32
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.iokit.IOFireWireSerialBusProtocolTransport 2.0.1
    com.apple.iokit.IOFireWireSBP2 4.0.6
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.16.1)
    Bluetooth: Version 2.3.7f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    FireWire Device: Rugged FW/USB, LaCie, Up to 400 Mb/sec
    FireWire Device: Rugged FW/USB, LaCie, Up to 800 Mb/sec
    crash2
    Interval Since Last Panic Report: 102430 sec
    Panics Since Last Report: 1
    Anonymous UUID: 3EC9953A-242A-4C32-8797-0B78E46C08CC
    Thu Sep 23 08:53:33 2010
    panic(cpu 0 caller 0x2a8ab2): Kernel trap at 0x00041000, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00041000, CR3: 0x00100000, CR4: 0x000006e8
    EAX: 0x0c949700, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x0c949400
    CR2: 0x00041000, EBP: 0x54f83c08, ESI: 0x0c949400, EDI: 0x461e5000
    EFL: 0x00010246, EIP: 0x00041000, CS: 0x00000008, DS: 0x00ac0010
    Error code: 0x00000010
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x54f839e8 : 0x21b455 (0x5cf328 0x54f83a1c 0x2238b1 0x0)
    0x54f83a38 : 0x2a8ab2 (0x591664 0x41000 0xe 0x59182e)
    0x54f83b18 : 0x29e9a8 (0x54f83b30 0xd2a3c00 0x54f83c08 0x41000)
    0x54f83b28 : 0x41000 (0xe 0x1030048 0x1030010 0x10)
    0x54f83c08 : 0x1243afd (0x461e5000 0xc949400 0x0 0x0)
    0x54f83c38 : 0x124d715 (0x461e5000 0xd3a4edc 0xc949400 0x122deb6)
    0x54f83c78 : 0x124d85b (0xd3a4c00 0x461e5000 0xd3a4f20 0x8)
    0x54f83ca8 : 0x122746a (0xd3a4c00 0x461e5000 0x8211d000 0x0)
    0x54f83cd8 : 0x53352d (0x461e5000 0xa447bb8 0xa447bb8 0x1)
    0x54f83d28 : 0x56440a (0x461e5000 0xa447bb8 0xa447bb8 0x1)
    0x54f83d88 : 0x2850e5 (0x461e5000 0xa447bb8 0x1 0x0)
    0x54f83df8 : 0x21d7f7 (0xd4db968 0xb93c384 0xd4db970 0xd4db9a4)
    0x54f83e38 : 0x210983 (0xd4db900 0x54f83e7c 0x8caf7b0 0x54f83e70)
    0x54f83e98 : 0x216be6 (0xd4db900 0x0 0x0 0x0)
    0x54f83f18 : 0x293b71 (0x54f83f44 0x0 0x0 0x0)
    0x54f83fc8 : 0x29f018 (0x12fcfd40 0x0 0x10 0xc0a3480)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.1.8)@0x1223000->0x12cffff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x951000
    dependency: com.apple.iokit.IONDRVSupport(2.1)@0x984000
    dependency: com.apple.iokit.IOGraphicsFamily(2.1)@0x962000
    BSD process name corresponding to current thread: WebKitPluginHost
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 138134877885428
    unloaded kexts:
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit 2.5.4 (addr 0x54fd7000, size 0x8192) - last unloaded 48389582407223
    loaded kexts:
    at.obdev.nke.LittleSnitch 2.2.05
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.12
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.driver.AppleMikeyDriver 1.8.7f1
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.AppleIntelHDGraphics 6.1.8
    com.apple.driver.AppleIntelHDGraphicsFB 6.1.8
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.GeForce 6.1.8
    com.apple.driver.AppleGraphicsControl 2.8.63
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleUSBCardReader 2.5.4
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.Oxford_Semi 2.5.4
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 425.16.2
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.iokit.IOSCSIReducedBlockCommandsDevice 2.6.5 - last loaded 48328369471161
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.7f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.1.8
    com.apple.NVDAResman 6.1.8
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.7f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.7f1
    com.apple.iokit.IOBluetoothFamily 2.3.7f1
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport 2.0.1
    com.apple.iokit.IOFireWireSBP2 4.0.6
    com.apple.driver.AppleUSBMultitouch 205.32
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.16.1)
    Bluetooth: Version 2.3.7f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    crash3
    Interval Since Last Panic Report: 237615 sec
    Panics Since Last Report: 2
    Anonymous UUID: 3EC9953A-242A-4C32-8797-0B78E46C08CC
    Sun Sep 26 14:28:44 2010
    panic(cpu 2 caller 0x2a8ab2): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000000, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x0edcbd00, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x0edcbc80
    CR2: 0x00000000, EBP: 0x5bfabc08, ESI: 0x0edcbc80, EDI: 0x46201000
    EFL: 0x00010246, EIP: 0x00000000, CS: 0x00000008, DS: 0x00ac0010
    Error code: 0x00000010
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x5bfab9e8 : 0x21b455 (0x5cf328 0x5bfaba1c 0x2238b1 0x0)
    0x5bfaba38 : 0x2a8ab2 (0x591664 0x0 0xe 0x59182e)
    0x5bfabb18 : 0x29e9a8 (0x5bfabb30 0x90db220 0x5bfabc08 0x0)
    0x5bfabb28 : 0x0 (0xe 0x1030048 0x1030010 0x10)
    0x5bfabc08 : 0x1243afd (0x46201000 0xedcbc80 0x0 0x0)
    0x5bfabc38 : 0x124d715 (0x46201000 0xd216adc 0xedcbc80 0x122deb6)
    0x5bfabc78 : 0x124d85b (0xd216800 0x46201000 0xd216b20 0x8)
    0x5bfabca8 : 0x122746a (0xd216800 0x46201000 0x7e24a000 0x0)
    0x5bfabcd8 : 0x53352d (0x46201000 0xa5da000 0xa5da000 0x1)
    0x5bfabd28 : 0x56440a (0x46201000 0xa5da000 0xa5da000 0x1)
    0x5bfabd88 : 0x2850e5 (0x46201000 0xa5da000 0x1 0x0)
    0x5bfabdf8 : 0x21d7f7 (0xdd3e368 0xbe09f84 0xdd3e370 0xdd3e3a4)
    0x5bfabe38 : 0x210983 (0xdd3e300 0x5bfabe7c 0xa5f1ebc 0x5bfabe70)
    0x5bfabe98 : 0x216be6 (0xdd3e300 0x0 0x0 0x0)
    0x5bfabf18 : 0x293b71 (0x5bfabf44 0x0 0x0 0x0)
    0x5bfabfc8 : 0x29f018 (0xa96e040 0x0 0x10 0xa96e040)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.1.8)@0x1223000->0x12cffff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x951000
    dependency: com.apple.iokit.IONDRVSupport(2.1)@0x984000
    dependency: com.apple.iokit.IOGraphicsFamily(2.1)@0x962000
    BSD process name corresponding to current thread: WebKitPluginHost
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 152076254980966
    unloaded kexts:
    com.apple.iokit.IOFireWireSBP2 4.0.6 (addr 0xab85d000, size 0x69632) - last unloaded 149553212569277
    loaded kexts:
    at.obdev.nke.LittleSnitch 2.2.05
    com.apple.filesystems.afpfs 9.7 - last loaded 103430803979985
    com.apple.nke.asp_tcp 5.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.12
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.driver.AppleMikeyDriver 1.8.7f1
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.GeForce 6.1.8
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.63
    com.apple.driver.AppleIntelHDGraphics 6.1.8
    com.apple.driver.AppleIntelHDGraphicsFB 6.1.8
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.AppleUSBCardReader 2.5.4
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AirPortBrcm43224 425.16.2
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.7f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.1.8
    com.apple.NVDAResman 6.1.8
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.7f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.7f1
    com.apple.iokit.IOBluetoothFamily 2.3.7f1
    com.apple.driver.AppleUSBMultitouch 205.32
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    *and my general hardware info:*
    Model Name: MacBook Pro
    Model Identifier: MacBookPro6,2
    Processor Name: Intel Core i7
    Processor Speed: 2.66 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache (per core): 256 KB
    L3 Cache: 4 MB
    Memory: 4 GB
    Processor Interconnect Speed: 4.8 GT/s
    Boot ROM Version: MBP61.0057.B0C
    SMC Version (system): 1.58f16
    Serial Number (system): W8033081GD6
    Hardware UUID: 9AFBCDCF-665C-5B23-97BA-EB2E452C7E1E
    Sudden Motion Sensor:
    State: Enabled

    okay, i spoke too soon. just had another kernel panic. below is the log. bringing it into the shop tomorrow. oy!
    Interval Since Last Panic Report: 396468 sec
    Panics Since Last Report: 4
    Anonymous UUID: 3EC9953A-242A-4C32-8797-0B78E46C08CC
    Wed Sep 29 15:14:07 2010
    panic(cpu 0 caller 0x2a8ab2): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000000, CR3: 0x00100000, CR4: 0x000006e8
    EAX: 0x09a02580, EBX: 0x00000000, ECX: 0x0000000c, EDX: 0x0a7ad680
    CR2: 0x00000000, EBP: 0x4e5abc08, ESI: 0x0a7ad680, EDI: 0x4616c000
    EFL: 0x00010246, EIP: 0x00000000, CS: 0x00000008, DS: 0x00ac0010
    Error code: 0x00000010
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x4e5ab9e8 : 0x21b455 (0x5cf328 0x4e5aba1c 0x2238b1 0x0)
    0x4e5aba38 : 0x2a8ab2 (0x591664 0x0 0xe 0x59182e)
    0x4e5abb18 : 0x29e9a8 (0x4e5abb30 0x99a57c0 0x4e5abc08 0x0)
    0x4e5abb28 : 0x0 (0xe 0x1030048 0x1030010 0x10)
    0x4e5abc08 : 0x1243afd (0x4616c000 0xa7ad680 0x0 0x0)
    0x4e5abc38 : 0x124d715 (0x4616c000 0xac0badc 0xa7ad680 0x122deb6)
    0x4e5abc78 : 0x124d85b (0xac0b800 0x4616c000 0xac0bb20 0x8)
    0x4e5abca8 : 0x122746a (0xac0b800 0x4616c000 0xc38c9000 0x0)
    0x4e5abcd8 : 0x53352d (0x4616c000 0x92f5000 0x92f5000 0x1)
    0x4e5abd28 : 0x56440a (0x4616c000 0x92f5000 0x92f5000 0x1)
    0x4e5abd88 : 0x2850e5 (0x4616c000 0x92f5000 0x1 0x0)
    0x4e5abdf8 : 0x21d7f7 (0xb209268 0xb04de84 0xb209270 0xb2092a4)
    0x4e5abe38 : 0x210983 (0xb209200 0x4e5abe7c 0x931e70c 0x4e5abe70)
    0x4e5abe98 : 0x216be6 (0xb209200 0x0 0x0 0x0)
    0x4e5abf18 : 0x293b71 (0x4e5abf44 0x0 0x0 0x0)
    0x4e5abfc8 : 0x29f018 (0x9d4b480 0x0 0x10 0x9d4b480)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelHDGraphics(6.1.8)@0x1223000->0x12cffff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x951000
    dependency: com.apple.iokit.IONDRVSupport(2.1)@0x984000
    dependency: com.apple.iokit.IOGraphicsFamily(2.1)@0x962000
    BSD process name corresponding to current thread: WebKitPluginHost
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 41311572524712
    unloaded kexts:
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.1b1 (addr 0x5bf1b000, size 0x8192) - last unloaded 26431538607741
    loaded kexts:
    at.obdev.nke.LittleSnitch 2.2.05
    com.apple.filesystems.afpfs 9.7 - last loaded 33235056229477
    com.apple.nke.asp_tcp 5.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.12
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.driver.AppleMikeyDriver 1.8.7f1
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.AppleIntelHDGraphics 6.1.8
    com.apple.driver.AppleIntelHDGraphicsFB 6.1.8
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.GeForce 6.1.8
    com.apple.driver.AppleGraphicsControl 2.8.63
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.driver.AppleUSBCardReader 2.5.4
    com.apple.driver.AppleIRController 303.8
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 425.16.2
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.7f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.1.8
    com.apple.NVDAResman 6.1.8
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.7f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.7f1
    com.apple.iokit.IOBluetoothFamily 2.3.7f1
    com.apple.driver.AppleUSBMultitouch 205.32
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0

  • Kernel Panic Error after waking from sleep mode

    My MacBook Air (5.2) was purchased in February and has been back to the Genius Bar twice to try to identify the issue causing the kernel panic error that occurs after the computer is placed in sleep mode (running on battery or AC).  GB was unable to reproduce the errors when the laptop was left overnight during it's most recent visit (4/18/13).  This leads me to believe it's related to my wireless router/printer drivers.  Very frustrating and I'm just about ready to turn this back into Apple since I'm wasting more time trouble-shooting than enjoying the computer!
    Hardware>USB Device Tree>
    Listed are 3 USB devices: 
    (null)  - this one lists the Host Controller Driver:  com_silex_driver_sxuptp
    USB 3.0 Hi-Speed Bus
    USB 3.0 SuperSpeed Bus
    Questions: 
    - Is this a reasonable suspect causing my daily (or more) kernel panics?
    - How do I remove it?
    Here is one (of many) kernel panic reports:
    Interval Since Last Panic Report:  1899 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    C76ECE66-868B-D4B5-B919-34DED4370F8A
    Tue Apr 23 20:19:55 2013
    panic(cpu 0 caller 0xffffff80260b7e95): Kernel trap at 0xffffff7fa65b9786, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x0000000028336000, CR4: 0x00000000001606e0
    RAX: 0xffffff8032875800, RBX: 0xffffff8090a48000, RCX: 0x0000000000000002, RDX: 0x0000000000000004
    RSP: 0xffffff80a559bdc0, RBP: 0xffffff80a559bde0, RSI: 0x0000000000000002, RDI: 0x0000000000000000
    R8:  0xffffff803288a000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff8032850000, R13: 0x0000000000000002, R14: 0x0000000000000004, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff7fa65b9786, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80a559ba60 : 0xffffff802601d626
    0xffffff80a559bad0 : 0xffffff80260b7e95
    0xffffff80a559bca0 : 0xffffff80260cd4dd
    0xffffff80a559bcc0 : 0xffffff7fa65b9786
    0xffffff80a559bde0 : 0xffffff802643898c
    0xffffff80a559be30 : 0xffffff80264353a1
    0xffffff80a559be80 : 0xffffff802643f8c4
    0xffffff80a559bec0 : 0xffffff8026434c4b
    0xffffff80a559bef0 : 0xffffff802643f5bd
    0xffffff80a559bf30 : 0xffffff80264452aa
    0xffffff80a559bf80 : 0xffffff80264453d9
    0xffffff80a559bfb0 : 0xffffff80260b2977
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7fa6599000->0xffffff7fa65f4fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7fa6570000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 1911705120785
    last loaded kext at 247433964235: com.apple.filesystems.msdosfs          1.8 (addr 0xffffff7fa7c43000, size 65536)
    last unloaded kext at 307629547375: com.apple.filesystems.msdosfs          1.8 (addr 0xffffff7fa7c43000, size 57344)
    loaded kexts:
    com.silex.driver.sxuptp          1.10.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.1.3f3
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.ApplePlatformEnabler          2.0.6d1
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.3.0
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleBacklight          170.2.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelHD4000Graphics          8.1.0
    com.apple.driver.AppleIntelFramebufferCapri          8.1.0
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AirPort.Brcm4331          614.20.16
    com.apple.driver.AppleAHCIPort          2.5.1
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBXHCI          5.5.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.3f3
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleGraphicsControl          3.3.0
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IOAcceleratorFamily          30.14
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.6
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.driver.AppleThunderboltNHI          1.6.3
    com.apple.iokit.IOThunderboltFamily          2.2.6
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IO80211Family          522.4
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily          5.5.5
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.2
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    System Profile:
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 11 devices, 1 incoming serial ports
    Serial ATA Device: APPLE SSD SM128E, 121.33 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024c, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 9
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3

    The third-party system modification "SX-Virtual Link" may be contributing to your problem. I suggest you back up all data, then uninstall it according to the developer's instructions. Reboot and see whether there's any improvement.
    Back up all data before making any changes.

  • Need help diagnosing kernel panic error 10.7.5

    I have a 2011 MacBook Pro running OS X Lion 10.7.5
    Kernel panic error happened three times while using Microsoft Word, this is the data from the last kernel panic error:
    Mon Mar 30 19:08:03 2015
    panic(cpu 0 caller 0xffffff80002c4dd5): "Double fault at 0xffffff80002c4104, registers:\n" "CR0: 0x000000008001003b, CR2: 0xffffff807f257ea8, CR3: 0x000000003b8f7046, CR4: 0x00000000000606e0\n" "RAX: 0x0000000000000008, RBX: 0x000000000000000e, RCX: 0xffffff800c0f0400, RDX: 0xffffff80002da3a0\n" "RSP: 0xffffff807f257eb0, RBP: 0xffffff807f258050, RSI: 0xffffff807f258060, RDI: 0xffffff807f258080\n" "R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0x800000003b8f7046, R11: 0xffffff80002dad00\n" "R12: 0xffffff807f258070, R13: 0xffffff8002538e80, R14: 0x0000000000000005, R15: 0x000000000000000e\n" "RFL: 0x0000000000010082, RIP: 0xffffff80002c4104, CS:  0x0000000000000008, SS:  0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-1699.32.7/osfmk/i386/trap_native.c:2 78
    Backtrace (CPU 0), Frame : Return Address
    0xffffff800081bd20 : 0xffffff8000220792
    0xffffff800081bda0 : 0xffffff80002c4dd5
    0xffffff800081bf00 : 0xffffff80002daf4f
    0xffffff807f258050 : 0xffffff80002da55d
    0xffffff807f258070 : 0xffffff80002c3cc9
    0xffffff807f258180 : 0xffffff80002c44a3
    0xffffff807f258330 : 0xffffff80002da55d
    0xffffff807f258350 : 0xffffff80002c3cc9
    0xffffff807f258460 : 0xffffff80002c44a3
    0xffffff807f258610 : 0xffffff80002da55d
    0xffffff807f258630 : 0xffffff80002c3cc9
    0xffffff807f258740 : 0xffffff80002c44a3
    0xffffff807f2588f0 : 0xffffff80002da55d
    0xffffff807f258910 : 0xffffff80002c3cc9
    0xffffff807f258a20 : 0xffffff80002c44a3
    0xffffff807f258bd0 : 0xffffff80002da55d
    0xffffff807f258bf0 : 0xffffff80002c3cc9
    0xffffff807f258d00 : 0xffffff80002c44a3
    0xffffff807f258eb0 : 0xffffff80002da55d
    0xffffff807f258ed0 : 0xffffff80002c3cc9
    0xffffff807f258fe0 : 0xffffff80002c44a3
    0xffffff807f259190 : 0xffffff80002da55d
    0xffffff807f2591b0 : 0xffffff80002c3cc9
    0xffffff807f2592c0 : 0xffffff80002c44a3
    0xffffff807f259470 : 0xffffff80002da55d
    0xffffff807f259490 : 0xffffff80002c3cc9
    0xffffff807f2595a0 : 0xffffff80002c44a3
    0xffffff807f259750 : 0xffffff80002da55d
    0xffffff807f259770 : 0xffffff80002c3cc9
    0xffffff807f259880 : 0xffffff80002c44a3
    0xffffff807f259a30 : 0xffffff80002da55d
    0xffffff807f259a50 : 0xffffff80002c3cc9
    0xffffff807f259b60 : 0xffffff80002c44a3
    0xffffff807f259d10 : 0xffffff80002da55d
    0xffffff807f259d30 : 0xffffff80002c3cc9
    0xffffff807f259e40 : 0xffffff80002c44a3
    0xffffff807f259ff0 : 0xffffff80002da55d
    0xffffff807f25a010 : 0xffffff80002c3cc9
    0xffffff807f25a120 : 0xffffff80002c44a3
    0xffffff807f25a2d0 : 0xffffff80002da55d
    0xffffff807f25a2f0 : 0xffffff80002c3cc9
    0xffffff807f25a400 : 0xffffff80002c44a3
    0xffffff807f25a5b0 : 0xffffff80002da55d
    0xffffff807f25a5d0 : 0xffffff80002c3cc9
    0xffffff807f25a6e0 : 0xffffff80002c44a3
    0xffffff807f25a890 : 0xffffff80002da55d
    0xffffff807f25a8b0 : 0xffffff80002c3cc9
    0xffffff807f25a9c0 : 0xffffff80002c44a3
    0xffffff807f25ab70 : 0xffffff80002da55d
    0xffffff807f25ab90 : 0xffffff80002c3cc9
    0xffffff807f25aca0 : 0xffffff80002c44a3
    0xffffff807f25ae50 : 0xffffff80002da55d
    0xffffff807f25ae70 : 0xffffff80002c3cc9
    0xffffff807f25af80 : 0xffffff80002c44a3
    0xffffff807f25b130 : 0xffffff80002da55d
    0xffffff807f25b150 : 0xffffff80002c3cc9
    0xffffff807f25b260 : 0xffffff80002c44a3
    0xffffff807f25b410 : 0xffffff80002da55d
    0xffffff807f25b430 : 0xffffff80002c3cc9
    0xffffff807f25b540 : 0xffffff80002c44a3
    0xffffff807f25b6f0 : 0xffffff80002da55d
    0xffffff807f25b710 : 0xffffff80002c3cc9
    0xffffff807f25b820 : 0xffffff80002c44a3
    0xffffff807f25b9d0 : 0xffffff80002da55d
    0xffffff807f25b9f0 : 0xffffff80002c3cc9
    0xffffff807f25bb00 : 0xffffff80002c44a3
    0xffffff807f25bcb0 : 0xffffff80002da55d
    0xffffff807f25bcd0 : 0xffffff7f81794008
    0xffffff807f25bdd0 : 0xffffff800022def4
    0xffffff807f25be30 : 0xffffff800022f413
    0xffffff807f25be90 : 0xffffff800021587f
    0xffffff807f25beb0 : 0xffffff800021bcda
    0xffffff807f25bf10 : 0xffffff80002af140
    0xffffff807f25bfb0 : 0xffffff80002dab5e
    BSD process name corresponding to current thread: Office365Service
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 562022531906
    last loaded kext at 125842838951: net.tunnelblick.tun 1.0 (addr 0xffffff7f80ad9000, size 32768)
    last unloaded kext at 274578878183: com.apple.driver.AppleUSBUHCI 5.1.0 (addr 0xffffff7f80a7b000, size 65536)
    loaded kexts:
    net.tunnelblick.tun 1.0
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.IOBluetoothSCOAudioDriver 4.0.8f17
    com.apple.driver.IOBluetoothA2DPAudioDriver 4.0.8f17
    com.apple.iokit.IOBluetoothSerialManager 4.0.8f17
    com.apple.driver.AppleMikeyHIDDriver 122
    com.apple.driver.AudioAUUC 1.59
    com.apple.driver.AppleUpstreamUserClient 3.5.9
    com.apple.driver.AppleHDA 2.2.5a5
    com.apple.driver.AppleIntelHD3000Graphics 7.3.2
    com.apple.driver.AGPM 100.12.75
    com.apple.driver.AppleMikeyDriver 2.2.5a5
    com.apple.driver.SMCMotionSensor 3.0.2d6
    com.apple.driver.AppleSMCPDRC 5.0.0d8
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.filesystems.autofs 3.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AudioIPCDriver 1.2.3
    com.apple.driver.AppleSMCLMU 2.0.1d2
    com.apple.driver.ApplePolicyControl 3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin 5.0.0d8
    com.apple.driver.AppleBacklight 170.2.2
    com.apple.driver.AppleLPC 1.6.0
    com.apple.driver.AppleMCCSControl 1.0.33
    com.apple.driver.BroadcomUSBBluetoothHCIController 4.0.8f17
    com.apple.driver.AppleUSBTCButtons 227.6
    com.apple.driver.AppleUSBTCKeyboard 227.6
    com.apple.driver.AppleIRController 312
    com.apple.iokit.SCSITaskUserClient 3.2.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 33
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCISerialATAPI 2.0.3
    com.apple.iokit.IOAHCIBlockStorage 2.1.0
    com.apple.driver.AppleUSBHub 5.1.0
    com.apple.driver.AirPort.Brcm4331 561.7.22
    com.apple.driver.AppleSDXC 1.2.2
    com.apple.iokit.AppleBCM5701Ethernet 3.2.4b8
    com.apple.driver.AppleEFINVRAM 1.6.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleAHCIPort 2.3.1
    com.apple.driver.AppleFWOHCI 4.9.0
    com.apple.driver.AppleUSBEHCI 5.1.0
    com.apple.driver.AppleACPIButtons 1.5
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.7
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.5
    com.apple.driver.AppleAPIC 1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient 195.0.0
    com.apple.nke.applicationfirewall 3.2.30
    com.apple.security.quarantine 1.4
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 195.0.0
    com.apple.iokit.IOSerialFamily 10.0.5
    com.apple.driver.DspFuncLib 2.2.5a5
    com.apple.iokit.IOSurface 80.0.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.iokit.IOAudioFamily 1.8.6fc18
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 2.2.5a5
    com.apple.iokit.IOHDAFamily 2.2.5a5
    com.apple.driver.AppleGraphicsControl 3.1.33
    com.apple.driver.AppleSMC 3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy 5.0.0d8
    com.apple.driver.AppleSMBusPCI 1.0.10d0
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.3.4
    com.apple.driver.IOPlatformPluginFamily 5.1.1d6
    com.apple.driver.AppleSMBusController 1.0.10d0
    com.apple.driver.AppleIntelSNBGraphicsFB 7.3.2
    com.apple.iokit.IOGraphicsFamily 2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController 4.0.8f17
    com.apple.iokit.IOBluetoothFamily 4.0.8f17
    com.apple.driver.AppleThunderboltDPInAdapter 1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily 1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.2.5
    com.apple.driver.AppleUSBMultitouch 230.5
    com.apple.iokit.IOUSBHIDDriver 5.0.0
    com.apple.driver.AppleUSBMergeNub 5.1.0
    com.apple.driver.AppleUSBComposite 5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.2.1
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.2.1
    com.apple.driver.AppleThunderboltNHI 1.6.0
    com.apple.iokit.IOThunderboltFamily 2.0.3
    com.apple.iokit.IOUSBUserClient 5.0.0
    com.apple.iokit.IO80211Family 420.3
    com.apple.iokit.IOEthernetAVBController 1.0.1b1
    com.apple.iokit.IONetworkingFamily 2.1
    com.apple.iokit.IOAHCIFamily 2.0.8
    com.apple.iokit.IOFireWireFamily 4.4.8
    com.apple.iokit.IOUSBFamily 5.1.0
    com.apple.driver.AppleEFIRuntime 1.6.1
    com.apple.iokit.IOHIDFamily 1.7.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 177.11
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.DiskImages 331.7
    com.apple.iokit.IOStorageFamily 1.7.2
    com.apple.driver.AppleKeyStore 28.18
    com.apple.driver.AppleACPIPlatform 1.5
    com.apple.iokit.IOPCIFamily 2.7
    com.apple.iokit.IOACPIFamily 1.4
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    This may have nothing to do with the panic, but I noticed that the net.tunnelblick.tun kext is loaded. This is an indication that you are not using the latest version of Tunnelblick and/or you are not using the latest version of OpenVPN that Tunnelblick contains, or you are setting OpenVPN to specifically use the "tun" device. Recent (for the last year or so) versions of Tunnelblick use OS X's built-in "utun" device (available since OS X 10.6.8) instead of the add-on "tun" device.
    If you are using an older version of Tunnelblick*, I urge you to update to the latest beta version, which includes important security updates and, depending on what old version you have, kext updates. You can use Tunnelbick's built-in updater (on the "Preferences" panel of the "VPN Details… window") or you can download it from Tunnelbick's Downloads page. If you download, be sure to install by double-clicking as directed – do not drag it to the Applications folder.
    Before you do so, please note the current version you are using. If the update causes problems (unlikely), you can reinstall that old version (after downloading it from Tunnelblick's Security Risk Downloads page). To see what version of Tunnelblick you are using, click the "Info" panel at the top of Tunnelblick's "VPN Details… window".
    * You will not be able to update Tunnelblick if you have a "Deployed" version – see the note about that on Tunnelbick's Downloads page.

  • How to get rid of the weblogic.kernel.Default errors and warning?

    Hi there,
    When i'm running my application deployed on WLS8.1 SP3 and the application is running fine, but the following error and warnings were thrown.
    2004-08-05 11:26:30,453 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] ERROR com.bea.wlw.runtime.core.util.Config - Failed to obtain connection to datasource=cgDataSource, using generic DB properties
    <Aug 5, 2004 11:26:30 AM SGT> <Error> <WLW> <000000> <Failed to obtain connection to datasource=cgDataSource, using generic DB properties>
    2004-08-05 11:27:12,281 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.config.OptionConverter - Could not find value for key jcs.default.elementattributes
    2004-08-05 11:27:12,282 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.engine.control.CompositeCacheConfigurator - Could not instantiate eAttr named 'jcs.default.elementattributes', using defaults.
    2004-08-05 11:27:12,308 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.config.OptionConverter - Could not find value for key jcs.system.groupIdCache.elementattributes
    2004-08-05 11:27:12,308 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.engine.control.CompositeCacheConfigurator - Could not instantiate eAttr named 'jcs.system.groupIdCache.elementattributes', using defaults.
    2004-08-05 11:27:12,386 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.config.OptionConverter - Could not find value for key jcs.region.CodeTableCache.elementattributes
    2004-08-05 11:27:12,386 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN org.apache.jcs.engine.control.CompositeCacheConfigurator - Could not instantiate eAttr named 'jcs.region.CodeTableCache.elementattributes', using defaults.
    2004-08-05 11:27:13,527 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN com.bea.wlw.netui.script.el.NetUIReadVariableResolver - Could not create a ContextFactory for type "com.bea.netuix.servlets.script.PortalVariableResolver$PortalContextFactory" because the ContextFactory implementation class could not be found.
    May i know why this is so? How to get rid of these error and warnings?
    Thanks
    Derek
    Message was edited by derekchan at Aug 4, 2004 8:41 PM
    Message was edited by derekchan at Aug 4, 2004 8:42 PM

    you didnt seem to have configured the datasource / connection pool / database control with proper db properties
    you should check your configuration to see if you have done it right and then you should check your application and the properties settings in the controls to ensure they are right.

  • Kernel Panic Error on boot up

    Hello everyone,
    I hope someone can help me with this....
    Everytime I boot my Macbook Pro (2012, 15inch Retina version) it gets stuck in a boot- kernel panic error-reboot loop. Ive mananged to boot into it (see below) to take a look at the logs, I have attached the log to the bottom of this post.
    I have windows installed on this computer too, so I tried booting into it and I seem to get the same situation - windows reboots after what I can only assume to be a kernal panic.
    Now interestingly if I hold down shift during the boot onosx (NOT booting into safe mode, after the spinning icon is already showing) I can boot up - I am not sure why though? I assume I am disabling some kernal extensions?
    Things I have done:
    Run the mac hardware test 3 times, no errrors reported
    Run disc checking/verifying 3 times, no problems reported
    Checked kext to see if there are any non official extensions, none all are com.apple.* or NVIDA stuff
    Reset NVRAM and SMC controller
    I am not really a mac expert but looking at that log it looks graphics card related? To test this - I downloaded gfxCardStatus and forced it to use the discrete graphics card and it seems to be using it with no problems. I the forced only the on board card to check if that was ok and it was.
    So where should I go from here? If it was a hardware failure it would be happening every time and I wouldnt be able to use the shift key to boot up right?
    If it was only software, why would it be happening to windows too?
    Help me please!
    Anyway, thanks for reading this.
    panic(cpu 0 caller 0xffffff80088b7b95): Kernel trap at 0xffffff7f89c00654, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000000010, CR3: 0x00000000185e302f, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0xffffff80db953000, RCX: 0xffffff801e4b9550, RDX: 0xffffff80fcd0ba38
    RSP: 0xffffff80fcd0bb60, RBP: 0xffffff80fcd0bb60, RSI: 0x0000000000000000, RDI: 0x0000000000000000
    R8:  0x0000000000000000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff80db953000, R13: 0x0000000000000000, R14: 0x0000000000000002, R15: 0x0000000000000000
    RFL: 0x0000000000010246, RIP: 0xffffff7f89c00654, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000010, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80fcd0b800 : 0xffffff800881d5f6
    0xffffff80fcd0b870 : 0xffffff80088b7b95
    0xffffff80fcd0ba40 : 0xffffff80088ce4ad
    0xffffff80fcd0ba60 : 0xffffff7f89c00654
    0xffffff80fcd0bb60 : 0xffffff7f89bea18c
    0xffffff80fcd0bbb0 : 0xffffff7f89bea0e2
    0xffffff80fcd0bbd0 : 0xffffff7f89bbb554
    0xffffff80fcd0bc00 : 0xffffff7f89435470
    0xffffff80fcd0bc40 : 0xffffff7f894353df
    0xffffff80fcd0bc60 : 0xffffff7f8943a6ec
    0xffffff80fcd0bcf0 : 0xffffff7f89432f20
    0xffffff80fcd0bd20 : 0xffffff7f89502cc7
    0xffffff80fcd0bd70 : 0xffffff8008c33b9b
    0xffffff80fcd0bdc0 : 0xffffff8008c62d57
    0xffffff80fcd0be30 : 0xffffff8008897cef
    0xffffff80fcd0be80 : 0xffffff8008820abd
    0xffffff80fcd0beb0 : 0xffffff8008810448
    0xffffff80fcd0bf00 : 0xffffff80088195fb
    0xffffff80fcd0bf70 : 0xffffff80088a5ad6
    0xffffff80fcd0bfb0 : 0xffffff80088ced13
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f89429000->0xffffff7f8945ffff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f88d86000
             com.apple.NVDAResman(8.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f89500 000->0xffffff7f89802fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f88d86000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f894c5000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f89429000
             com.apple.GeForce(8.0)[91C40470-82BA-329A-A9D7-4C70F28275FD]@0xffffff7f89bba000 ->0xffffff7f89c7cfff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f895 00000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f894c5000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f88d86000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f89429000
    BSD process name corresponding to current thread: WindowServer

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Help needed in interpreting panic log from kernel panic error

    My G4 iBook has started giving me kernel panic errors, often immediately after starting up. I haven't installed any new software or RAM recently. I've done a clean system install (completely clean - not an archive and install) then downloaded the combo update for 10.4.11. But the kernel panics are still happening from time to time. I've looked at the panic log, but it means nothing to me, so I'm hoping someone can help:
    Tue Dec 7 21:53:11 2010
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000005901F81E PC=0x000000000003FFD4
    Latest crash info for cpu 0:
    Exception state (sv=0x3CFE1280)
    PC=0x0003FFD4; MSR=0x00009030; DAR=0x5901F81E; DSISR=0x40000000; LR=0x0003FFBC; R1=0x22073970; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x000E99BC 0x0002BDCC 0x00304E60 0x00304FDC 0x0030309C 0x0030167C
    0x003009AC 0x002FCF6C 0x003009AC 0x002B7464 0x002EB314 0x0008B6E8 0x00029234 0x000233F8
    0x000ABEAC 0x3D266C74
    Proceeding back via exception chain:
    Exception state (sv=0x3CFE1280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x3CF81C80)
    PC=0x9000B348; MSR=0x0200F030; DAR=0xE0064000; DSISR=0x42000000; LR=0x9000B29C; R1=0xBFFF9EA0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
    Exception state (sv=0x3CFE1280)
    PC=0x0003FFD4; MSR=0x00009030; DAR=0x5901F81E; DSISR=0x40000000; LR=0x0003FFBC; R1=0x22073970; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x000E99BC 0x0002BDCC 0x00304E60 0x00304FDC 0x0030309C 0x0030167C
    0x003009AC 0x002FCF6C 0x003009AC 0x002B7464 0x002EB314 0x0008B6E8 0x00029234 0x000233F8
    0x000ABEAC 0x3D266C74
    Exception state (sv=0x3CF81C80)
    PC=0x9000B348; MSR=0x0200F030; DAR=0xE0064000; DSISR=0x42000000; LR=0x9000B29C; R1=0xBFFF9EA0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Message was edited by: Lynn Stephenson

    I didn't see anything that would indicate a specific problem. Understanding crash logs isn’t easy and it’s hard (sometimes impossible) to decipher the cause of the problem. Take a look at Apple’s Crash Reporter document at http://developer.apple.com/technotes/tn2004/tn2123.html
    Also look at Tutorial: An introduction to reading Mac OS X crash reports
    http://www.macfixit.com/article.php?story=20060309075929717
    Kernel panics are usually caused by a hardware problem – frequently RAM, a USB device or a Firewire device. What external devices do you have connected?
    To eliminate RAM being the problem, Look at this link: *Testing RAM* @ http://guides.macrumors.com/Testing_RAM Then download & use Memtest & Ramber.
    Running the Apple Hardware Test in Loop Mode is an excellent troubleshooting step for finding intermittent hardware problems. It is especially useful when troubleshooting intermittent kernel panics. If Loop Mode is supported by the version of the Apple Hardware Test you are using, you run the Extended Test in Loop Mode by pressing Control-L before starting the test. Looping On should appear in the right window. Then click the Extended Test button.The test will run continuously until a problem is found. If a problem is found, the test will cease to loop, indicating the problem it found. If the test fails, be sure to write down the exact message associated with the failure.In some cases, RAM problems did not show up until nearly 40 loops, so give it a good run.
    May be a solution on one of these links.
    Mac OS X Kernel Panic FAQ
    Mac OS X Kernel Panic FAQ
    Resolving Kernel Panics
    Avoiding and eliminating Kernel panics
    12-Step Program to Isolate Freezes and/or Kernel Panics
     Cheers, Tom

  • To anyone with a kernel panic error.

    I just solved my kernel panic error.
    I have tried all the different support, even had my macbook pro in for service 4 times without getting this error solved.
    Have the macbook pro with pentium dualcore 2,16 and samsung RAM.
    I tried swithing harddrive due support thought it was the harddrive that was corrupt. This did not change anything.
    Have done all of the support resets, this do not work.
    Try replacing the samsumg RAM. This did work, the kernel panic is gone.

    rick, whynchoo move along to 10.5.4, then, since yer so purrfek. Just kidding! You surely have; just haven't updated yer profile, Cap'n Snooty-off-the yacht ... Your post was on-point, except the last line seemed ... hurtful? We're all tryin, here.

  • Kernel: Read-error on swap-device (8:0:2778448)

    Last night I started par2 to repairing part of a large collection of file to make sure that the set of recovery data was good. This morning I was checking on it and saw "bus error (core dump)". I checked the systemd journal and saw the following.
    Oct 01 00:12:10 {computer-name} systemd-timesyncd[513]: interval/delta/delay/jitter/drift 2048s/-0.005s/0.083s/0.005s/+6ppm
    Oct 01 00:36:39 {computer-name} kernel: ata2.00: exception Emask 0x0 SAct 0x36c SErr 0x0 action 0x0
    Oct 01 00:36:59 {computer-name} kernel: ata2.00: irq_stat 0x40000008
    Oct 01 00:36:59 {computer-name} kernel: ata2.00: failed command: READ FPDMA QUEUED
    Oct 01 00:36:59 {computer-name} kernel: ata2.00: cmd 60/38:40:48:65:2a/00:00:00:00:00/40 tag 8 ncq 28672 in
    res 41/40:00:48:65:2a/00:00:00:00:00/40 Emask 0x409 (media error) <F>
    Oct 01 00:36:59 {computer-name} kernel: ata2.00: status: { DRDY ERR }
    Oct 01 00:37:00 {computer-name} kernel: ata2.00: error: { UNC }
    Oct 01 00:37:00 {computer-name} kernel: ata2.00: configured for UDMA/133
    Oct 01 00:37:00 {computer-name} kernel: sd 1:0:0:0: [sda] Unhandled sense code
    Oct 01 00:37:00 {computer-name} kernel: sd 1:0:0:0: [sda]
    Oct 01 00:37:00 {computer-name} kernel: Result: hostbyte=0x00 driverbyte=0x08
    Oct 01 00:37:00 {computer-name} kernel: sd 1:0:0:0: [sda]
    Oct 01 00:37:00 {computer-name} kernel: Sense Key : 0x3 [current] [descriptor]
    Oct 01 00:37:00 {computer-name} kernel: Descriptor sense data with sense descriptors (in hex):
    Oct 01 00:37:00 {computer-name} kernel: 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
    Oct 01 00:37:00 {computer-name} kernel: 00 2a 65 48
    Oct 01 00:37:00 {computer-name} kernel: sd 1:0:0:0: [sda]
    Oct 01 00:37:00 {computer-name} kernel: ASC=0x11 ASCQ=0x4
    Oct 01 00:37:00 {computer-name} kernel: sd 1:0:0:0: [sda] CDB:
    Oct 01 00:37:00 {computer-name} kernel: cdb[0]=0x28: 28 00 00 2a 65 48 00 00 38 00
    Oct 01 00:37:00 {computer-name} kernel: end_request: I/O error, dev sda, sector 2778440
    Oct 01 00:37:00 {computer-name} kernel: Read-error on swap-device (8:0:2778448)
    Oct 01 00:37:01 {computer-name} kernel: Read-error on swap-device (8:0:2778456)
    Oct 01 00:37:01 {computer-name} kernel: Read-error on swap-device (8:0:2778464)
    Oct 01 00:37:01 {computer-name} kernel: Read-error on swap-device (8:0:2778472)
    Oct 01 00:37:01 {computer-name} kernel: Read-error on swap-device (8:0:2778480)
    Oct 01 00:37:01 {computer-name} kernel: Read-error on swap-device (8:0:2778488)
    Oct 01 00:37:02 {computer-name} kernel: Read-error on swap-device (8:0:2778496)
    Oct 01 00:37:02 {computer-name} kernel: ata2: EH complete
    Oct 01 00:36:56 {computer-name} systemd-coredump[2139]: Coredump of 667 (par2) is larger than configured processing limit, refusing.
    Oct 01 00:36:57 {computer-name} systemd-coredump[2139]: Process 667 (par2) of user 1000 dumped core.
    Oct 01 00:46:18 {computer-name} systemd-timesyncd[513]: interval/delta/delay/jitter/drift 2048s/+0.000s/0.071s/0.005s/+6ppm
    A quick Google search lead to the assumption that this is due to a bad block, however I just tested it for bad block a few months ago. I'll check it again this after noon after work, but for now I wanted to get some other opinions. See if there is some other explanaition beyound a bad block.
    [edit] The result of "smartctl -a /dev/sda". It looks like I might have an issue with my cable or something from the UDMA count.
    === START OF INFORMATION SECTION ===
    Model Family: Western Digital VelociRaptor
    Device Model: WDC WD6000HLHX-01JJPV0
    Serial Number: {redacted}
    LU WWN Device Id: 5 0014ee 658312eaa
    Firmware Version: 04.05G04
    User Capacity: 600,127,266,816 bytes [600 GB]
    Sector Size: 512 bytes logical/physical
    Rotation Rate: 10000 rpm
    Device is: In smartctl database [for details use: -P show]
    ATA Version is: ATA8-ACS (minor revision not indicated)
    SATA Version is: SATA 2.6, 6.0 Gb/s
    Local Time is: Wed Oct 1 15:29:50 2014 EDT
    SMART support is: Available - device has SMART capability.
    SMART support is: Enabled
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    General SMART Values:
    Offline data collection status: (0x82) Offline data collection activity
    was completed without error.
    Auto Offline Data Collection: Enabled.
    Self-test execution status: ( 0) The previous self-test routine completed
    without error or no self-test has ever
    been run.
    Total time to complete Offline
    data collection: ( 7860) seconds.
    Offline data collection
    capabilities: (0x7b) SMART execute Offline immediate.
    Auto Offline data collection on/off support.
    Suspend Offline collection upon new
    command.
    Offline surface scan supported.
    Self-test supported.
    Conveyance Self-test supported.
    Selective Self-test supported.
    SMART capabilities: (0x0003) Saves SMART data before entering
    power-saving mode.
    Supports SMART auto save timer.
    Error logging capability: (0x01) Error logging supported.
    General Purpose Logging supported.
    Short self-test routine
    recommended polling time: ( 2) minutes.
    Extended self-test routine
    recommended polling time: ( 84) minutes.
    Conveyance self-test routine
    recommended polling time: ( 5) minutes.
    SCT capabilities: (0x303d) SCT Status supported.
    SCT Error Recovery Control supported.
    SCT Feature Control supported.
    SCT Data Table supported.
    SMART Attributes Data Structure revision number: 16
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
    1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
    3 Spin_Up_Time 0x0027 234 232 021 Pre-fail Always - 3291
    4 Start_Stop_Count 0x0032 099 099 000 Old_age Always - 1120
    5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
    7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
    9 Power_On_Hours 0x0032 095 095 000 Old_age Always - 3963
    10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
    11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
    12 Power_Cycle_Count 0x0032 099 099 000 Old_age Always - 1060
    192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 120
    193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 999
    194 Temperature_Celsius 0x0022 120 114 000 Old_age Always - 30
    196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
    197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
    198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
    199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 10
    200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
    SMART Error Log Version: 1
    No Errors Logged
    SMART Self-test log structure revision number 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Extended offline Completed without error 00% 5 -
    # 2 Extended offline Aborted by host 90% 4 -
    # 3 Conveyance offline Aborted by host 90% 4 -
    # 4 Short offline Completed without error 00% 0 -
    SMART Selective self-test log data structure revision number 1
    SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
    1 0 0 Not_testing
    2 0 0 Not_testing
    3 0 0 Not_testing
    4 0 0 Not_testing
    5 0 0 Not_testing
    Selective self-test flags (0x0):
    After scanning selected spans, do NOT read-scan remainder of disk.
    If Selective self-test is pending on power-up, resume after 0 minute delay.
    [edit2] Just to make sure, I checked and found that none of the other drives have UDMA CRC errors, even the one that shares the same controller.
    [edit3] Badblocks came back negative, and the previous time I tried this, just the night before, I didn't have any issues. I forgot to mention that last bit.
    Last edited by nstgc (2014-10-01 20:02:58)

    nomorewindows wrote:Try smartctl to see if it is showing anything.
    I will when I get home.
    I just remembered that I have another thread on these forums about my Steam library disappearing. My steam library is on a raid0 btrfs volume that does not include the drive that the swap partition is on. The point being that if this is a drive issue, it is unrelated to the previous problem. if its a different hardware issue or a software issue, it could still be related.
    [edit] The SMART information is in the opening thread now. It looks like it may be a cable issue.
    [edit2] Just to make sure, I checked and found that none of the other drives have UDMA CRC errors, even the one that shares the same controller.
    [edit3] Badblocks came back negative, and the previous time I tried this, just the night before, I didn't have any issues. I forgot to mention that last bit.
    Last edited by nstgc (2014-10-01 20:03:09)

  • Logical port error (WS_LOGICAL_PORT) when consuming WS in PI

    Hi All,
    I am trying to integrate simple Currency Conversion Web Service witm my ECC program.
    Program displays two fields in the selection screen (Currency From and Currency To)
    WS is: http://www.webservicex.com/ws/WSDetails.aspx?WSID=10&CATID=2
    The scenario is as below:
    Proxy (Z-PROGRAM ) <-sync-> PI <-sync-> WS (Currency Convertor)
    Looks like ABAP Proxy is done ok.
    PI configuration also looks ok as I am trying it in IB's Test Configuration tool - all steps are 'Green / Passed'
    Based on WSDL 3 interfaces were generated:
    CurrencyConvertorHttpPost
    CurrencyConvertorHttpGet
    CurrencyConvertorSoap
    I am using Soap one... along with WS Communication Channel
    CC has configuren itself based on WSDL likn provided,
    Technical Transport Settings were set to:
    Target Host:               www.webservicex.net
    Service Name / Port:     -1
    URL Access Path:          /CurrencyConvertor.asmx
    Transport Binding:          SOAP 1.1 Using HTTP
    Why am I getting logical port error?
    Error while determining logical port Cannot find logical port for agreement EAC1E5CF03FD3B2C827ADDECA2EA6B26 and interface urn:webservicex:com:test:currencyrates.CurrencyConvertorSoap
    I searched the web for error message and I found obsolete logical port configuration using LPCONFIG, and also some 'new' approach with SOAMANAGER LogPort configuraton
    (When I try to do this as suggested in [document |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b04408cc-f10e-2c10-b5b7-af11026b2393?QuickLink=index&overridelayout=true]
    then I cannot see my newly created services on the list)
    ... but is this the right track to follow?
    Should I run Logical Port configuration in PI?
    I would appreciate your comments on this.
    Regards,
    bob.

    Hello,
    Why am I getting logical port error?
    Error while determining logical port Cannot find logical port for agreement EAC1E5CF03FD3B2C827ADDECA2EA6B26 and interface urn:webservicex:com:test:currencyrates.CurrencyConvertorSoap
    WS Adapter is used for those that are using WS-RM (Webservice-Reliable Messaging)...See this blog
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b00bbb77-75bc-2a10-6b9a-a6f8161515a6, but I think for now this is limited to SAP-to-SAP connections. That is why in your error it is searching for a logical port (ABAP Proxy).
    You should be using the SOAP Receiver Adapter instead.
    Hope this helps,
    Mark

  • Kernel Panic Errors 0x0039BDDF

    Hi everyone in the forum i am new here and dont know whether this is the right place to post this question i tried searching the forums and the faq's on this site first but didnt find any solution i would be thank ful if some one could help me with this problem.
    ok My problem is as follows:
    I have a mac book with mac os x 10.4 tiger installed.I've installed windows as well using boot camp as in the documentation.I regularly allow my mac book to update as a best practice.I've had no problems for the past one and half year everything was fine but it was three days back that mac failed to start.No error messages just a grey screen with a small folder image blinking on the screen and all this happens after almost 15 mins from the time i start the mac book.I debugged the problem and this error message was displayed :
    error : Panic (cpu 0 caller 0x0039BDDF): unable to find driver for this platform ACPI.
    and a long list of error messages with an additional 'needs restart' error.I searched the web and found this solution at this link
    http://www.macfixitforums.com/showflat.php?Cat=&Board=tiger&Number=827659&page=0 &view=collapsed&sb=5&o=31&fpart=1
    My basic problem is i dont find the hard drive at all no mac files nor the windows files.Even if I connect an external hard drive i dont find the files in external hard drive.What is the exact problem and how do i solve it I have very important files that i cannot avoid.Even if ignore this importance of files in the mac book i am also unable to reinstall mac because the hard drive where to install mac is not shown at all.
    Hope some one responds to my problem......
    Thankyou...

    The Kernel Panic error has a downloadable fix. That might cause other problems with the computer, as it did on mine. I unfortunately do no remember the name of the fix, but if all you care about is not having a kernel panic error fixed, it works.

  • Oracle RDBMS Kernel Executable Error

    Hi People
    First of all let me say all you my English is not very good.
    I am from Mozambique and now we are working with Oracle 10g on Windows Server 2003 OS.We have a lot of servers, all of them have more than one million records.But one of them now is displaying the following message error:
    ORACLE RDBMS KERNEL EXECUTABLE ERROR.
    This message appears when i start the server (means that appear when i start the database). I think the problem is related with file ORACLE.EXE...perhaps is damaged or corrupted.Until now we still connect the database but i don't know the real dimension of this error, i don't if i wiil wake up tomorrow with my database crashed or not.
    How can i fix this error?Is possible to repair that file without losing data?
    Afonso Pene

    This is a windows problem. What comes into my mind:
    1. Check event log, are there any other messages. Are there any windows error codes.
    2. If problem after one more restart still exists, then think about reinstalling oracle or restoring oracle.exe from opsystem backup if You have such.
    Seems oracle services are automaticaly started when system reboots?
    You can try to put them into manual mode and then restart server and try to start them manualy - will error again appear or this was one time error.
    Anyway, debug should be done from windows side.
    If database is running just fine and users are not complaining, then maybe it's just windows error reporting as it suddenly went down and when came up again, it reported some errors. as a result no actions should be done.

  • Trying to boot from restore disc causes kernel panic error

    Hi I am currently selling my MacBook Pro that is 6 months old. I wanted to pop in the restore disc today and format the drive and install Snow Leopard for the new owner. When I put in the  restore disc that came with the computer it begins the boot process(I can here it spinning up) but then I get a kernel panic error. I have tried testing the ram and putting in different ram but still get the same error every time. I haven't done anything to the hardware and have no issues with the dvd drive previously. I have confirmed this indeed the disc that was shipped with the computer. Any help would be greatly appreciated.
    Thanks

    Erasing disks securely 
    Start up from your install disc, go to Disk Utility and select the disk and click erase - to securely erase data click Security Options and Erase Free Space which will entirely wipe your disk, overwriting it with zeros so that no data is recoverable.
    Restoring your computer’s software

  • Kernel Panic error EVERY time I restart!

    I have a Powerbook G4 and every time I start my machine I get the kernel panic error. I just got my computer back from Apple -- it was getting it's second logic board replacement! I have never gotten this error before now.
    I have done the Hardware Test, disk utility, Applecare Techtool Deluxe --- it passes all the tests. I tried repairing from the install disk and even reinstalling the operating system, but it won't let me. The only thing that works temporarily is resetting thr PMU. If I do that before I start up the machine it works fine, but as soon as I shut down I get the same error message. I'm hoping that I don't have to take it back the Apple Store. I would greatly appreciate anyone input. I've already spent about 5 hours looking online and numerous sites with not much luck except the PMU reset. Below is one of the logs from the Kernel error.
    panic(cpu 0): 0x200 - Machine check
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x000857F4 0x00085C24 0x000287B4 0x0008F6A8 0x000927B8
    Proceeding back via exception chain:
    Exception state (sv=0x1726A000)
    PC=0x0008C22C; MSR=0x00141000; DAR=0x0008BFFE; DSISR=0x40000000; LR=0x000025FC; R1=0x003FFFFF; XCP=0x00000008 (0x200 - Machine check)
    Backtrace:
    backtrace terminated - unaligned frame address: 0x003FFFFF
    Kernel version:
    Darwin Kernel Version 6.8:
    Wed Sep 10 15:20:55 PDT 2003; root:xnu/xnu-344.49.obj~2/RELEASE_PPC
    THANK YOU!

    ....But I ran the Hardware Test Disk and it scanned everything including the RAM and it was fine. Do you think it's something one of the Technicans at the Genius Bar could have done when they were replacing the logic board? Because I never got this error before that. Also, my battery won't charge right now either. I've only had this machine for 3 years and it's already needed 2 logic boards and they replaced the harddrive with the first logic board. It's not even used everyday!! This is turning into a very expensive paper weight. I love Macs but I will think twice before I ever get another one!!
    The only reason I wanted to fix it myself is because the closest Apple Store is about an hour and a half away. And I don't want to send it in to Apple because my warranty has expired.

Maybe you are looking for