Bad performance!, Bad performance!

Hi!
Query1 and the queries of the inline views of query2 separate are about 1 sec response-time, but when i try to get multiple value into one collumn with SYS_CONNECT_BY_PATH than the response-time is >18 minutes(didn't finish the query). Query1 is my original query with good performance and query2 is what i have tried with the multiple values in one collumn. I have tried to get rid of the group by in the third inline view and have tried to combine the second and third view but that didn't work. I also don't know if the second query will give me the right results. The results of query1 and the inline_views of query2 seems to be accurate though.
Can anybody help me with tuning this query?
QUERY1:
SELECT DISTINCT inline_view.u_plot_number AS Research_Group,
       inline_view.external_reference AS Parental_Line,
       inline_view.u_box_code AS Box,
       inline_view.description AS Test,
        CASE WHEN inline_view_finalresult.ResultCount < 8
            THEN null
            ELSE CASE WHEN inline_view_finalresult.ResultDistinct > 1
                      THEN 'spl'
                      ELSE inline_view_finalresult.ResultFinal
                 END
       END AS Result
FROM ( SELECT DISTINCT sdg.sdg_id,
              sample.sample_id,
              test_template.test_template_id,
              sample_user.u_plot_number,
              sdg.external_reference,
              sample_user.u_box_code,
              test.description
       FROM sdg,sdg_user,sample,sample_user,aliquot,test,test_template
       WHERE sdg.sdg_id = sdg_user.sdg_id
          AND sdg.sdg_id = sample.sdg_id
          AND sample.sample_id = sample_user.sample_id
          AND aliquot.sample_id = sample.sample_id
          AND test.aliquot_id = aliquot.aliquot_id
          AND test_template.test_template_id = test.test_template_id
          AND sdg.sdg_id BETWEEN 559 ANd 566
     ) inline_view,
     ( SELECT DISTINCT u_finalresult_user.u_sdg_id,
              u_finalresult_user.u_calculated_result,
              u_finalresult_user.u_overruled_result,
              u_finalresult_user.u_sample_id,
              u_finalresult_user.u_test_template_id,
                 COUNT(NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                    OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultCount,
                   COUNT(DISTINCT NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                       OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultDistinct,
                  NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) as Resultfinal,
                 ROW_NUMBER()
                    OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)
                     ORDER BY u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id ) AS Ranking
        FROM u_finalresult_user
       WHERE u_finalresult_user.u_requested = 'T'
           AND NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) <> 'X'
     ) inline_view_finalresult
WHERE inline_view.sample_id = inline_view_finalresult.u_sample_id (+)
   AND inline_view.test_template_id = inline_view_finalresult.u_test_template_id (+)
   AND inline_view_finalresult.Ranking =1
ORDER BY inline_view.description,inline_view.u_box_codeQUERY2:
SELECT DISTINCT inline_view.u_plot_number AS Research_Group,
       inline_view.external_reference AS Parental_Line,
       inline_view.u_box_code AS Box,
       inline_view.description AS Test,
      CASE WHEN inline_view_finalresult.ResultCount < 8
            THEN null
            ELSE CASE WHEN inline_view_finalresult.ResultDistinct > 1
                      THEN 'spl'
                      ELSE inline_view_finalresult.ResultFinal
                 END
      END AS Result,
      CASE WHEN LEVEL >=2
           THEN SUBSTR(SYS_CONNECT_BY_PATH(ValCount,','),2)
      END AS Spl
FROM ( SELECT DISTINCT sdg.sdg_id,
              sample.sample_id,
              test_template.test_template_id,
              sample_user.u_plot_number,
              sdg.external_reference,
              sample_user.u_box_code,
              test.description
       FROM sdg,sdg_user,sample,sample_user,aliquot,test,test_template
       WHERE sdg.sdg_id = sdg_user.sdg_id
          AND sdg.sdg_id = sample.sdg_id
          AND sample.sample_id = sample_user.sample_id
          AND aliquot.sample_id = sample.sample_id
          AND test.aliquot_id = aliquot.aliquot_id
          AND test_template.test_template_id = test.test_template_id
          AND sdg.sdg_id BETWEEN 559 ANd 566
     ) inline_view,
     ( SELECT DISTINCT u_finalresult_user.u_sdg_id,
              u_finalresult_user.u_calculated_result,
              u_finalresult_user.u_overruled_result,
              u_finalresult_user.u_sample_id,
              u_finalresult_user.u_test_template_id,
           COUNT(NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                 OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultCount,orumID=75, Hi!
Query1 and the queries of the inline views of query2 separate are about 1 sec response-time, but when i try to get multiple value into one collumn with SYS_CONNECT_BY_PATH than the response-time is >18 minutes(didn't finish the query). Query1 is my original query with good performance and query2 is what i have tried with the multiple values in one collumn. I have tried to get rid of the group by in the third inline view and have tried to combine the second and third view but that didn't work. I also don't know if the second query will give me the right results. The results of query1 and the inline_views of query2 seems to be accurate though.
Can anybody help me with tuning this query?
QUERY1:
[pre]
SELECT DISTINCT inline_view.u_plot_number AS Research_Group,
       inline_view.external_reference AS Parental_Line,
       inline_view.u_box_code AS Box,
       inline_view.description AS Test,
        CASE WHEN inline_view_finalresult.ResultCount < 8
            THEN null
            ELSE CASE WHEN inline_view_finalresult.ResultDistinct > 1
                      THEN 'spl'
                      ELSE inline_view_finalresult.ResultFinal
                 END
       END AS Result
FROM ( SELECT DISTINCT sdg.sdg_id,
              sample.sample_id,
              test_template.test_template_id,
              sample_user.u_plot_number,
              sdg.external_reference,
              sample_user.u_box_code,
              test.description
       FROM sdg,sdg_user,sample,sample_user,aliquot,test,test_template
       WHERE sdg.sdg_id = sdg_user.sdg_id
          AND sdg.sdg_id = sample.sdg_id
          AND sample.sample_id = sample_user.sample_id
          AND aliquot.sample_id = sample.sample_id
          AND test.aliquot_id = aliquot.aliquot_id
          AND test_template.test_template_id = test.test_template_id
          AND sdg.sdg_id BETWEEN 559 ANd 566
     ) inline_view,
     ( SELECT DISTINCT u_finalresult_user.u_sdg_id,
              u_finalresult_user.u_calculated_result,
              u_finalresult_user.u_overruled_result,
              u_finalresult_user.u_sample_id,
              u_finalresult_user.u_test_template_id,
                 COUNT(NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                    OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id))                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Something did go wrong in the previous post so this is the whole message
Hi!
Query1 and the queries of the inline views of query2 separate are about 1 sec response-time, but when i try to get multiple value into one collumn with SYS_CONNECT_BY_PATH than the response-time is >18 minutes(didn't finish the query). Query1 is my original query with good performance and query2 is what i have tried with the multiple values in one collumn. I have tried to get rid of the group by in the third inline view and have tried to combine the second and third view but that didn't work. I also don't know if the second query will give me the right results. The results of query1 and the inline_views of query2 seems to be accurate though.
Can anybody help me with tuning this query?
QUERY1:
SELECT DISTINCT inline_view.u_plot_number AS Research_Group,
       inline_view.external_reference AS Parental_Line,
       inline_view.u_box_code AS Box,
       inline_view.description AS Test,
        CASE WHEN inline_view_finalresult.ResultCount < 8
            THEN null
            ELSE CASE WHEN inline_view_finalresult.ResultDistinct > 1
                      THEN 'spl'
                      ELSE inline_view_finalresult.ResultFinal
                 END
       END AS Result
FROM ( SELECT DISTINCT sdg.sdg_id,
              sample.sample_id,
              test_template.test_template_id,
              sample_user.u_plot_number,
              sdg.external_reference,
              sample_user.u_box_code,
              test.description
       FROM sdg,sdg_user,sample,sample_user,aliquot,test,test_template
       WHERE sdg.sdg_id = sdg_user.sdg_id
          AND sdg.sdg_id = sample.sdg_id
          AND sample.sample_id = sample_user.sample_id
          AND aliquot.sample_id = sample.sample_id
          AND test.aliquot_id = aliquot.aliquot_id
          AND test_template.test_template_id = test.test_template_id
          AND sdg.sdg_id BETWEEN 559 ANd 566
     ) inline_view,
     ( SELECT DISTINCT u_finalresult_user.u_sdg_id,
              u_finalresult_user.u_calculated_result,
              u_finalresult_user.u_overruled_result,
              u_finalresult_user.u_sample_id,
              u_finalresult_user.u_test_template_id,
                 COUNT(NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                    OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultCount,
                   COUNT(DISTINCT NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                       OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultDistinct,
                  NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) as Resultfinal,
                 ROW_NUMBER()
                    OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)
                     ORDER BY u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id ) AS Ranking
        FROM u_finalresult_user
       WHERE u_finalresult_user.u_requested = 'T'
           AND NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) <> 'X'
     ) inline_view_finalresult
WHERE inline_view.sample_id = inline_view_finalresult.u_sample_id (+)
   AND inline_view.test_template_id = inline_view_finalresult.u_test_template_id (+)
   AND inline_view_finalresult.Ranking =1
ORDER BY inline_view.description,inline_view.u_box_codeQUERY2:
SELECT DISTINCT inline_view.u_plot_number AS Research_Group,
       inline_view.external_reference AS Parental_Line,
       inline_view.u_box_code AS Box,
       inline_view.description AS Test,
      CASE WHEN inline_view_finalresult.ResultCount < 8
            THEN null
            ELSE CASE WHEN inline_view_finalresult.ResultDistinct > 1
                      THEN 'spl'
                      ELSE inline_view_finalresult.ResultFinal
                 END
      END AS Result,
      CASE WHEN LEVEL >=2
           THEN SUBSTR(SYS_CONNECT_BY_PATH(ValCount,','),2)
      END AS Spl
FROM ( SELECT DISTINCT sdg.sdg_id,
              sample.sample_id,
              test_template.test_template_id,
              sample_user.u_plot_number,
              sdg.external_reference,
              sample_user.u_box_code,
              test.description
       FROM sdg,sdg_user,sample,sample_user,aliquot,test,test_template
       WHERE sdg.sdg_id = sdg_user.sdg_id
          AND sdg.sdg_id = sample.sdg_id
          AND sample.sample_id = sample_user.sample_id
          AND aliquot.sample_id = sample.sample_id
          AND test.aliquot_id = aliquot.aliquot_id
          AND test_template.test_template_id = test.test_template_id
          AND sdg.sdg_id BETWEEN 559 ANd 566
     ) inline_view,
     ( SELECT DISTINCT u_finalresult_user.u_sdg_id,
              u_finalresult_user.u_calculated_result,
              u_finalresult_user.u_overruled_result,
              u_finalresult_user.u_sample_id,
              u_finalresult_user.u_test_template_id,
           COUNT(NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                 OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultCount,
              COUNT(DISTINCT NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result))
                OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS ResultDistinct,
              NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) as Resultfinal,
           ROW_NUMBER()
              OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)
             ORDER BY u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id ) AS Ranking
      FROM u_finalresult_user
       WHERE u_finalresult_user.u_requested = 'T'
         AND NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) != 'X'
     ) inline_view_finalresult,
    ( SELECT CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id),
              NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result),
           TO_CHAR(COUNT(*)) || 'x' || NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) As ValCount,
           ROW_NUMBER()
              OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)
                ORDER BY COUNT(*) DESC, NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result)) AS Rank,
           COUNT(*)
              OVER (PARTITION BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id)) AS MaxLevel  
      FROM u_finalresult_user
      WHERE u_finalresult_user.u_requested = 'T'
        AND NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result) != 'X'
      GROUP BY CONCAT(u_finalresult_user.u_sdg_id,u_finalresult_user.u_test_template_id),NVL(u_finalresult_user.u_overruled_result,u_finalresult_user.u_calculated_result)
WHERE inline_view.sample_id = inline_view_finalresult.u_sample_id (+)
   AND inline_view.test_template_id = inline_view_finalresult.u_test_template_id (+)
   AND inline_view_finalresult.Ranking =1
   AND LEVEL = MaxLevel
     START WITH rank = 1 CONNECT BY
     PRIOR inline_view_finalresult.u_sdg_id = inline_view_finalresult.u_sdg_id
     AND PRIOR inline_view_finalresult.u_test_template_id = inline_view_finalresult.u_test_template_id
     AND PRIOR Rank = Rank - 1

Similar Messages

  • Bridge CS3 on opening: "This Application may perform badly"

    I recently restored my PC to factory condition to troubleshoot performance problems in CS3 Production Premium. I reinstalled all my programs, but it got a little messy when I restored my backup files from an external hard drive. Lots of files ended up in different locations and some were duplicated.
    I wanted to use Bridge to try to reorganize everything, but I get this message when opening Bridge:
    "This application requires an Intel 4 Pentium Celeron, Intel Core Duo or Intel Core 2 Compatible processor (C01/6/5895)"
    and
    "This application may perform badly. Are you sure you want to continue?"
    I am running Vista Ultimate 64-bit on a 2-month old HP Pavilion d5000t desktop with an Intel Core(TM)2 Quad CPU @ 2.66GHz and 8GB RAM which should exceed the minimum requirement.
    What should I do? Performance on my PC is still not good. Premiere opens without a message, but is sluggish; Encore freezes; forget about After Effects.

    And or course the fact that the restore of the backup was "a little messy"
    may not bode well--it's possible some files were restored that should not
    have been and that parts of the OS or Apps are hosed.
    My advice would be to deactivate/uninstall the Adobe apps, restore the
    system again to factory condition, install any operating system updates, and
    then reinstall your Adobe apps. Now check them out: are they running at the
    expected speed? If so--and they probably will be--then carefully and
    selectively restore exactly the data you need to restore and to the proper
    locations. Be careful that your backup files are just data and not program
    files or parts of program files.
    Trez

  • Bad file system performance in OS X Mavericks

    After installing OS X Mavericks I experience bad file system performance approx. three times per day: Opening Finder and trying to a access a directory gets my MacBook Air (1.8 GHz Intel Core i7 4 GB 1333 MHz DDR3 with 250 GB Flash) stuck every approx. 10th time, not always. Same on my brandnew MacBook Pro 2.6 GHz Intel Core i7, 16 GB 1600 MHz DDR3 with 1 TB Flash. This is not a hardware problem. It is a Mavericks problem. Under Mountain Lion I did not have any problems.
    Is there any way to get rid of the annoying wait cycles?

    Output of EtreCheck follows:
    Hardware Information:
              MacBook Pro (Retina, 15-inch, Late 2013)
              MacBook Pro - model: MacBookPro11,2
              1 2.6 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel Iris Pro - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
              OS X 10.9.1 (13B3116) - Uptime: 1 day 20:52:39
    Disk Information:
              APPLE SSD SM1024F disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) /: 999,7 GB (797,68 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Internal Memory Card Reader
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Logitech USB Mouse
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              org.virtualbox.kext.VBoxDrv          (4.1.8)
              org.virtualbox.kext.VBoxUSB          (4.1.8)
              com.avatron.AVExVideo          (1.7 - SDK 10.8)
              net.telestream.driver.TelestreamAudio          (1.0.4 - SDK 10.6)
              com.avatron.AVExFramebuffer          (1.7 - SDK 10.8)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded]          com.adobe.fpsaud.plist
              [loaded]          com.barebones.textwrangler.plist
              [loaded]          com.google.keystone.daemon.plist
              [loaded]          com.microsoft.office.licensing.helper.plist
              [loaded]          org.gpgtools.gpgmail.patch-uuid.plist
              [loaded]          org.macosforge.xquartz.privileged_startx.plist
    Launch Agents:
              [not loaded]          com.adobe.AAM.Updater-1.0.plist
              [loaded]          com.google.keystone.agent.plist
              [loaded]          org.gpgtools.gpgmail.enable-bundles.plist
              [loaded]          org.gpgtools.gpgmail.patch-uuid-user.plist
              [loaded]          org.gpgtools.Libmacgpg.xpc.plist
              [loaded]          org.gpgtools.macgpg2.fix.plist
              [loaded]          org.gpgtools.macgpg2.shutdown-gpg-agent.plist
              [loaded]          org.gpgtools.macgpg2.updater.plist
              [loaded]          org.macosforge.xquartz.startx.plist
    User Launch Agents:
              [loaded]          com.adobe.ARM.[...].plist
              [not loaded]          org.virtualbox.vboxwebsrv.plist
    User Login Items:
              Aktivitätsanzeige
              iTunesHelper
              SpeechSynthesisServer
              Microsoft Database Daemon
              EvernoteHelper
              ScreenFlowHelper
              AdobeResourceSynchronizer
              ScreenFlowHelper
              Dropbox
              Google Drive
              AirDisplayStatusItem
              ScreenCapture
              Air Display Host
              Google Chrome
              fuspredownloader
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
              GPGPreferences
              Pastebot Sync
    Internet Plug-ins::
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8
              FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6
              Default Browser: Version: 537 - SDK 10.9
              Flash Player: Version: 11.9.900.170 - SDK 10.6
              QuickTime Plugin: Version: 7.7.3
              o1dbrowserplugin: Version: 4.9.1.16010
              npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5
              googletalkbrowserplugin: Version: 4.9.1.16010
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
    User Internet Plug-ins::
              WebEx64: Version: 1.0 - SDK 10.6
              Google Earth Web Plug-in: Version: 7.1
    Bad Fonts:
              None
    Old applications:
              Audacity:          Version: 2.0.3.0 - SDK 10.4
                        /Applications/Audacity/Audacity.app
              Cisco WebEx Meetings:          Version: 1211.02.2808.0 - SDK 10.5
                        .../WebEx Folder/12_1324/Meeting Center.app
              Keynote:          Version: 5.3 - SDK 10.5
                        /Applications/iWork '09/Keynote.app
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        My Passport [Local] (Last used)
                        Total size: 931.16 GB
                        Total number of backups: 51
                        Oldest backup: 2011-12-16 12:40:10 +0000
                        Last backup: 2013-12-08 09:13:22 +0000
                        Size of backup disk: Excellent
                                  Backup size 931.16 GB > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  13%          coreaudiod
                  10%          thunderbird
                   9%          GarageBand
                   3%          WindowServer
                   1%          Activity Monitor
    Top Processes by Memory:
              1.52 GB          GarageBand
              377 MB          thunderbird
              360 MB          WindowServer
              279 MB          Preview
              197 MB          Safari
    Virtual Memory Statistics:
              7.41 GB          Free RAM
              5.80 GB          Active RAM
              858 MB          Inactive RAM
              1.63 GB          Wired RAM
              1.57 GB          Page-ins
              0 B          Page-outs

  • How bad is the performance hit with RTMPT?

    In a conversation with engineers recently at a CDN it was suggested to me that streaming all video over RTMPT only was a viable solution to the barriers posed by firewalls and proxies blocking port 1935.  They indicated that they had seen no signifigant performance degradation with tunneling and that many of their clients were making the switch from "rollover" type connection models to connection via RTMPT only.
    This ran counter to my notion of the process.  I have always thought the packet overhead was signifigant.
    Is it?  How bad is the performance hit for streaming live h.264 video?

    Hmmm...  That's quite a hit.
    I'm trying to determine the best strategy for reaching the most people with the least performance hit.  A guy lays out his strategy here:
    http://www.kensodev.com/2010/02/19/rtmp-being-blocked-by-firewalls-flash-media-server/
    He basically says ditch 1935.  Never use it.  Always use 80.  Like this:
    rtmp://your_ip_address:80/app_name
    If that fails, do this:
    rtmpt://your_ip_address:80/app_name
    Does that seem valid?  Does that first option avoid the perfomance hit of tunnelling while getting you more connections?  If so, it makes me think there is no benefit at all to connecting via 1935.

  • Mount: wrong fs type, bad option, bad superblock on floppy

    Since I switched to kernel 2.6.1, I can no longer mount floppys.
    mount: wrong fs type, bad option, bad superblock on /dev/floppy/0,
    or too many mounted file systems
    I thought some filesystems might be compiled wrong, or the fstab is not OK, but I can't find any mistake.
    If some prof could have a look, I am sorry for the long quotes.
    Kernel Config
    # Automatically generated make config: don't edit
    CONFIG_X86=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    CONFIG_CLEAN_COMPILE=y
    CONFIG_STANDALONE=y
    CONFIG_BROKEN_ON_SMP=y
    # General setup
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_BSD_PROCESS_ACCT=y
    CONFIG_SYSCTL=y
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    CONFIG_IOSCHED_DEADLINE=y
    # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
    # Loadable module support
    CONFIG_MODULES=y
    CONFIG_MODULE_UNLOAD=y
    CONFIG_MODULE_FORCE_UNLOAD=y
    CONFIG_OBSOLETE_MODPARM=y
    CONFIG_MODVERSIONS=y
    CONFIG_KMOD=y
    # Processor type and features
    CONFIG_X86_PC=y
    # CONFIG_X86_VOYAGER is not set
    # CONFIG_X86_NUMAQ is not set
    # CONFIG_X86_SUMMIT is not set
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_VISWS is not set
    # CONFIG_X86_GENERICARCH is not set
    # CONFIG_X86_ES7000 is not set
    # CONFIG_M386 is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    # CONFIG_M686 is not set
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    CONFIG_MK7=y
    # CONFIG_MK8 is not set
    # CONFIG_MELAN is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP2 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    # CONFIG_X86_GENERIC is not set
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_GOOD_APIC=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_USE_3DNOW=y
    CONFIG_HPET_TIMER=y
    CONFIG_HPET_EMULATE_RTC=y
    # CONFIG_SMP is not set
    CONFIG_PREEMPT=y
    CONFIG_X86_UP_APIC=y
    CONFIG_X86_UP_IOAPIC=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    # CONFIG_X86_MCE_NONFATAL is not set
    # CONFIG_X86_MCE_P4THERMAL is not set
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    # CONFIG_MICROCODE is not set
    # CONFIG_X86_MSR is not set
    # CONFIG_X86_CPUID is not set
    # CONFIG_EDD is not set
    # CONFIG_NOHIGHMEM is not set
    # CONFIG_HIGHMEM4G is not set
    CONFIG_HIGHMEM64G=y
    CONFIG_HIGHMEM=y
    CONFIG_X86_PAE=y
    CONFIG_HIGHPTE=y
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    CONFIG_HAVE_DEC_LOCK=y
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_SOFTWARE_SUSPEND is not set
    # CONFIG_PM_DISK is not set
    # ACPI (Advanced Configuration and Power Interface) Support
    # CONFIG_ACPI is not set
    # APM (Advanced Power Management) BIOS Support
    CONFIG_APM=y
    # CONFIG_APM_IGNORE_USER_SUSPEND is not set
    # CONFIG_APM_DO_ENABLE is not set
    # CONFIG_APM_CPU_IDLE is not set
    # CONFIG_APM_DISPLAY_BLANK is not set
    # CONFIG_APM_RTC_IS_GMT is not set
    # CONFIG_APM_ALLOW_INTS is not set
    # CONFIG_APM_REAL_MODE_POWER_OFF is not set
    # CPU Frequency scaling
    # CONFIG_CPU_FREQ is not set
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GODIRECT is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    # CONFIG_PCI_USE_VECTOR is not set
    # CONFIG_PCI_LEGACY_PROC is not set
    CONFIG_PCI_NAMES=y
    CONFIG_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    CONFIG_HOTPLUG=y
    # PCMCIA/CardBus support
    CONFIG_PCMCIA=y
    CONFIG_YENTA=y
    CONFIG_CARDBUS=y
    CONFIG_I82092=y
    CONFIG_I82365=y
    CONFIG_TCIC=y
    CONFIG_PCMCIA_PROBE=y
    # PCI Hotplug Support
    CONFIG_HOTPLUG_PCI=y
    CONFIG_HOTPLUG_PCI_FAKE=y
    CONFIG_HOTPLUG_PCI_COMPAQ=y
    CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y
    CONFIG_HOTPLUG_PCI_IBM=y
    CONFIG_HOTPLUG_PCI_CPCI=y
    CONFIG_HOTPLUG_PCI_CPCI_ZT5550=y
    CONFIG_HOTPLUG_PCI_CPCI_GENERIC=y
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Device Drivers
    # Generic Driver Options
    # CONFIG_FW_LOADER is not set
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    CONFIG_PARPORT=y
    CONFIG_PARPORT_PC=y
    CONFIG_PARPORT_PC_CML1=y
    CONFIG_PARPORT_SERIAL=y
    CONFIG_PARPORT_PC_FIFO=y
    CONFIG_PARPORT_PC_SUPERIO=y
    # CONFIG_PARPORT_PC_PCMCIA is not set
    CONFIG_PARPORT_OTHER=y
    CONFIG_PARPORT_1284=y
    # Plug and Play support
    CONFIG_PNP=y
    CONFIG_PNP_DEBUG=y
    # Protocols
    CONFIG_ISAPNP=y
    CONFIG_PNPBIOS=y
    # Block devices
    CONFIG_BLK_DEV_FD=y
    # CONFIG_BLK_DEV_XD is not set
    # CONFIG_PARIDE is not set
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_UMEM is not set
    CONFIG_BLK_DEV_LOOP=y
    CONFIG_BLK_DEV_CRYPTOLOOP=y
    CONFIG_BLK_DEV_NBD=y
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_SIZE=4096
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_LBD=y
    # ATA/ATAPI/MFM/RLL support
    # CONFIG_IDE is not set
    # SCSI device support
    CONFIG_SCSI=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    CONFIG_BLK_DEV_SR=y
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=y
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    # CONFIG_SCSI_MULTI_LUN is not set
    # CONFIG_SCSI_REPORT_LUNS is not set
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # SCSI low-level drivers
    # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
    # CONFIG_SCSI_7000FASST is not set
    # CONFIG_SCSI_ACARD is not set
    # CONFIG_SCSI_AHA152X is not set
    # CONFIG_SCSI_AHA1542 is not set
    # CONFIG_SCSI_AACRAID is not set
    CONFIG_SCSI_AIC7XXX=y
    CONFIG_AIC7XXX_CMDS_PER_DEVICE=253
    CONFIG_AIC7XXX_RESET_DELAY_MS=15000
    # CONFIG_AIC7XXX_BUILD_FIRMWARE is not set
    # CONFIG_AIC7XXX_DEBUG_ENABLE is not set
    CONFIG_AIC7XXX_DEBUG_MASK=0
    # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    # CONFIG_SCSI_AIC79XX is not set
    # CONFIG_SCSI_ADVANSYS is not set
    # CONFIG_SCSI_IN2000 is not set
    # CONFIG_SCSI_MEGARAID is not set
    # CONFIG_SCSI_SATA is not set
    # CONFIG_SCSI_BUSLOGIC is not set
    # CONFIG_SCSI_CPQFCTS is not set
    # CONFIG_SCSI_DMX3191D is not set
    # CONFIG_SCSI_DTC3280 is not set
    # CONFIG_SCSI_EATA is not set
    # CONFIG_SCSI_EATA_PIO is not set
    # CONFIG_SCSI_FUTURE_DOMAIN is not set
    # CONFIG_SCSI_GDTH is not set
    # CONFIG_SCSI_GENERIC_NCR5380 is not set
    # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set
    # CONFIG_SCSI_IPS is not set
    # CONFIG_SCSI_INIA100 is not set
    # CONFIG_SCSI_PPA is not set
    # CONFIG_SCSI_IMM is not set
    # CONFIG_SCSI_NCR53C406A is not set
    # CONFIG_SCSI_SYM53C8XX_2 is not set
    # CONFIG_SCSI_PAS16 is not set
    # CONFIG_SCSI_PSI240I is not set
    # CONFIG_SCSI_QLOGIC_FAS is not set
    # CONFIG_SCSI_QLOGIC_ISP is not set
    # CONFIG_SCSI_QLOGIC_FC is not set
    # CONFIG_SCSI_QLOGIC_1280 is not set
    # CONFIG_SCSI_SYM53C416 is not set
    # CONFIG_SCSI_DC395x is not set
    # CONFIG_SCSI_DC390T is not set
    # CONFIG_SCSI_T128 is not set
    # CONFIG_SCSI_U14_34F is not set
    # CONFIG_SCSI_ULTRASTOR is not set
    # CONFIG_SCSI_NSP32 is not set
    # CONFIG_SCSI_DEBUG is not set
    # PCMCIA SCSI adapter support
    # CONFIG_PCMCIA_AHA152X is not set
    # CONFIG_PCMCIA_FDOMAIN is not set
    # CONFIG_PCMCIA_NINJA_SCSI is not set
    # CONFIG_PCMCIA_QLOGIC is not set
    # Old CD-ROM drivers (not SCSI, not IDE)
    # CONFIG_CD_NO_IDESCSI is not set
    # Multi-device support (RAID and LVM)
    # CONFIG_MD is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support (EXPERIMENTAL)
    # CONFIG_IEEE1394 is not set
    # I2O device support
    # CONFIG_I2O is not set
    # Networking support
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    # CONFIG_PACKET_MMAP is not set
    CONFIG_NETLINK_DEV=y
    CONFIG_UNIX=y
    # CONFIG_NET_KEY is not set
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=y
    CONFIG_NET_IPGRE=y
    # CONFIG_NET_IPGRE_BROADCAST is not set
    # CONFIG_IP_MROUTE is not set
    # CONFIG_ARPD is not set
    CONFIG_INET_ECN=y
    CONFIG_SYN_COOKIES=y
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # IP: Virtual Server Configuration
    # CONFIG_IP_VS is not set
    # CONFIG_IPV6 is not set
    # CONFIG_DECNET is not set
    # CONFIG_BRIDGE is not set
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    # IP: Netfilter Configuration
    CONFIG_IP_NF_CONNTRACK=m
    CONFIG_IP_NF_FTP=m
    CONFIG_IP_NF_IRC=m
    # CONFIG_IP_NF_TFTP is not set
    # CONFIG_IP_NF_AMANDA is not set
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_LIMIT=m
    # CONFIG_IP_NF_MATCH_IPRANGE is not set
    CONFIG_IP_NF_MATCH_MAC=m
    # CONFIG_IP_NF_MATCH_PKTTYPE is not set
    CONFIG_IP_NF_MATCH_MARK=m
    CONFIG_IP_NF_MATCH_MULTIPORT=m
    CONFIG_IP_NF_MATCH_TOS=m
    # CONFIG_IP_NF_MATCH_RECENT is not set
    # CONFIG_IP_NF_MATCH_ECN is not set
    # CONFIG_IP_NF_MATCH_DSCP is not set
    # CONFIG_IP_NF_MATCH_AH_ESP is not set
    CONFIG_IP_NF_MATCH_LENGTH=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_MATCH_TCPMSS=m
    # CONFIG_IP_NF_MATCH_HELPER is not set
    CONFIG_IP_NF_MATCH_STATE=m
    # CONFIG_IP_NF_MATCH_CONNTRACK is not set
    CONFIG_IP_NF_MATCH_OWNER=m
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_NAT=m
    CONFIG_IP_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=m
    CONFIG_IP_NF_TARGET_REDIRECT=m
    # CONFIG_IP_NF_TARGET_NETMAP is not set
    # CONFIG_IP_NF_TARGET_SAME is not set
    # CONFIG_IP_NF_NAT_LOCAL is not set
    CONFIG_IP_NF_NAT_SNMP_BASIC=m
    CONFIG_IP_NF_NAT_IRC=m
    CONFIG_IP_NF_NAT_FTP=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_TOS=m
    # CONFIG_IP_NF_TARGET_ECN is not set
    # CONFIG_IP_NF_TARGET_DSCP is not set
    CONFIG_IP_NF_TARGET_MARK=m
    # CONFIG_IP_NF_TARGET_CLASSIFY is not set
    CONFIG_IP_NF_TARGET_LOG=m
    # CONFIG_IP_NF_TARGET_ULOG is not set
    CONFIG_IP_NF_TARGET_TCPMSS=m
    # CONFIG_IP_NF_ARPTABLES is not set
    CONFIG_IP_NF_COMPAT_IPCHAINS=m
    CONFIG_IP_NF_COMPAT_IPFWADM=m
    CONFIG_XFRM=y
    # CONFIG_XFRM_USER is not set
    # SCTP Configuration (EXPERIMENTAL)
    CONFIG_IPV6_SCTP__=y
    # CONFIG_IP_SCTP is not set
    # CONFIG_ATM is not set
    # CONFIG_VLAN_8021Q is not set
    CONFIG_LLC=y
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_NET_DIVERT is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # CONFIG_NET_FASTROUTE is not set
    # CONFIG_NET_HW_FLOWCONTROL is not set
    # QoS and/or fair queueing
    CONFIG_NET_SCHED=y
    CONFIG_NET_SCH_CBQ=y
    CONFIG_NET_SCH_HTB=y
    CONFIG_NET_SCH_CSZ=y
    CONFIG_NET_SCH_PRIO=y
    CONFIG_NET_SCH_RED=y
    CONFIG_NET_SCH_SFQ=y
    CONFIG_NET_SCH_TEQL=y
    CONFIG_NET_SCH_TBF=y
    CONFIG_NET_SCH_GRED=y
    CONFIG_NET_SCH_DSMARK=y
    CONFIG_NET_SCH_INGRESS=y
    CONFIG_NET_QOS=y
    CONFIG_NET_ESTIMATOR=y
    CONFIG_NET_CLS=y
    CONFIG_NET_CLS_TCINDEX=y
    CONFIG_NET_CLS_ROUTE4=y
    CONFIG_NET_CLS_ROUTE=y
    CONFIG_NET_CLS_FW=y
    CONFIG_NET_CLS_U32=y
    CONFIG_NET_CLS_RSVP=y
    CONFIG_NET_CLS_RSVP6=y
    CONFIG_NET_CLS_POLICE=y
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    CONFIG_NETDEVICES=y
    # ARCnet devices
    CONFIG_ARCNET=m
    # CONFIG_ARCNET_1201 is not set
    CONFIG_ARCNET_1051=m
    # CONFIG_ARCNET_RAW is not set
    CONFIG_ARCNET_COM90xx=m
    CONFIG_ARCNET_COM90xxIO=m
    CONFIG_ARCNET_RIM_I=m
    CONFIG_ARCNET_COM20020=m
    # CONFIG_ARCNET_COM20020_ISA is not set
    CONFIG_ARCNET_COM20020_PCI=m
    CONFIG_DUMMY=y
    # CONFIG_BONDING is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_ETHERTAP is not set
    # CONFIG_NET_SB1000 is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=y
    # CONFIG_HAPPYMEAL is not set
    # CONFIG_SUNGEM is not set
    # CONFIG_NET_VENDOR_3COM is not set
    # CONFIG_LANCE is not set
    # CONFIG_NET_VENDOR_SMC is not set
    # CONFIG_NET_VENDOR_RACAL is not set
    # Tulip family network device support
    CONFIG_NET_TULIP=y
    # CONFIG_DE2104X is not set
    CONFIG_TULIP=y
    CONFIG_TULIP_MWI=y
    CONFIG_TULIP_MMIO=y
    # CONFIG_DE4X5 is not set
    # CONFIG_WINBOND_840 is not set
    # CONFIG_DM9102 is not set
    # CONFIG_PCMCIA_XIRCOM is not set
    # CONFIG_PCMCIA_XIRTULIP is not set
    # CONFIG_AT1700 is not set
    # CONFIG_DEPCA is not set
    # CONFIG_HP100 is not set
    # CONFIG_NET_ISA is not set
    # CONFIG_NET_PCI is not set
    # CONFIG_NET_POCKET is not set
    # Ethernet (1000 Mbit)
    CONFIG_ACENIC=m
    # CONFIG_ACENIC_OMIT_TIGON_I is not set
    CONFIG_DL2K=m
    # CONFIG_E1000 is not set
    CONFIG_NS83820=m
    CONFIG_HAMACHI=m
    CONFIG_YELLOWFIN=m
    # CONFIG_R8169 is not set
    # CONFIG_SIS190 is not set
    CONFIG_SK98LIN=m
    # CONFIG_TIGON3 is not set
    # Ethernet (10000 Mbit)
    # CONFIG_IXGB is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_PLIP is not set
    CONFIG_PPP=y
    CONFIG_PPP_MULTILINK=y
    CONFIG_PPP_FILTER=y
    # CONFIG_PPP_ASYNC is not set
    # CONFIG_PPP_SYNC_TTY is not set
    CONFIG_PPP_DEFLATE=y
    CONFIG_PPP_BSDCOMP=y
    # CONFIG_PPPOE is not set
    # CONFIG_SLIP is not set
    # Wireless LAN (non-hamradio)
    CONFIG_NET_RADIO=y
    # Obsolete Wireless cards support (pre-802.11)
    CONFIG_STRIP=m
    CONFIG_ARLAN=m
    CONFIG_WAVELAN=m
    # CONFIG_PCMCIA_WAVELAN is not set
    # CONFIG_PCMCIA_NETWAVE is not set
    # Wireless 802.11 Frequency Hopping cards support
    # CONFIG_PCMCIA_RAYCS is not set
    # Wireless 802.11b ISA/PCI cards support
    CONFIG_AIRO=m
    CONFIG_HERMES=m
    CONFIG_PLX_HERMES=m
    # CONFIG_TMD_HERMES is not set
    # CONFIG_PCI_HERMES is not set
    # Wireless 802.11b Pcmcia/Cardbus cards support
    # CONFIG_PCMCIA_HERMES is not set
    # CONFIG_AIRO_CS is not set
    # CONFIG_PCMCIA_ATMEL is not set
    # CONFIG_PCMCIA_WL3501 is not set
    CONFIG_NET_WIRELESS=y
    # Token Ring devices
    CONFIG_TR=y
    CONFIG_IBMTR=m
    CONFIG_IBMOL=m
    CONFIG_IBMLS=m
    # CONFIG_3C359 is not set
    CONFIG_TMS380TR=m
    CONFIG_TMSPCI=m
    # CONFIG_SKISA is not set
    # CONFIG_PROTEON is not set
    CONFIG_ABYSS=m
    # CONFIG_SMCTR is not set
    # CONFIG_NET_FC is not set
    # CONFIG_RCPCI is not set
    # CONFIG_SHAPER is not set
    # Wan interfaces
    # CONFIG_WAN is not set
    # PCMCIA network device support
    # CONFIG_NET_PCMCIA is not set
    # Amateur Radio support
    # CONFIG_HAMRADIO is not set
    # IrDA (infrared) support
    # CONFIG_IRDA is not set
    # Bluetooth support
    # CONFIG_BT is not set
    # ISDN subsystem
    # CONFIG_ISDN_BOOL is not set
    # Telephony Support
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
    CONFIG_INPUT_JOYDEV=y
    # CONFIG_INPUT_TSDEV is not set
    CONFIG_INPUT_EVDEV=y
    # CONFIG_INPUT_EVBUG is not set
    # Input I/O drivers
    CONFIG_GAMEPORT=y
    CONFIG_SOUND_GAMEPORT=y
    CONFIG_GAMEPORT_NS558=y
    # CONFIG_GAMEPORT_L4 is not set
    CONFIG_GAMEPORT_EMU10K1=y
    # CONFIG_GAMEPORT_VORTEX is not set
    # CONFIG_GAMEPORT_FM801 is not set
    # CONFIG_GAMEPORT_CS461x is not set
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    # CONFIG_SERIO_SERPORT is not set
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PARKBD is not set
    CONFIG_SERIO_PCIPS2=y
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    CONFIG_MOUSE_SERIAL=y
    # CONFIG_MOUSE_INPORT is not set
    # CONFIG_MOUSE_LOGIBM is not set
    # CONFIG_MOUSE_PC110PAD is not set
    CONFIG_INPUT_JOYSTICK=y
    # CONFIG_JOYSTICK_ANALOG is not set
    # CONFIG_JOYSTICK_A3D is not set
    # CONFIG_JOYSTICK_ADI is not set
    # CONFIG_JOYSTICK_COBRA is not set
    # CONFIG_JOYSTICK_GF2K is not set
    CONFIG_JOYSTICK_GRIP=y
    CONFIG_JOYSTICK_GRIP_MP=y
    # CONFIG_JOYSTICK_GUILLEMOT is not set
    # CONFIG_JOYSTICK_INTERACT is not set
    CONFIG_JOYSTICK_SIDEWINDER=y
    # CONFIG_JOYSTICK_TMDC is not set
    # CONFIG_JOYSTICK_IFORCE is not set
    # CONFIG_JOYSTICK_WARRIOR is not set
    # CONFIG_JOYSTICK_MAGELLAN is not set
    # CONFIG_JOYSTICK_SPACEORB is not set
    # CONFIG_JOYSTICK_SPACEBALL is not set
    # CONFIG_JOYSTICK_STINGER is not set
    # CONFIG_JOYSTICK_TWIDDLER is not set
    # CONFIG_JOYSTICK_DB9 is not set
    # CONFIG_JOYSTICK_GAMECON is not set
    # CONFIG_JOYSTICK_TURBOGRAFX is not set
    # CONFIG_INPUT_JOYDUMP is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    CONFIG_INPUT_MISC=y
    CONFIG_INPUT_PCSPKR=y
    # CONFIG_INPUT_UINPUT is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    CONFIG_SERIAL_8250_CONSOLE=y
    # CONFIG_SERIAL_8250_CS is not set
    CONFIG_SERIAL_8250_NR_UARTS=4
    CONFIG_SERIAL_8250_EXTENDED=y
    CONFIG_SERIAL_8250_MANY_PORTS=y
    CONFIG_SERIAL_8250_SHARE_IRQ=y
    CONFIG_SERIAL_8250_DETECT_IRQ=y
    CONFIG_SERIAL_8250_MULTIPORT=y
    CONFIG_SERIAL_8250_RSA=y
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    CONFIG_UNIX98_PTYS=y
    CONFIG_UNIX98_PTY_COUNT=256
    CONFIG_PRINTER=y
    # CONFIG_LP_CONSOLE is not set
    # CONFIG_PPDEV is not set
    # CONFIG_TIPAR is not set
    # I2C support
    CONFIG_I2C=y
    CONFIG_I2C_CHARDEV=y
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=y
    CONFIG_I2C_ALGOPCF=y
    # I2C Hardware Bus support
    CONFIG_I2C_ALI1535=y
    CONFIG_I2C_ALI15X3=y
    CONFIG_I2C_AMD756=y
    CONFIG_I2C_AMD8111=y
    CONFIG_I2C_ELEKTOR=y
    CONFIG_I2C_ELV=y
    CONFIG_I2C_I801=y
    CONFIG_I2C_I810=y
    CONFIG_I2C_ISA=y
    CONFIG_I2C_NFORCE2=y
    CONFIG_I2C_PHILIPSPAR=y
    CONFIG_I2C_PIIX4=y
    CONFIG_I2C_PROSAVAGE=y
    CONFIG_I2C_SAVAGE4=y
    CONFIG_SCx200_ACB=y
    CONFIG_I2C_SIS5595=y
    CONFIG_I2C_SIS630=y
    CONFIG_I2C_SIS96X=y
    CONFIG_I2C_VELLEMAN=y
    CONFIG_I2C_VIA=y
    CONFIG_I2C_VIAPRO=y
    CONFIG_I2C_VOODOO3=y
    # I2C Hardware Sensors Chip support
    CONFIG_I2C_SENSOR=y
    CONFIG_SENSORS_ADM1021=y
    CONFIG_SENSORS_EEPROM=y
    CONFIG_SENSORS_IT87=y
    CONFIG_SENSORS_LM75=y
    CONFIG_SENSORS_LM78=y
    # CONFIG_SENSORS_LM83 is not set
    CONFIG_SENSORS_LM85=y
    CONFIG_SENSORS_VIA686A=y
    CONFIG_SENSORS_W83781D=y
    # Mice
    CONFIG_BUSMOUSE=y
    # CONFIG_QIC02_TAPE is not set
    # IPMI
    # CONFIG_IPMI_HANDLER is not set
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    # CONFIG_HW_RANDOM is not set
    CONFIG_NVRAM=y
    CONFIG_RTC=y
    # CONFIG_DTLK is not set
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # CONFIG_SONYPI is not set
    # Ftape, the floppy tape device driver
    # CONFIG_FTAPE is not set
    CONFIG_AGP=y
    # CONFIG_AGP_ALI is not set
    # CONFIG_AGP_ATI is not set
    # CONFIG_AGP_AMD is not set
    # CONFIG_AGP_AMD64 is not set
    # CONFIG_AGP_INTEL is not set
    # CONFIG_AGP_NVIDIA is not set
    # CONFIG_AGP_SIS is not set
    # CONFIG_AGP_SWORKS is not set
    CONFIG_AGP_VIA=y
    CONFIG_DRM=y
    # CONFIG_DRM_TDFX is not set
    # CONFIG_DRM_GAMMA is not set
    # CONFIG_DRM_R128 is not set
    # CONFIG_DRM_RADEON is not set
    # CONFIG_DRM_MGA is not set
    # CONFIG_DRM_SIS is not set
    # PCMCIA character devices
    # CONFIG_SYNCLINK_CS is not set
    # CONFIG_MWAVE is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HANGCHECK_TIMER is not set
    # Multimedia devices
    CONFIG_VIDEO_DEV=y
    # Video For Linux
    # Video Adapters
    CONFIG_VIDEO_BT848=y
    # CONFIG_VIDEO_PMS is not set
    # CONFIG_VIDEO_BWQCAM is not set
    # CONFIG_VIDEO_CQCAM is not set
    # CONFIG_VIDEO_W9966 is not set
    # CONFIG_VIDEO_CPIA is not set
    # CONFIG_VIDEO_SAA5249 is not set
    # CONFIG_TUNER_3036 is not set
    # CONFIG_VIDEO_STRADIS is not set
    # CONFIG_VIDEO_ZORAN is not set
    # CONFIG_VIDEO_SAA7134 is not set
    # CONFIG_VIDEO_MXB is not set
    # CONFIG_VIDEO_DPC is not set
    # CONFIG_VIDEO_HEXIUM_ORION is not set
    # CONFIG_VIDEO_HEXIUM_GEMINI is not set
    # Radio Adapters
    CONFIG_RADIO_CADET=m
    CONFIG_RADIO_RTRACK=m
    CONFIG_RADIO_RTRACK2=m
    CONFIG_RADIO_AZTECH=m
    CONFIG_RADIO_GEMTEK=m
    CONFIG_RADIO_GEMTEK_PCI=m
    CONFIG_RADIO_MAXIRADIO=m
    CONFIG_RADIO_MAESTRO=m
    CONFIG_RADIO_SF16FMI=m
    CONFIG_RADIO_TERRATEC=m
    CONFIG_RADIO_TRUST=m
    CONFIG_RADIO_TYPHOON=m
    CONFIG_RADIO_TYPHOON_PROC_FS=y
    CONFIG_RADIO_ZOLTRIX=m
    # Digital Video Broadcasting Devices
    # CONFIG_DVB is not set
    CONFIG_VIDEO_TUNER=y
    CONFIG_VIDEO_BUF=y
    CONFIG_VIDEO_BTCX=y
    # Graphics support
    CONFIG_FB=y
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_IMSTT is not set
    CONFIG_FB_VGA16=y
    CONFIG_FB_VESA=y
    CONFIG_VIDEO_SELECT=y
    # CONFIG_FB_HGA is not set
    CONFIG_FB_RIVA=y
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_NEOMAGIC is not set
    # CONFIG_FB_3DFX is not set
    # CONFIG_FB_VOODOO1 is not set
    # CONFIG_FB_TRIDENT is not set
    # CONFIG_FB_VIRTUAL is not set
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    # CONFIG_MDA_CONSOLE is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    CONFIG_PCI_CONSOLE=y
    # CONFIG_FONTS is not set
    CONFIG_FONT_8x8=y
    CONFIG_FONT_8x16=y
    # Logo configuration
    CONFIG_LOGO=y
    CONFIG_LOGO_LINUX_MONO=y
    CONFIG_LOGO_LINUX_VGA16=y
    CONFIG_LOGO_LINUX_CLUT224=y
    # Sound
    CONFIG_SOUND=y
    # Advanced Linux Sound Architecture
    CONFIG_SND=y
    CONFIG_SND_SEQUENCER=y
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=y
    CONFIG_SND_PCM_OSS=y
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_RTCTIMER=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # Generic devices
    # CONFIG_SND_DUMMY is not set
    # CONFIG_SND_VIRMIDI is not set
    # CONFIG_SND_MTPAV is not set
    # CONFIG_SND_SERIAL_U16550 is not set
    # CONFIG_SND_MPU401 is not set
    # ISA devices
    # CONFIG_SND_AD1816A is not set
    # CONFIG_SND_AD1848 is not set
    # CONFIG_SND_CS4231 is not set
    # CONFIG_SND_CS4232 is not set
    # CONFIG_SND_CS4236 is not set
    # CONFIG_SND_ES968 is not set
    # CONFIG_SND_ES1688 is not set
    # CONFIG_SND_ES18XX is not set
    # CONFIG_SND_GUSCLASSIC is not set
    # CONFIG_SND_GUSEXTREME is not set
    # CONFIG_SND_GUSMAX is not set
    # CONFIG_SND_INTERWAVE is not set
    # CONFIG_SND_INTERWAVE_STB is not set
    # CONFIG_SND_OPTI92X_AD1848 is not set
    # CONFIG_SND_OPTI92X_CS4231 is not set
    # CONFIG_SND_OPTI93X is not set
    # CONFIG_SND_SB8 is not set
    # CONFIG_SND_SB16 is not set
    # CONFIG_SND_SBAWE is not set
    # CONFIG_SND_WAVEFRONT is not set
    # CONFIG_SND_ALS100 is not set
    # CONFIG_SND_AZT2320 is not set
    # CONFIG_SND_CMI8330 is not set
    # CONFIG_SND_DT019X is not set
    # CONFIG_SND_OPL3SA2 is not set
    # CONFIG_SND_SGALAXY is not set
    # CONFIG_SND_SSCAPE is not set
    # PCI devices
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS4281 is not set
    CONFIG_SND_EMU10K1=y
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_FM801 is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    # CONFIG_SND_INTEL8X0 is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VX222 is not set
    # ALSA USB devices
    # CONFIG_SND_USB_AUDIO is not set
    # PCMCIA devices
    # CONFIG_SND_VXPOCKET is not set
    # CONFIG_SND_VXP440 is not set
    # Open Sound System
    # CONFIG_SOUND_PRIME is not set
    # USB support
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    # CONFIG_USB_BANDWIDTH is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_OHCI_HCD=m
    CONFIG_USB_UHCI_HCD=y
    # USB Device Class drivers
    # CONFIG_USB_AUDIO is not set
    # CONFIG_USB_BLUETOOTH_TTY is not set
    # CONFIG_USB_MIDI is not set
    # CONFIG_USB_ACM is not set
    # CONFIG_USB_PRINTER is not set
    CONFIG_USB_STORAGE=y
    CONFIG_USB_STORAGE_DEBUG=y
    CONFIG_USB_STORAGE_DATAFAB=y
    CONFIG_USB_STORAGE_FREECOM=y
    CONFIG_USB_STORAGE_DPCM=y
    CONFIG_USB_STORAGE_HP8200e=y
    CONFIG_USB_STORAGE_SDDR09=y
    CONFIG_USB_STORAGE_SDDR55=y
    CONFIG_USB_STORAGE_JUMPSHOT=y
    # USB Human Interface Devices (HID)
    CONFIG_USB_HID=y
    CONFIG_USB_HIDINPUT=y
    CONFIG_HID_FF=y
    CONFIG_HID_PID=y
    CONFIG_LOGITECH_FF=y
    CONFIG_THRUSTMASTER_FF=y
    CONFIG_USB_HIDDEV=y
    # CONFIG_USB_AIPTEK is not set
    # CONFIG_USB_WACOM is not set
    # CONFIG_USB_KBTAB is not set
    # CONFIG_USB_POWERMATE is not set
    # CONFIG_USB_XPAD is not set
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_SCANNER is not set
    # CONFIG_USB_MICROTEK is not set
    # CONFIG_USB_HPUSBSCSI is not set
    # USB Multimedia devices
    # CONFIG_USB_DABUSB is not set
    # CONFIG_USB_VICAM is not set
    # CONFIG_USB_DSBR is not set
    # CONFIG_USB_IBMCAM is not set
    # CONFIG_USB_KONICAWC is not set
    # CONFIG_USB_OV511 is not set
    # CONFIG_USB_PWC is not set
    # CONFIG_USB_SE401 is not set
    # CONFIG_USB_STV680 is not set
    # CONFIG_USB_W9968CF is not set
    # USB Network adaptors
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    # CONFIG_USB_USBNET is not set
    # USB port drivers
    # CONFIG_USB_USS720 is not set
    # USB Serial Converter support
    CONFIG_USB_SERIAL=m
    CONFIG_USB_SERIAL_GENERIC=y
    CONFIG_USB_SERIAL_BELKIN=m
    CONFIG_USB_SERIAL_WHITEHEAT=m
    CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
    CONFIG_USB_SERIAL_EMPEG=m
    CONFIG_USB_SERIAL_FTDI_SIO=m
    CONFIG_USB_SERIAL_VISOR=m
    CONFIG_USB_SERIAL_IPAQ=m
    CONFIG_USB_SERIAL_IR=m
    CONFIG_USB_SERIAL_EDGEPORT=m
    # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
    CONFIG_USB_SERIAL_KEYSPAN_PDA=m
    CONFIG_USB_SERIAL_KEYSPAN=m
    # CONFIG_USB_SERIAL_KEYSPAN_MPR is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA28 is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA19 is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA18X is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA19W is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA19QW is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA19QI is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set
    # CONFIG_USB_SERIAL_KEYSPAN_USA49WLC is not set
    CONFIG_USB_SERIAL_KLSI=m
    # CONFIG_USB_SERIAL_KOBIL_SCT is not set
    CONFIG_USB_SERIAL_MCT_U232=m
    CONFIG_USB_SERIAL_PL2303=m
    CONFIG_USB_SERIAL_SAFE=m
    CONFIG_USB_SERIAL_SAFE_PADDED=y
    CONFIG_USB_SERIAL_CYBERJACK=m
    CONFIG_USB_SERIAL_XIRCOM=m
    CONFIG_USB_SERIAL_OMNINET=m
    CONFIG_USB_EZUSB=y
    # USB Miscellaneous drivers
    # CONFIG_USB_TIGL is not set
    # CONFIG_USB_AUERSWALD is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_BRLVGER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_GADGET is not set
    # File systems
    CONFIG_EXT2_FS=y
    CONFIG_EXT2_FS_XATTR=y
    CONFIG_EXT2_FS_POSIX_ACL=y
    CONFIG_EXT2_FS_SECURITY=y
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_FS_XATTR=y
    CONFIG_EXT3_FS_POSIX_ACL=y
    CONFIG_EXT3_FS_SECURITY=y
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    # CONFIG_REISERFS_FS is not set
    # CONFIG_JFS_FS is not set
    CONFIG_FS_POSIX_ACL=y
    CONFIG_XFS_FS=y
    CONFIG_XFS_RT=y
    # CONFIG_XFS_QUOTA is not set
    CONFIG_XFS_POSIX_ACL=y
    # CONFIG_MINIX_FS is not set
    CONFIG_ROMFS_FS=y
    # CONFIG_QUOTA is not set
    CONFIG_AUTOFS_FS=y
    CONFIG_AUTOFS4_FS=y
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    CONFIG_ZISOFS=y
    CONFIG_ZISOFS_FS=y
    CONFIG_UDF_FS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=y
    CONFIG_MSDOS_FS=y
    CONFIG_VFAT_FS=y
    CONFIG_NTFS_FS=y
    # CONFIG_NTFS_DEBUG is not set
    CONFIG_NTFS_RW=y
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_DEVFS_FS=y
    CONFIG_DEVFS_MOUNT=y
    # CONFIG_DEVFS_DEBUG is not set
    CONFIG_DEVPTS_FS=y
    # CONFIG_DEVPTS_FS_XATTR is not set
    CONFIG_TMPFS=y
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_RAMFS=y
    # Miscellaneous filesystems
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_HFS_FS is not set
    CONFIG_BEFS_FS=y
    # CONFIG_BEFS_DEBUG is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    CONFIG_CRAMFS=y
    # CONFIG_VXFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    # Network File Systems
    CONFIG_NFS_FS=y
    CONFIG_NFS_V3=y
    CONFIG_NFS_V4=y
    CONFIG_NFS_DIRECTIO=y
    CONFIG_NFSD=y
    CONFIG_NFSD_V3=y
    CONFIG_NFSD_V4=y
    CONFIG_NFSD_TCP=y
    CONFIG_LOCKD=y
    CONFIG_LOCKD_V4=y
    CONFIG_EXPORTFS=y
    CONFIG_SUNRPC=y
    # CONFIG_SUNRPC_GSS is not set
    CONFIG_SMB_FS=y
    # CONFIG_SMB_NLS_DEFAULT is not set
    CONFIG_CIFS=y
    # CONFIG_NCP_FS is not set
    CONFIG_CODA_FS=y
    CONFIG_CODA_FS_OLD_API=y
    # CONFIG_INTERMEZZO_FS is not set
    # CONFIG_AFS_FS is not set
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="cp437"
    # CONFIG_NLS_CODEPAGE_437 is not set
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    CONFIG_NLS_CODEPAGE_850=y
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    CONFIG_NLS_ISO8859_15=y
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    CONFIG_NLS_UTF8=y
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_DEBUG_KERNEL is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_FRAME_POINTER is not set
    CONFIG_X86_EXTRA_IRQS=y
    CONFIG_X86_FIND_SMP_CONFIG=y
    CONFIG_X86_MPPARSE=y
    # Security options
    CONFIG_SECURITY=y
    CONFIG_SECURITY_NETWORK=y
    CONFIG_SECURITY_CAPABILITIES=y
    CONFIG_SECURITY_ROOTPLUG=y
    CONFIG_SECURITY_SELINUX=y
    CONFIG_SECURITY_SELINUX_BOOTPARAM=y
    CONFIG_SECURITY_SELINUX_DEVELOP=y
    CONFIG_SECURITY_SELINUX_MLS=y
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    CONFIG_CRYPTO_NULL=y
    CONFIG_CRYPTO_MD4=y
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_SHA1=y
    CONFIG_CRYPTO_SHA256=y
    CONFIG_CRYPTO_SHA512=y
    CONFIG_CRYPTO_DES=y
    CONFIG_CRYPTO_BLOWFISH=y
    CONFIG_CRYPTO_TWOFISH=y
    CONFIG_CRYPTO_SERPENT=y
    CONFIG_CRYPTO_AES=y
    CONFIG_CRYPTO_CAST5=y
    CONFIG_CRYPTO_CAST6=y
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_TEST=y
    # Library routines
    CONFIG_CRC32=y
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_PC=y
    Fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /proc proc defaults 0 0
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    tmpfs /tmp tmpfs defaults 0 0
    #sysfs /sys sysfs defaults 0 0
    usbdevfs /proc/bus/usb usbdevfs defaults 0 0
    /dev/cdroms/cdrom0 /mnt/cdrom iso9660,udf ro,user,noauto,unhide 0 0
    /dev/cdroms/cdrom1 /mnt/cdrec iso9660,udf ro,user,noauto,unhide 0 0
    /dev/cdroms/cdrom2 /mnt/dvdrom iso9660,udf ro,user,noauto,unhide 0 0
    /dev/floppy/0 /mnt/floppy vfat user,noauto,unhide 0 0
    /dev/discs/disc1/part1 swap swap defaults 0 0
    /dev/discs/disc4/part1 / ext3 defaults 0 1
    /dev/discs/disc3/part1 /usr ext3 defaults 0 1
    /dev/discs/disc2/part1 /var ext3 defaults 0 1
    /dev/discs/disc0/part2 /usr/src ext3 defaults 0 1
    /dev/discs/disc0/part1 /boot ext3 defaults 0 1

    darkcoder wrote:...  Anyway after those changes I was able to mount windoze floppies as a normal user with # mount /mnt/fl
    What about the ext3 floppies? I have no problem with vfat ones, I can mount them as you mention but when I try to mount ext3 floppies as a regular user I get:
    [florin@guns /mnt]$ mount /mnt/floppy
    mount: wrong fs type, bad option, bad superblock on /dev/fd0,
           or too many mounted file systems
    [florin@guns ~]$ mount /dev/fd0 /mnt/floppy
    mount: only root can do that
    [florin@guns ~]$ mount -t ext3 /dev/fd0 /mnt/floppy
    mount: only root can do that
    I can mount an ext3 floppy as root:
    [root@guns /mnt]# mount /mnt/floppy
    mount: wrong fs type, bad option, bad superblock on /dev/fd0,
           or too many mounted file systems
    [root@guns /mnt]# mount /dev/fd0 /mnt/floppy
    [root@guns /mnt]# cd floppy/
    [root@guns /mnt/floppy]# ls
    lost+found  test
    What am I missing here? What should I do to be able to mount ext3 floppies as a regular user too?
    Info:
    fstab entry:
    /dev/fd0          /mnt/floppy   vfat,ext3     rw,user,noauto      0      0
    User Id:
    [root@guns /etc]# id florin
    uid=1002(florin) gid=1002(users3) groups=1002(users3),92(audio)
    udev.permissions line:
    # floppy devices
    fd[01]*:root:users3:0660

  • PERFORMANCE BAD WHEN CURSORS ARE USED WITHIN PL/SQL BLOCKS

    There are poor database performance at Oracle 10g
    For some cursor selects, the performance is under Oracle 10g
    significant slower than under Oracle 9i.On a test system (Oracle 9) the
    problem does not reproduce, on the 10g system however always.
    The simple execution of the base select statement was on both
    databases in roughly of the same speed. If however a cursor was defined and
    those executed within a PL/SQL block (without involving the user interface),
    then the time behavior was in accordance with the observed behavior
    behavior on the user interface.
    By adding of the hint first_rows on both machines a
    similar (fast) time behavior can be achieved.
    Conclusion: Something in the (Optimizer) settings of the Oracle-10
    databases must be fundamentally different than that of Oracle 9. Or Oracle
    10 has a real problem. The analysis and solution of this general
    problem seems to me more reasonable than the solution of individual performance
    problems.
    can you help me, many thanks

    Hello, thanks for the explanatory notes.
    Here are the concerned Script. The only difference is the Hint (with Hint = good püerformance; without Hint = bad performance)
    DECLARE
    b BOOLEAN;
    BEGIN
    b := plogin.batch_login('**', '****', 717, FALSE);
    prost.reload_context;
    END;
    DECLARE
    l_ma_kuerzel VARCHAR2(100) DEFAULT NULL;
    l_sta_id mitarbeiter_historie.sta_id%TYPE;
    l_org_id organisationseinheit.org_id%TYPE;
    l_pv_like mitarbeiter.ma_name%TYPE;
    l_typ_id typ.typ_id%TYPE;
    l_mihi_beginn VARCHAR2(40);
    l_ma_ausgeschieden VARCHAR2(40);
    l_ma_ldap mitarbeiter.ma_ldap%TYPE;
    l_smodify_form VARCHAR2(80);
    l_sform_typ VARCHAR2(80);
    l_sheader VARCHAR2(200);
    l_nurlsource NUMBER;
    l_nurldestination prosturl.pur_id%type;
    l_ma_like VARCHAR2(100) DEFAULT NULL;
    l_nma_typ NUMBER;
    l_bshow BOOLEAN;
    l_counter NUMBER DEFAULT 0;
    cursor ma_list_not_all_detail(
    p_ma_like IN VARCHAR2 DEFAULT NULL,
    p_ma_kuerzel IN VARCHAR2 DEFAULT NULL,
    p_sta_id IN VARCHAR2 DEFAULT NULL,
    p_org_id IN VARCHAR2 DEFAULT NULL,
    p_typ_id IN VARCHAR2 DEFAULT NULL,
    p_mihi_beginn IN VARCHAR2 DEFAULT NULL,
    p_pv_like IN VARCHAR2 DEFAULT NULL,
    p_ma_ausgeschieden IN VARCHAR2 DEFAULT NULL,
    p_ma_ldap IN VARCHAR2 DEFAULT NULL
    ) IS
    SELECT /*+ first_rows */
    ma.ma_id ma_id
    , view_fkt.display_ma(mihi.typ_id_mt
    , view_fkt.cat_maname(ma.ma_name
    , ma.ma_zusatz
    , ma.ma_titel
    , ma.ma_vorname)) name
    , view_fkt.display_ma(mihi.typ_id_mt,ma.ma_kuerzel) ma_kuerzel
    , typ.typ_value mt_kuerzel
    , substr(org.typ_id,4,length(org.typ_id)) || ' ' || org.org_name||' ('||org.org_ktr||')' org_name
    , to_char(mihi.mihi_beginn, 'dd.mm.yyyy') beginn
    , decode(pv.ma_name ||' '|| pv.ma_titel ||' '|| pv.ma_vorname
    , ' ',prost_cons.t_blank
    , pv.ma_name||', '||pv.ma_titel||' '||pv.ma_vorname) pv_kuerzel
    , mihi.sta_id sta_id
    , nvl(to_char(ma.ma_ausgeschieden,'dd.mm.yyyy'), ' ') ausgeschieden
    , nvl(to_char(mihi.mihi_wochenarbeitszeit,'90D00'),' ') wochenarbeitszeit
    , nvl(to_char(mihi.mihi_taz_mo,'90D00'),' ') taz_mo
    , nvl(to_char(mihi.mihi_taz_di,'90D00'),' ') taz_di
    , nvl(to_char(mihi.mihi_taz_mi,'90D00'),' ') taz_mi
    , nvl(to_char(mihi.mihi_taz_do,'90D00'),' ') taz_do
    , nvl(to_char(mihi.mihi_taz_fr,'90D00'),' ') taz_fr
    , nvl(to_char(mihi.mihi_taz_sa,'90D00'),' ') taz_sa
    , nvl(to_char(mihi.mihi_taz_so,'90D00'),' ') taz_so
    , nvl(ma.ma_ldap, ' ') ma_ldap
    , mihi.mihi_beginn mihi_beginn
    , mihi.mihi_order_no mihi_order_no
    , mihi.mihi_order_pos mihi_order_pos
    FROM organisationseinheit org
    , typ typ
    , mitarbeiter pv
    , mitarbeiter ma
    , v$mihi_id mid
    , mitarbeiter_historie mihi
    , v$access_orgs_th_t th
    WHERE mihi.org_id = th.org_id
    AND mid.mihi_id = mihi.mihi_id
    AND ma.ma_id = mid.ma_id
    AND ma.ma_delete = 'n'
    AND ma.ma_virtualitaet = 'N'
    AND (p_ma_like IS NULL
    OR ma.ma_name LIKE p_ma_like)
    AND (p_ma_kuerzel IS NULL
    OR ma.ma_kuerzel LIKE p_ma_kuerzel)
    AND (p_sta_id IS NULL
    OR mihi.sta_id = p_sta_id)
    AND (p_org_id IS NULL
    OR org.org_id = p_org_id)
    AND (p_typ_id IS NULL
    OR typ.typ_id = p_typ_id)
    AND mihi_beginn >= nvl(p_mihi_beginn,to_date('01.01.1960','dd.mm.yyyy'))
    AND (p_pv_like IS NULL
    OR pv.ma_name LIKE p_pv_like)
    AND (ma.ma_ausgeschieden >= nvl(p_ma_ausgeschieden,to_date('01.01.1960','dd.mm.yyyy'))
    AND ma.ma_ausgeschieden - 1 < nvl(p_ma_ausgeschieden,to_date('01.01.1960','dd.mm.yyyy'))
    OR p_ma_ausgeschieden IS NULL)
    AND (p_ma_ldap IS NULL
    OR ma.ma_ldap LIKE p_ma_ldap)
    AND pv.ma_id (+)= mihi.ma_id_pv
    AND org.org_id (+)= mihi.org_id
    AND typ.typ_id = mihi.typ_id_mt
    ORDER BY upper(ma.ma_name), upper(ma.ma_vorname);
    l_result ma_list_not_all_detail%ROWTYPE;
    BEGIN
    l_nMA_Typ := pmitarbeiter.cn_Incomplete_Ma;
    l_ma_like := NULL;
    l_ma_kuerzel := NULL;
    l_sta_id := NULL;
    l_org_id := 'KST0000421301';
    l_typ_id := NULL;
    l_mihi_beginn := NULL;
    l_pv_like := NULL;
    l_ma_ausgeschieden := NULL;
    l_ma_ldap := NULL;
    IF (l_ma_like IS NOT NULL
    OR l_ma_kuerzel IS NOT NULL
    OR l_sta_id IS NOT NULL
    OR l_org_id IS NOT NULL
    OR l_typ_id IS NOT NULL
    OR l_mihi_beginn IS NOT NULL
    OR l_pv_like IS NOT NULL
    OR l_ma_ausgeschieden IS NOT NULL
    OR l_ma_ldap IS NOT NULL) THEN
    -- fuer Mitarbeiter unvollstandig wird ein andere cursor angesprochen
    -- um der Mitarbeiter vollstandig zu kriegen soll ein Standort,
    -- Arbeitszeitmodel, Bereich und Tagesarbeitszeiten ausgevult wirden
    -- Wenn er dan gespeichert wirdt wirden die betriffende velder gespeichert
    -- und wirdt das Feld Virtualiteat auf R gesetzt (war N)
    l_counter := 0;
    dbms_output.put_line(to_char(sysdate, 'sssss'));
    FOR j IN ma_List_Not_All_Detail(
    l_ma_like,
    l_ma_kuerzel,
    l_sta_id,
    l_org_id,
    l_typ_id,
    l_mihi_beginn,
    l_pv_like,
    l_ma_ausgeschieden,
    l_ma_ldap
    ) LOOP
    l_counter := l_counter + 1;
    dbms_output.put_line(l_counter);
    dbms_output.put_line(j.ma_kuerzel);
    END LOOP;
    dbms_output.put_line(to_char(sysdate, 'sssss'));
    END IF;
    return;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(sqlerrm);
    END;
    =============
    Thank you

  • Merge Join Cartesian performing bad on 10g

    Hello All,
    I have a merge join cartesian query that took seconds in 8i. Once the database was upgraded to 10g, the same query is taking hours. In looking at the explain plans, it looks like the access paths are identical.
    Has anyone encountered this issue?
    Thanks.

    Sometimes the cost-based optimizer will do cartesian joins to optimize a query. Seeing the word "cartesian" in a query plan is still a major red flag to my eyes. Also, performance changes between versions are usually expected, though most people complain about 9i to 10g results these days :)
    Are you sure you need to be doing a cartesian join at all? As Fly pointed out they have a bad reputation, and yours must be running badly as per your post. I personally get more efficient results from hash joins over sort merges these days so that's something you can look at.
    Try variations on your query to generate execution plans to see if you can get better results. Don't forget to actually time results since plan statistics have been known to be out-of-touch with actual run performance.
    Good luck!

  • Bad Font-Measuring Performance under Windows 8.1

    Why does the following little loop (in c#) perform so bad using current version of WPF (.NET 4.5.2) if i change the font-family from "Segoe UI" to "Arial" (or something else...tried "Times New Roman" and "Courier New"
    - Same problem)?
    var tb = new TextBlock {Text = "Testtext", FontFamily = new FontFamily("Arial")};
    for(int i = 0; i < 100000; i++)
    tb.InvalidateMeasure();
    tb.Measure(new Size(double.MaxValue, double.MaxValue));
    With font-family set to Arial this block of code takes about 7.6s on my machine. Font-family set to "Segoe UI" takes about 1.9s. Why do (most) other fonts than Segoe UI perform so bad during measurement? Is there any tweak around, that does avoid
    this enormous loss in performance?
    As i found found out, "Tahoma", "Lucida Sans" and "Microsoft Sans Serif" are being measured really fast, also. Is this some "System-internal font"-thing?
    Yes, i know, this is really constructed and broken down to a minimal reproducable example. The whole component is a custom datagrid with complex ui- and data-virtualization - much too big to post here. If i set the font of my
    grid to, let's say "Arial", the scrolling-performance gets really bad. Using Visual Studio's Profiler i tracked the problem down to the measurement of my single grid-cells, which basically measure single textblocks and so i wrote the little test-code
    above. Please keep in mind: My problem is NOT, that the code above is slow. (I know, this loop is totally senseless...it's for demonstration purposes only) My problem IS, that changing the font impacts measurement in such an enormous amount...
    What is the difference between fonts like "Segoe UI", "Tahoma", "Lucida Sans" or "Microsoft Sans Serif" and fonts like "Arial", "Times New Roman" or "Courier New" that causes this huge
    impact in measurement?
    Btw.: This problem not only arises within my own grid component, it can also be reproduced with WPF's internal datagrid. Scrolling performance degrades dramatically when using "Arial" as the font-family.

    Hi Max
    I realise that WPF doesn't use Win32, but I suspected something similar (i.e. the font is being loaded and unloaded everytime a measure takes place rather than using a cached font). I just looked up TextBlock in ILSpy and can see a MeasureOverride method
    which does quite a lot of work with the font before using it to measure text and then discards all of this information when it's finished. That's obviously where the bottleneck is. I don't program in WPF so I have no idea how to fix it.
    protected sealed override Size MeasureOverride(Size constraint)
    this.VerifyReentrancy();
    this._textBlockCache = null;
    this.EnsureTextBlockCache();
    Follow the path of EnsureTextBlockCache() to see how much information is being processed and then dumped every time a measure operation is processed.
    Mick Doherty
    http://dotnetrix.co.uk
    http://glassui.codeplex.com

  • Mass Compile "Bad VI" & "Bad SubVI" errors, but with no apparent errors.

    I am using LabView 8.5, FIRST Robotics Competition Edition, targeting the Compact RIO.
    I am getting Mass Compile "Bad VI" & "Bad SubVi" Errors, in my own code, but with no apparent errors in the vi's themselves.
     #### Starting Mass Compile: Mon, Jan 19, 2009 11:59:34 PM
      Directory: "C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Robot.lvproj"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad subVI: "Teleop.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Teleop.vi"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"
      ### Bad VI:    "Autonomous Independent.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Autonomous Independent.vi"
      ### Bad VI:    "AcceleratingArcadeDrive.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\AcceleratingArcadeDrive.vi"aa
      ### Bad subVI: "CrazyIvan.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\CrazyIvan.vi"
      ### Bad subVI: "Teleop.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Teleop.vi"
      ### Bad subVI: "Robot Main.vi" Path="C:\Documents and Settings\Acshi\My Documents\LabVIEW Data\Robot\Robot Main.vi"
    #### Finished Mass Compile: Mon, Jan 19, 2009 11:59:46 PM
    Since some of these reference each other, this is the block diagram of one that doesn't reference any other erroring vi's.
    What can I do to fix this?
    Attachments:
    BlockDiagram.png ‏29 KB

    Interesting... It must have timed out before the temporary image did, and so I did not noticed a problem until I returned.
    Regardlessly, I have found the error.
    Errors did exist in my VI's, In particular, one of the subVi's I called in the VI shown happened to be private only, and so couldn't be used -- now I've just made a public version for my personal use. But LabView would not show me the actual errors unless I force-ran the the program, I really don't know why I had to do this, but when I did, it showed me a nice little dialog with my errors in it.
    I am confused, as when I did normal runs, it would simply complain that the VI's were invalid and would not permit the run.
    Very odd. 

  • SEVERE: SAAJ0008: Bad Response; Bad Request

    Hey Guys,
    I am trying to send a SOAP request with attachments from java to a .NET webservice.
    Here is the extract from my code..
    DataSource source = new FileDataSource(file);
    DataHandler handler = new DataHandler(source);
    AttachmentPart attachment =
    message.createAttachmentPart(handler);
    attachment.setContentId("attached_text");
    message.addAttachmentPart(attachment);
    System.out.println("**************SOAP REQUEST**************\n");
    message.writeTo(System.out);
    SOAPMessage response =
    connection.call(message, endpoint);
    I get this error Any ideas ??
    Aug 10, 2005 9:52:42 AM com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection post
    SEVERE: SAAJ0008: Bad Response; Bad Request
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (400Bad Request
         at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:285)
         at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:151)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:121)
         at com.lordabbett.saaj.Request.getDocumentElement(Request.java:129)
         at com.lordabbett.saaj.Request.main(Request.java:14)
    java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (400Bad Request
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:121)
         at com.lordabbett.saaj.Request.getDocumentElement(Request.java:129)
         at com.lordabbett.saaj.Request.main(Request.java:14)

    Hi runndn2
    Thanks for your response, the two XML strings (from my code and SOAPui) were exactly the same....but I've actually found out what was wrong, just now :)
    It took a while, because the error messages that I was getting back from we pretty unhelpful, but the problem seemed to be that I needed to specify a SOAPAction in the MIME header itself like so:
              // Create message
              MessageFactory mf = MessageFactory.newInstance();
              SOAPMessage msg = mf.createMessage();
              MimeHeaders hd = msg.getMimeHeaders();
         hd.addHeader("SOAPAction", "\"document/urn:crmondemand/ws/ecbs/contact/10/2004:ContactQueryPage\"");
    With this header I can either read in the soap request from a file or build it up manually in my code, both work.
    Simply looking at the output XML message as provided by SOAPMessage.writeTo() and comparing it to what I had in soapUI was no good because it doesn't write out the MimeHeaders.
    thanks,
    P.

  • CBO Performing Bad as compared to RBO any suggestions

    Hi
    I am migrating from RBO to CBO. I have taken the Stats on the schema tables and indexes. The response times in CBO are really Bad as compared to RBO. Can any one suggest where should I Start to make the performance better.
    Thanks

    In order to get a list of name and values of optimizer parameters that your session is using you can use 10053 event. here is an example;
    HR on 25/03/2006 19:55:33 at XE > alter session set events ‘10053 trace name on
    text forever, level 1′;
    Session altered.
    HR on 25/03/2006 19:55:51 at XE > SELECT TO_CHAR(sysdate,’DD-MON-YY HH24:MI:SS’)
    ”Start” FROM dual;
    Start
    25-MAR-06 19:55:59
    1 row selected.
    HR on 25/03/2006 19:55:59 at XE > ALTER SESSION SET EVENTS ‘10053 TRACE NAME CONTEXT OFF’;
    The file at User_Dump_Dest folder in your Os with .trc extention will be created.
    Hope this helps, kind regards.
    Tonguç

  • Bad disk IO performance for window vm

    Hi,
    I created some windows vm on OVM and find the disk IO performance is really bad.
    For example:
    I created a win2008 R2 64bit VM with DB, and installed OVM windows PV Drivers on it.
    And I assign the CPU as 2.4G * 6, memory as 8G, HD as 100G.
    If I create a 2G tablespace for DB, it will spent over 1 hour.
    The installation for Oracle DB will spend 2 days.
    I think it's caused by OVM server's HD.
    It's 500G 2.5inch hard disk *4, and I did raid0+1 for it.
    The OVS folder is 1T.
    What should I do to improve the IO performance.
    Thanks!

    ssolbach wrote:
    Have you changed your vm.cfg to have xvd* devices instead of hd* devices?
    This needs to be done after you installed the windows PV drivers. Otherwise they will not get used.
    SebastianNot changed. Could you tell how to change it? the vm.cfg file is as below:
    more vm.cfg
    acpi = 1
    apic = 1
    builder = 'hvm'
    device_model = '/usr/lib/xen/bin/qemu-dm'
    disk = ['file:/var/ovs/mount/C90740247070453FA9928DF8EB8D9D66/running_pool/100_a
    ppaq-vm08/System.img,hda,w',
    'file:/var/ovs/mount/C90740247070453FA9928DF8EB8D9D66/iso_pool/win2008R2_x64_jp/
    ja_windows_server_2008_r2_standard_enterprise_datacenter_web__x64_dvd_x15-50370.
    iso,hdc:cdrom,r',
    kernel = '/usr/lib/xen/boot/hvmloader'
    keymap = 'en-us'
    maxmem = 6144
    memory = 6144
    name = '100_appaq-vm08'
    on_crash = 'restart'
    on_reboot = 'restart'
    pae = 1
    serial = 'pty'
    timer_mode = 0
    uuid = '9dacd19c-fbb1-4eeb-b24b-e7059b939c8b'
    vcpus = 6
    vif = ['bridge=xenbr0,mac=00:16:3E:6B:E5:38,type=ioemu']
    vif_other_config = []
    vnc = 1
    vncconsole = 1
    vnclisten = '0.0.0.0'
    vncpasswd = 'oracle'
    vncunused = 1

  • Nokia: bad software, bad support, bad system, bad,...

    Nokia: bad software, bad support, bad system, bad, bad, bad!

    Hey,
    Y not b specific abt ur Nokia Ovi Suite issue with pc and phone details, ur post doesnot hav any concrete issue.
    If my post helped you, click on Kudos button and if my solution provided is opt 2 u, accpt my solution

  • SimpleSave MD1000H - bad support, bad device

    Sorry to all reading this, I'm usually quite reserved.
    My experience with HP support and this device (SimpleSave md1000h) has been more than frustrating.
    I've upgraded to Win 7 64 bit and the device doesn't show up for at least 3 minutes, and when it does, the backup/restore is non-functional.
    I can sometimes see the files and folders on the backup partition, but cannot copy, move, run - anything
    I've had this device plugged into 7 different machines - OS's ranging from WinXP home, Pro, 7 (32) and 7 (64) - oh yeah, and even Mac OSX (I was desperate)
    It has only worked on one machine thus far since - an Asus machine running Win 7 32 bit. Oddly, I have another exact computer - bought the same day - runnign Win 64 bit - SimpleSave doesn't work on it.
    I don't know what the issue is with this product - there are many posts and I see no real solution offered by HP
    I did call HP support - the response was "Take it back to where you purchased it and they will deal with it"
    The retailer will not fix - wil only offer to replace - not so good if you have anything backed up on it.
    I'm furious with the lack of effort made by HP in this case, and the "English as a third language" support one gets when calling their support line.
    To reiterate - bad pruduct, bad support - bad job all around HP

    It's worse than that here. My drive's just failed - at which point I discover that support comes from the USA even though I bought it in here in the UK. I have to pay international to call the states, and just found out that it's only open USA hours. So that's a wasted call to add to the frustration of loosing all the data on it. What's worse is that I have another one of these I haven't even opened the box on yet.
    Why is HP selling this overseas if they don't properly support them. You can't use webchat to talk to a technician because you can't verify your warranty because HP's website won't accept SimpleSave's Serial No or Part No as they are the wrong format for HP's own website! 
    I get the sense that HP bought these drives in from somewhere and is flogging them without any intention of actually supporting them. They certainly don't see them as actually belonging to HP. You can only get the contact number for SimpleSave support by ringing HP (premium line) to be told "we don't support them, ring 0080063666666" - no indication that that's an international call, or that it's only manned during EST working hours. 
    What's the betting that when I get up at the crack of dawn tomorrow and ring them they'll try and duck out of their warranty?
    So seconded - bad support, bad device.

  • Bad intel graphics performance on nc10

    hi there,
    i'm experiencing a stuttering flash video playback performance on my netbook and i remember that it used to be better. my specs:
    samsung nc10 netbook
    no xorg.conf, kms enabled, glxgears shows 100fps
    00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
    flashplugin 10.0.45.2-1
    intel-dri 7.7.1-1
    xf86-video-intel 2.10.0-1
    xorg-server 1.7.6-3
    X.Org X Server 1.7.6
    Release Date: 2010-03-17
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux martin-netbook 2.6.32-git10-NC10 #1 SMP PREEMPT Sun Apr 4 02:05:15 CEST 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/b2b696d0-6f88-4ceb-9a57-e9bb0e355abe resume=/dev/sda2 usbcore.autosuspend=1 i915.modeset=1 ro
    Build Date: 01 April 2010 05:35:33PM
    Current version of pixman: 0.18.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 4 17:32:05 2010
    (==) Using config file: "/etc/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (==) No screen section available. Using defaults.
    (**) |-->Screen "Default Screen Section" (0)
    (**) | |-->Monitor "<default monitor>"
    (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    (**) | |-->Device "Card0"
    (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AutoAddDevices.
    (II) Loader magic: 0x81e4c60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:27ae:144d:ca00 Intel Corporation Mobile 945GME Express Integrated Graphics Controller rev 3, Mem @ 0xf0000000/524288, 0xd0000000/268435456, 0xf0300000/262144, I/O @ 0x00001800/8
    (--) PCI: (0:0:2:1) 8086:27a6:144d:ca00 Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xf0080000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.7.4.901, module version = 2.10.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, Clarkdale, Arrandale
    (II) Primary Device is: PCI 00@00:02:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "NoDRI"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME
    (--) intel(0): Chipset: "945GME"
    (==) intel(0): video overlay key set to 0x101fe
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output LVDS1 has no monitor section
    (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    (II) intel(0): Output VGA1 disconnected
    (II) intel(0): Output LVDS1 connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS1 using initial mode 1024x600
    (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (==) Depth 24 pixmap format is 32 bpp
    (**) intel(0): Tiling enabled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (II) put_image
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): No memory allocations
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (==) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Disabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    (II) AIGLX: Screen 0 is not DRI capable
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    (II) GLX: Initialized DRISWRAST GL provider for screen 0
    (II) intel(0): Setting screen physical size to 270 x 158
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 1.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (II) Synaptics touchpad driver version 1.2.1
    (**) Option "Device" "/dev/input/event6"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right
    (**) Option "SHMConfig" "on"
    (**) Option "VertEdgeScroll" "true"
    (**) Option "HorizEdgeScroll" "true"
    (**) Option "TouchpadOff" "0"
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (**) Option "AlwaysCore" "true"
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/hal: Adding input device Sleep Button
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event4"
    (II) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event3"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event1"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event5"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    [mi] EQ overflowing. The server is probably stuck in an infinite loop.
    Backtrace:
    0: /usr/bin/Xorg (xorg_backtrace+0x3b) [0x809f81b]
    1: /usr/bin/Xorg (mieqEnqueue+0x1ab) [0x809856b]
    2: /usr/bin/Xorg (xf86PostButtonEventP+0xcf) [0x80a37ef]
    3: /usr/bin/Xorg (xf86PostButtonEvent+0x6c) [0x80a389c]
    4: /usr/lib/xorg/modules/input/synaptics_drv.so (0xb6ed9000+0x338d) [0xb6edc38d]
    5: /usr/lib/xorg/modules/input/synaptics_drv.so (0xb6ed9000+0x57ed) [0xb6ede7ed]
    6: /usr/bin/Xorg (0x8048000+0x6663f) [0x80ae63f]
    7: /usr/bin/Xorg (0x8048000+0xf95b4) [0x81415b4]
    8: (vdso) (__kernel_sigreturn+0x0) [0xb7783400]
    9: /usr/bin/Xorg (0x8048000+0x40170) [0x8088170]
    10: /usr/bin/Xorg (0x8048000+0x1a705) [0x8062705]
    11: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb737ab86]
    12: /usr/bin/Xorg (0x8048000+0x1a2f1) [0x80622f1]
    what i don't like in my logs is the following:
    (**) intel(0): Option "NoDRI"
    is dri disabled? then why can i use glxgears (3d-acceleration)? how can i modify this or is this even related to my problem?
    thanks in advance

    What happens if you replace xf86-video-intel-2.10 with 2.9?

  • Column Security Queries generated by FORMS Performs bad on 11g(11.1.0.7)

    We are busy Upgrading our DB from 10g (10.2.0.4) to 11g (11.1.0.7).
    We are currently using Oracle Application Server (10.1.2.0.2) with Form and Reports connecting to our 10.2.0.4 DB.
    The Application Server is not being upgraded as there are compatable with 11g.
    However when we point these 10g FORMS to the 11g DB we have huge performance issues on specific queries generated by FORMS if Block Propoerty "ENFORCE COLUMN SECURITY"=Y.
    The query that 11g strugles with - for example is:
    SELECT obj.object_type, obj.object_name, obj.owner
    INTO :b0, :b1, :b2
    FROM
    (SELECT o.object_type, o.object_name, o.owner
    FROM all_objects o,
    all_synonyms s
    WHERE s.synonym_name = :b1
    AND s.owner = :b2
    AND s.table_owner = o.owner
    AND s.table_name = o.object_name
    ) obj
    WHERE obj.object_type IN ('TABLE', 'VIEW', 'SYNONYM');
    This query executes for almost 60 seconds - to check the Users Privs to access an Object.
    Question:
    HAS ANYONE ELSE EXPERIENCED THIS DURING thier 11G upgrade???
    I would love to hear from other people with a similar technology if - hoe they have resolved these as it is NOT CODE THAT WE have CUSTOM written, IT IS ORACLE generated code that is performing so terrible on 11g*.
    All feedback welcome.
    PS: Our solution is to DISABLE Column Security on all our Forms as we control access via our own Security module.
    WP

    I just stumbled across the same problem...

Maybe you are looking for

  • How to do this in a data_table

    I have an existing HTML table that allows highlight of rows when mouse passes over the row. The code that uses javascript events like onmouseout and onmouseover looks like this: <tr nowrap valign="top" onmouseover="mover(this, '#cccccc')" onmouseout=

  • Transfer files to MacBook from external drives & MacPro without FireWire

    I just realized my Macbook (13 inch aluminum) doesn't have a FireWire port. WHY? I can't believe I didn't notice when I bought the thing. I assumed that a FireWrire port was standard like USB. I know that I can transfer files from my MacPro Desktop u

  • Video cards currently availble for 07 Mac Pro?

    Hi, I got the "stock" card with my 2007 Mac pro. I never upgraded. What video cards are currently available for an upgrade that include dual DVI ports? I'm going to be upgrading to get better graphic quality when gaming under XP (32-bit). Thanks in a

  • In Robohelp, how to go back to launch page

    I have Captivate demos in a Robohelp system. Each demo is launched from a help page, and when it ends I would like the help page to return automatically. It runs within the same RH frame, not as a popup. Right now the demo ends and the user doesn't n

  • JButton in JTable with custom table model

    Hi! I want to include a JButton into a field of a JTable. I do not know why Java does not provide a standard renderer for JButton like it does for JCheckBox, JComboBox and JTextField. I found some previous postings on how to implement custom CellRend