Serializing methods is not permitted? impossible?

The Method class is final and does not implement Serializable . Thus, symantically it is impossible to serialize a method object, right? Is serializing methods possible but not permitted, or is it just plain impossible? Why? I have not looked at RMI, at all. Before that though I would like to understand the method object serialization issue. thanks.

I hope this clarifies what I wanted to do:
server
ServerSocket servSok = new ServerSocket(8976);
ObjectInputStream ois = new ObjectInputStream(servSok.accept().getInputStream());
Object obj = (Object) ois.readObject();
Method m = String.class.getMethod("toUpperCase", null); // "m" is gotten locally.
// Method m = (Method) ois.readObject(); // I wanted this.
// at this point, the interface/class of "obj" is unknown, yet, I can still invoke a String method on it.
String uc = (String) m.invoke(obj, null);
System.out.println(uc); // correct output
client
Socket sok = new Socket("192.168.3.2", 8976);
ObjectOutputStream oos = new ObjectOutputStream(sok.getOutputStream());
String s = new String("whatever");
Method m = String.class.getMethod("toUpperCase", null);
oos.writeObject(s);
oos.writeObject(m);  // java.io.NotSerializableException
.....I thought it would be neat to be able to send an object to a server, and then without the server knowing anything about that object's interface, I could remotely execute methods on the object. As a client, it would be my responsibility to only send the server methods that fitted to the interface of the object I sent. I had a lot more work to do to get fully functional test code. However, everything came a hault because I can't serialize the Method objects.
Edited by: outekko on Feb 21, 2010 11:34 PM

Similar Messages

  • Payment method not permitted

    while performing automatic payment transaction, there's a message in the payment run log "payment method "S" not permitted for the vendor". I have double checked these points :
    the payment methods in the payment transaction accounting tab of the
            vendor, "S" is there in the list
    the allowed payment methods for the comany code, it is there.
    any other work arounds please.
    Regards,
    Sheetal

    hi sheetal,
    Pl check in Tcode OBVCU that u have assigned the s type Method for ur check....
    and also check in the Bank determination in FBZP that S is assigned to all .
    Also check whether u have assigned the paymetn method S is assigned to Vendor/ Customer Master data in XK02.
    If it is useful.. assign me the points...
    Ranjit

  • DB- get_byteswapped: method not permitted before handle's open method

    Hello.
    I am trying to create a C++ class that can hold a Berkeley DB object as one of its instance variables. When I call the open method, I get the error "DB->get_byteswapped: method not permitted before handle's open method".
    Question: How can this error appear when I am calling the open method?
    The code is like this:
    ---DB.h
    #include <db_cxx.h>
    class myClass {
    private:
    Db* myDb; // A pointer to my Db object
    ---End of DB.h
    -- DB.cpp
    #include <db_cxx.h>
    myClass::myClass(){
    myDb = new myDb(NULL,0); // Create and call my object's constructor
    myDb->open(NULL, "myFile.db", NULL, DB_HASH, flags, 0); // Open the db.
    --- End of DB.cpp
    Thanks for any help you might provide,
    Erich

    Hello,
    This sounds like a build problem. What version of Berkeley DB are you wanting to use? Multiple versions of Berkeley DB can be found on a system. Please check to make sure that you are not picking up a header file from a different version, or linking with with a different version. Verify your paths are not picking up multiple versions of include files, libraries. Compiling, linking, running with a combination of versions could lead to such unusual runtime results.
    Thanks,
    Sandra

  • "DB- put: method not permitted before handle's open method"

    Hi,
    A deadlock caused during a read/update/write circle. After aborting and
    recreating the transaction, I get the error message:
    DB->put: method not permitted before handle's open method
    To produce the error, set a breakpoint to "Set the breakpoint here", start the
    programm, wait until the debuger is there, start the same program a second time,
    now the deadlock occurs.
    Break the deadlock of the first process: "db_deadlock -ao"
    The first process (broken by "db_deadlock" runs into the transaction recovery
    section and creates the error-message.
    System: MinGW
    The below code is simplified:
    #include <malloc.h>
    #include <string.h>
    #include <sys/stat.h>
    #include <db.h>
    #define FLAG_ENV_OPEN DB_CREATE | DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_TXN | DB_REGISTER | DB_RECOVER
    int main( int argc, char *argv[] )
    const char *environment_directory = "C:\\Temp";
    const char *database_file = "C:\\Temp\\test.db";
    const char *key_data = "key";
    const char *data_data = "there is something";
    DBT key, data;
    // If database does not exists, create a database with one element
    struct stat buffer;
    int status = stat( database_file, &buffer );
    if( status != 0 )
    DB *database_handle = NULL;
    int status = db_create( &database_handle, NULL, 0 );
    status = database_handle->set_flags( database_handle, DB_RECNUM );
    status = database_handle->open( database_handle, NULL, database_file, NULL, DB_BTREE, DB_CREATE, 0644 );
    memset( &key, 0, sizeof(DBT) );
    key.data = (void*)key_data;
    key.size = strlen(key_data);
    key.flags = DB_DBT_USERMEM;
    memset( &data, 0, sizeof(DBT) );
    data.data = (void*)data_data;
    data.size = strlen(data_data);
    data.flags = DB_DBT_USERMEM;
    status = database_handle->put( database_handle, NULL, &key, &data, 0 );
    database_handle->close( database_handle, 0 );
    // Create environment
    DB_ENV *environment = NULL;
    status = db_env_create( &environment, 0 );
    status = environment->set_cachesize( environment, 0, 4 * 1024 * 1024, 0 );
    status = environment->open( environment, environment_directory, FLAG_ENV_OPEN, 0644 );
    // Create transaction
    DB_TXN *transaction = NULL;
    status = environment->txn_begin( environment, NULL, &transaction, 0 );
    // Open the created database
    DB *database_handle = NULL;
    status = db_create( &database_handle, environment, 0 );
    status = database_handle->set_flags( database_handle, DB_RECNUM );
    status = database_handle->open( database_handle, transaction, database_file, NULL, DB_BTREE, DB_CREATE, 0644 );
    // Create a read lock
    memset( &key, 0, sizeof(DBT) );
    key.data = (void*)key_data;
    key.size = strlen(key_data);
    key.flags = DB_DBT_USERMEM;
    memset( &data, 0, sizeof(DBT) );
    data.data = NULL;
    data.flags = 0;
    status = database_handle->get( database_handle, transaction, &key, &data, 0 );
    // Create a write lock
    memset( &key, 0, sizeof(DBT) );
    key.data = (void*)key_data;
    key.size = strlen(key_data);
    key.flags = DB_DBT_USERMEM;
    memset( &data, 0, sizeof(DBT) );
    data.data = (void*)data_data;
    data.size = strlen(data_data);
    data.flags = DB_DBT_USERMEM;
    // Set the breakpoint here:
    status = database_handle->put( database_handle, transaction, &key, &data, 0 );
    // Should be deadlock
    if( status == DB_LOCK_DEADLOCK )
    status = transaction->abort( transaction );
    status = environment->txn_begin( environment, NULL, &transaction, 0 );
    // Here is the problem
    status = database_handle->put( database_handle, transaction, &key, &data, 0 );
    // Close database
    database_handle->close( database_handle, 0 );
    // Close environment
    environment->close( environment, 0 );
    return 0;
    }

    Hi,
    The issue in your test case is the use of a transaction handle in the DB->open call, followed by an abort of that transaction. This aborts the DB->open operation, which is not what you intend.
    It is almost always simplest to pass NULL for the transaction handle to the DB->open call and add the DB_AUTO_COMMIT flag instead. Then if the open call succeeds, you have a database handle that is valid regardless of subsequent transaction aborts.
    Regards,
    Michael Cahill, Oracle.

  • Netcfg - ioctl[SIOCSIWAP]: Operation not permitted

    Hi,
    I am using linux only for a few months. I installed arhclinux + openbox from scratch. I connect to wifi using netcfg. I can connect to internet, but it takes about 10sec to do that and I allways get this error:
    [marko@Asus ~]$ sudo netcfg "SiOL Wireless"
    :: SiOL Wireless up                                                                               [BUSY]
    ioctl[SIOCSIWAP]: Operation not permitted
    ioctl[SIOCSIWESSID]: Operation not permitted
    find: »/var/run/network//suspend/«: No such file or directory
                                                                                                              [DONE]
    I checked the wiki and googled around but I can't figure out what's wrong.
    I know I should post more stuff about it but like I said I am a newbie. Don't know what to post.
    Last edited by Ventil1 (2010-03-17 20:31:38)

    [marko@Asus ~]$ sudo wpa_supplicant -d -Dwext -iwlan0 -c/etc/wpa_supplicant.conf
    Initializing interface 'wlan0' conf '/etc/wpa_supplicant.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A'
    Configuration file '/etc/wpa_supplicant.conf' -> '/etc/wpa_supplicant.conf'
    Reading configuration file '/etc/wpa_supplicant.conf'
    ctrl_interface='DIR=/var/run/wpa_supplicant GROUP=wheel'
    Priority group 0
    id=0 ssid='SiOL Wireless'
    Initializing interface (2) 'wlan0'
    Interface wlan0 set UP - waiting a second for the driver to complete initialization
    SIOCGIWRANGE: WE(compiled)=22 WE(source)=18 enc_capa=0xf
    capabilities: key_mgmt 0xf enc 0xf flags 0x0
    ioctl[SIOCSIWAP]: Operation not permitted
    ioctl[SIOCSIWESSID]: Operation not permitted
    WEXT: Operstate: linkmode=1, operstate=5
    Own MAC address: 00:25:d3:92:fe:62
    wpa_driver_wext_set_wpa
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_countermeasures
    wpa_driver_wext_set_drop_unencrypted
    RSN: flushing PMKID list in the driver
    Setting scan request: 0 sec 100000 usec
    WPS: UUID based on MAC address - hexdump(len=16): 58 c5 8e ee 68 1e 5e 28 83 32 e8 fd 04 9c 65 40
    WPS: Build Beacon and Probe Response IEs
    WPS: * Version
    WPS: * Wi-Fi Protected Setup State (0)
    WPS: * Version
    WPS: * Wi-Fi Protected Setup State (0)
    WPS: * Response Type (2)
    WPS: * UUID-E
    WPS: * Manufacturer
    WPS: * Model Name
    WPS: * Model Number
    WPS: * Serial Number
    WPS: * Primary Device Type
    WPS: * Device Name
    WPS: * Config Methods (0)
    WPS: * RF Bands (3)
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    ctrl_interface_group=10 (from group name 'wheel')
    Added interface wlan0
    RTM_NEWLINK: operstate=0 ifi_flags=0x1002 ()
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b06 len=8
    State: DISCONNECTED -> SCANNING
    Starting AP scan (broadcast SSID)
    Trying to get current scan results first without requesting a new scan to speed up initial association
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 0 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 5 seconds
    EAPOL: disable timer tick
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 227 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    Starting AP scan (broadcast SSID)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlan0' added
    Wireless event: cmd=0x8b19 len=8
    Received 226 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 0
    Try to find WPA-enabled AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - no WPA/RSN proto match
    Try to find non-WPA AP
    0: 00:14:a5:9d:29:b8 ssid='SiOL Wireless' wpa_ie_len=22 rsn_ie_len=0 caps=0x11
    skip - non-WPA network not allowed
    No suitable AP found.
    Setting scan request: 5 sec 0 usec
    ^CCTRL-EVENT-TERMINATING - signal 2 received
    Removing interface wlan0
    No keys have been configured - skip key clearing
    State: SCANNING -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    wpa_driver_wext_set_wpa
    wpa_driver_wext_set_drop_unencrypted
    wpa_driver_wext_set_countermeasures
    No keys have been configured - skip key clearing
    Cancelling scan request
    Cancelling authentication timeout
    ioctl[SIOCSIWAP]: Operation not permitted
    ioctl[SIOCSIWESSID]: Operation not permitted
    WEXT: Operstate: linkmode=0, operstate=6
    I presses Ctrl-C beacause it didn't want to end

  • [webgl] sluggish performance ( /dev/nvidia0 Operation not permitted )

    We (folks on #archlinux already tried helping) have been at this for hours now... no solution found yet.
    summary: webgl works but performance is sluggish(20 to 30fps) which makes me assume it's falling back to software rendering for some unknown reason
    already tried many things: vmalloc kernel parameters, irq control left to bios/archlinux, being in the video group, not being in the video group, having an xorg.conf, not having an xorg.conf, different AGP aperture sizes in BIOS, regular gl performance is normal (60 fps (capped to display refresh) in glxgears), only webgl slugs, card (GT 7600 256MB VRAM) should support the required shader language version for webgl (and webgl performance is only sluggish in linux... so I think it must be a configuration issue on some driver/kernel/browser setting?)
    Different browsers show different messages when started from the console but I don't know what to make of those and googling them did not reveal any solutions so far either.
    browsers tested: firefox, google-chrome(from AUR), chromium
    window managers tested: enlightenment, fluxbox
    kernel: linux-lts
    driver: nvidia-304xx-lts (can not use Nouveau as Nouveau keeps locking up the GPU)
    It's a fresh archlinux installation (Ubuntu had the same performance problem btw in case that might be useful to know for looking for the cause).
    Everything I tried so far, did not change anything about the sluggish webgl performance problem.
    One thing I noticed is that /dev/nvidia0 and /dev/nvidiactl both do not exist until after "startx". Could that be a problem?
    Here are some logs, hoping someone sees something which looks suspicious and knows what else I could try to make it work.
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.14.23-1-lts (nobody@home-andyrtr-arch64-chroots-testing-x86_64-andyrtr) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP Thu Oct 30 19:41:12 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=../vmlinuz-linux-lts ipv6.disable=1 vmalloc=256M root=/dev/sda1 rw initrd=../initramfs-linux-lts.img
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005ffbffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000005ffc0000-0x000000005ffcffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000005ffd0000-0x000000005fffffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff7c0000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.3 present.
    [ 0.000000] DMI: ASUSTek Computer Inc. K8N-E-Deluxe/'K8N-E-Deluxe', BIOS 1012.007 01/18/2006
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] e820: last_pfn = 0x5ffc0 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
    [ 0.000000] 1 base 0040000000 mask FFE0000000 write-back
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [ 0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [ 0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x5fa00000-0x5fbfffff]
    [ 0.000000] [mem 0x5fa00000-0x5fbfffff] page 2M
    [ 0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x5c000000-0x5f9fffff]
    [ 0.000000] [mem 0x5c000000-0x5f9fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x5bffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x5bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x5fc00000-0x5ffbffff]
    [ 0.000000] [mem 0x5fc00000-0x5fdfffff] page 2M
    [ 0.000000] [mem 0x5fe00000-0x5ffbffff] page 4k
    [ 0.000000] BRK [0x01b44000, 0x01b44fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x5fc97000-0x5ffbffff]
    [ 0.000000] ACPI: RSDP 00000000000f9cb0 000014 (v00 ACPIAM)
    [ 0.000000] ACPI: RSDT 000000005ffc0000 000030 (v01 A M I OEMRSDT 01000618 MSFT 00000097)
    [ 0.000000] ACPI: FACP 000000005ffc0200 000081 (v02 A M I OEMFACP 01000618 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 000000005ffc0400 004524 (v01 A0055 A0055003 00000003 INTL 02002026)
    [ 0.000000] ACPI: FACS 000000005ffd0000 000040
    [ 0.000000] ACPI: APIC 000000005ffc0390 000068 (v01 A M I OEMAPIC 01000618 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 000000005ffd0040 000041 (v01 A M I OEMBIOS 01000618 MSFT 00000097)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] Scanning NUMA topology in Northbridge 24
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000005ffbffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x5ffbffff]
    [ 0.000000] NODE_DATA [mem 0x5fc92000-0x5fc96fff]
    [ 0.000000] [ffffea0000000000-ffffea00017fffff] PMD -> [ffff88005dc00000-ffff88005f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x5ffbffff]
    [ 0.000000] On node 0 totalpages: 393054
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 6079 pages used for memmap
    [ 0.000000] DMA32 zone: 389056 pages, LIFO batch:31
    [ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
    [ 0.000000] If you got timer trouble try acpi_use_timer_override
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: BIOS IRQ0 override ignored.
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] ACPI: IRQ14 used by override.
    [ 0.000000] ACPI: IRQ15 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
    [ 0.000000] e820: [mem 0x60000000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88005fa00000 s86656 r8192 d23936 u2097152
    [ 0.000000] pcpu-alloc: s86656 r8192 d23936 u2097152 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 386890
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=../vmlinuz-linux-lts ipv6.disable=1 vmalloc=256M root=/dev/sda1 rw initrd=../initramfs-linux-lts.img
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] Node 0: aperture @ e0000000 size 256 MB
    [ 0.000000] Memory: 1532388K/1572216K available (5187K kernel code, 858K rwdata, 1640K rodata, 1136K init, 1300K bss, 39828K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
    [ 0.000000] NR_IRQS:8448 nr_irqs:256 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 6291456 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2210.711 MHz processor
    [ 0.010032] Calibrating delay loop (skipped), value calculated using timer frequency.. 4421.42 BogoMIPS (lpj=22107110)
    [ 0.010037] pid_max: default: 32768 minimum: 301
    [ 0.010061] ACPI: Core revision 20131218
    [ 0.020405] ACPI: All ACPI Tables successfully acquired
    [ 0.020642] Security Framework initialized
    [ 0.020671] Yama: becoming mindful.
    [ 0.020955] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.025410] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.027465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.027473] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.028144] Initializing cgroup subsys memory
    [ 0.028166] Initializing cgroup subsys devices
    [ 0.028170] Initializing cgroup subsys freezer
    [ 0.028173] Initializing cgroup subsys net_cls
    [ 0.028177] Initializing cgroup subsys blkio
    [ 0.028234] tseg: 0000000000
    [ 0.028253] mce: CPU supports 5 MCE banks
    [ 0.028279] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
    tlb_flushall_shift: 6
    [ 0.034575] Freeing SMP alternatives memory: 20K (ffffffff819f4000 - ffffffff819f9000)
    [ 0.035713] ftrace: allocating 20111 entries in 79 pages
    [ 0.049994] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
    [ 0.150150] smpboot: CPU0: AMD Athlon(tm) 64 Processor 3200+ (fam: 0f, model: 0c, stepping: 00)
    [ 0.160000] Performance Events: AMD PMU driver.
    [ 0.160000] ... version: 0
    [ 0.160000] ... bit width: 48
    [ 0.160000] ... generic registers: 4
    [ 0.160000] ... value mask: 0000ffffffffffff
    [ 0.160000] ... max period: 00007fffffffffff
    [ 0.160000] ... fixed-purpose events: 0
    [ 0.160000] ... event mask: 000000000000000f
    [ 0.160000] x86: Booted up 1 node, 1 CPUs
    [ 0.160000] smpboot: Total of 1 processors activated (4421.42 BogoMIPS)
    [ 0.160000] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.160000] devtmpfs: initialized
    [ 0.160000] PM: Registering ACPI NVS region [mem 0x5ffd0000-0x5fffffff] (196608 bytes)
    [ 0.160000] pinctrl core: initialized pinctrl subsystem
    [ 0.160056] RTC time: 14:37:08, date: 11/06/14
    [ 0.160148] NET: Registered protocol family 16
    [ 0.160332] cpuidle: using governor ladder
    [ 0.160334] cpuidle: using governor menu
    [ 0.160347] node 0 link 0: io port [1000, ffffff]
    [ 0.160351] TOM: 0000000060000000 aka 1536M
    [ 0.160356] node 0 link 0: mmio [a0000, bffff]
    [ 0.160359] node 0 link 0: mmio [60000000, fe0bffff]
    [ 0.160363] bus: [bus 00-ff] on node 0 link 0
    [ 0.160365] bus: 00 [io 0x0000-0xffff]
    [ 0.160367] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.160369] bus: 00 [mem 0x60000000-0xfcffffffff]
    [ 0.160397] ACPI: bus type PCI registered
    [ 0.160401] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.160498] PCI: Using configuration type 1 for base access
    [ 0.161627] bio: create slab <bio-0> at 0
    [ 0.161792] ACPI: Added _OSI(Module Device)
    [ 0.161794] ACPI: Added _OSI(Processor Device)
    [ 0.161795] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.161797] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.163305] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.164921] ACPI: Interpreter enabled
    [ 0.164937] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    [ 0.164955] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.164958] ACPI: Using IOAPIC for interrupt routing
    [ 0.164998] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.165137] ACPI: No dock devices found.
    [ 0.170533] ACPI: Power Resource [ISAV] (on)
    [ 0.173609] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.173619] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
    [ 0.173626] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.173736] acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.173739] acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.173742] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.173745] acpi PNP0A03:00: host bridge window [mem 0x60000000-0xff7bffff] (ignored)
    [ 0.173749] PCI: root bus 00: hardware-probed resources
    [ 0.173755] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
    [ 0.173915] PCI host bridge to bus 0000:00
    [ 0.173919] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.173922] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.173925] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.173928] pci_bus 0000:00: root bus resource [mem 0x60000000-0xfcffffffff]
    [ 0.173943] pci 0000:00:00.0: [10de:00e1] type 00 class 0x060000
    [ 0.173955] pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
    [ 0.174087] pci 0000:00:01.0: [10de:00e0] type 00 class 0x060100
    [ 0.174184] pci 0000:00:01.1: [10de:00e4] type 00 class 0x0c0500
    [ 0.174192] pci 0000:00:01.1: reg 0x10: [io 0x5080-0x509f]
    [ 0.174203] pci 0000:00:01.1: reg 0x20: [io 0x5000-0x503f]
    [ 0.174207] pci 0000:00:01.1: reg 0x24: [io 0x5040-0x507f]
    [ 0.174221] pci 0000:00:01.1: PME# supported from D3hot D3cold
    [ 0.174311] pci 0000:00:02.0: [10de:00e7] type 00 class 0x0c0310
    [ 0.174319] pci 0000:00:02.0: reg 0x10: [mem 0xfebfd000-0xfebfdfff]
    [ 0.174342] pci 0000:00:02.0: supports D1 D2
    [ 0.174345] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.174378] pci 0000:00:02.0: System wakeup disabled by ACPI
    [ 0.174441] pci 0000:00:02.1: [10de:00e7] type 00 class 0x0c0310
    [ 0.174448] pci 0000:00:02.1: reg 0x10: [mem 0xfebfe000-0xfebfefff]
    [ 0.174472] pci 0000:00:02.1: supports D1 D2
    [ 0.174474] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.174506] pci 0000:00:02.1: System wakeup disabled by ACPI
    [ 0.174565] pci 0000:00:02.2: [10de:00e8] type 00 class 0x0c0320
    [ 0.174573] pci 0000:00:02.2: reg 0x10: [mem 0xfebffc00-0xfebffcff]
    [ 0.174602] pci 0000:00:02.2: supports D1 D2
    [ 0.174605] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.174652] pci 0000:00:02.2: System wakeup disabled by ACPI
    [ 0.174721] pci 0000:00:05.0: [10de:00df] type 00 class 0x068000
    [ 0.174728] pci 0000:00:05.0: reg 0x10: [mem 0xfebfc000-0xfebfcfff]
    [ 0.174733] pci 0000:00:05.0: reg 0x14: [io 0xec00-0xec07]
    [ 0.174755] pci 0000:00:05.0: supports D1 D2
    [ 0.174758] pci 0000:00:05.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.174790] pci 0000:00:05.0: System wakeup disabled by ACPI
    [ 0.174854] pci 0000:00:06.0: [10de:00ea] type 00 class 0x040100
    [ 0.174861] pci 0000:00:06.0: reg 0x10: [io 0xe800-0xe8ff]
    [ 0.174866] pci 0000:00:06.0: reg 0x14: [io 0xe400-0xe47f]
    [ 0.174870] pci 0000:00:06.0: reg 0x18: [mem 0xfebfb000-0xfebfbfff]
    [ 0.174890] pci 0000:00:06.0: supports D1 D2
    [ 0.174967] pci 0000:00:08.0: [10de:00e5] type 00 class 0x01018a
    [ 0.174983] pci 0000:00:08.0: reg 0x20: [io 0xffa0-0xffaf]
    [ 0.175075] pci 0000:00:0a.0: [10de:00e3] type 00 class 0x010185
    [ 0.175082] pci 0000:00:0a.0: reg 0x10: [io 0x09f0-0x09f7]
    [ 0.175087] pci 0000:00:0a.0: reg 0x14: [io 0x0bf0-0x0bf3]
    [ 0.175092] pci 0000:00:0a.0: reg 0x18: [io 0x0970-0x0977]
    [ 0.175096] pci 0000:00:0a.0: reg 0x1c: [io 0x0b70-0x0b73]
    [ 0.175101] pci 0000:00:0a.0: reg 0x20: [io 0xc800-0xc80f]
    [ 0.175105] pci 0000:00:0a.0: reg 0x24: [io 0xc400-0xc47f]
    [ 0.175191] pci 0000:00:0b.0: [10de:00e2] type 01 class 0x060400
    [ 0.175286] pci 0000:00:0e.0: [10de:00ed] type 01 class 0x060400
    [ 0.175325] pci 0000:00:0e.0: System wakeup disabled by ACPI
    [ 0.175388] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    [ 0.175468] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    [ 0.175549] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    [ 0.175627] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    [ 0.175752] pci 0000:01:00.0: [10de:02e0] type 00 class 0x030000
    [ 0.175770] pci 0000:01:00.0: reg 0x10: [mem 0xfd000000-0xfdffffff]
    [ 0.175780] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff pref]
    [ 0.175790] pci 0000:01:00.0: reg 0x18: [mem 0xfc000000-0xfcffffff]
    [ 0.175821] pci 0000:01:00.0: reg 0x30: [mem 0xfe9e0000-0xfe9fffff pref]
    [ 0.175934] pci 0000:00:0b.0: PCI bridge to [bus 01]
    [ 0.175940] pci 0000:00:0b.0: bridge window [mem 0xfa900000-0xfe9fffff]
    [ 0.175943] pci 0000:00:0b.0: bridge window [mem 0xba800000-0xda7fffff pref]
    [ 0.175986] pci 0000:02:0b.0: [1106:3044] type 00 class 0x0c0010
    [ 0.175998] pci 0000:02:0b.0: reg 0x10: [mem 0xfeaff800-0xfeafffff]
    [ 0.176005] pci 0000:02:0b.0: reg 0x14: [io 0xbc00-0xbc7f]
    [ 0.176047] pci 0000:02:0b.0: supports D2
    [ 0.176049] pci 0000:02:0b.0: PME# supported from D2 D3hot D3cold
    [ 0.176124] pci 0000:00:0e.0: PCI bridge to [bus 02]
    [ 0.176127] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff]
    [ 0.176130] pci 0000:00:0e.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.176957] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
    [ 0.177043] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *11
    [ 0.177127] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
    [ 0.177211] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled.
    [ 0.177294] ACPI: PCI Interrupt Link [LNKE] (IRQs 16 17 18 19) *11
    [ 0.177374] ACPI: PCI Interrupt Link [LUS0] (IRQs 20 21 22) *11
    [ 0.177454] ACPI: PCI Interrupt Link [LUS1] (IRQs 20 21 22) *9
    [ 0.177533] ACPI: PCI Interrupt Link [LUS2] (IRQs 20 21 22) *10
    [ 0.177612] ACPI: PCI Interrupt Link [LKLN] (IRQs 20 21 22) *11
    [ 0.177706] ACPI: PCI Interrupt Link [LAUI] (IRQs 20 21 22) *9
    [ 0.177786] ACPI: PCI Interrupt Link [LKMO] (IRQs 20 21 22) *0, disabled.
    [ 0.177867] ACPI: PCI Interrupt Link [LKSM] (IRQs 20 21 22) *0, disabled.
    [ 0.177947] ACPI: PCI Interrupt Link [LTID] (IRQs 20 21 22) *0
    [ 0.178035] ACPI: PCI Interrupt Link [LTIE] (IRQs 20 21 22) *0, disabled.
    [ 0.178144] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22) *14
    [ 0.178495] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.178498] vgaarb: loaded
    [ 0.178499] vgaarb: bridge control possible 0000:01:00.0
    [ 0.178573] PCI: Using ACPI for IRQ routing
    [ 0.178578] PCI: pci_cache_line_size set to 64 bytes
    [ 0.178617] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.178621] e820: reserve RAM buffer [mem 0x5ffc0000-0x5fffffff]
    [ 0.178834] NetLabel: Initializing
    [ 0.178836] NetLabel: domain hash size = 128
    [ 0.178838] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.178866] NetLabel: unlabeled traffic allowed by default
    [ 0.178945] Switched to clocksource refined-jiffies
    [ 0.193118] pnp: PnP ACPI init
    [ 0.193168] ACPI: bus type PNP registered
    [ 0.193275] pnp 00:00: [dma 4]
    [ 0.193336] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.193401] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.193439] pnp 00:02: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.193480] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.193867] pnp 00:04: [dma 2]
    [ 0.193932] pnp 00:04: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.194190] pnp 00:05: [dma 3]
    [ 0.194334] pnp 00:05: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 0.194597] pnp 00:06: Plug and Play ACPI device, IDs PNPb006 (active)
    [ 0.194863] system 00:07: [io 0x0190-0x0193] has been reserved
    [ 0.194867] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.194870] system 00:07: [io 0x4000-0x40ff window] has been reserved
    [ 0.194873] system 00:07: [io 0x4400-0x44ff window] has been reserved
    [ 0.194876] system 00:07: [io 0x4800-0x48ff window] has been reserved
    [ 0.194881] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.194987] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.194990] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.194993] system 00:08: [mem 0xff780000-0xff7bffff] has been reserved
    [ 0.194996] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.195070] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.195231] system 00:0a: [io 0x0480-0x0487] has been reserved
    [ 0.195234] system 00:0a: [io 0x0d00-0x0d07] has been reserved
    [ 0.195237] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.195468] pnp 00:0b: Plug and Play ACPI device, IDs PNPb02f (active)
    [ 0.195722] pnp 00:0c: [dma 0 disabled]
    [ 0.195790] pnp 00:0c: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.196055] pnp 00:0d: [dma 0 disabled]
    [ 0.196135] pnp 00:0d: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.196351] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.196355] system 00:0e: [mem 0x000c0000-0x000dffff] could not be reserved
    [ 0.196358] system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.196360] system 00:0e: [mem 0x00100000-0x5fffffff] could not be reserved
    [ 0.196363] system 00:0e: [mem 0xff7c0000-0xffffffff] has been reserved
    [ 0.196366] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.196611] pnp: PnP ACPI: found 15 devices
    [ 0.196613] ACPI: bus type PNP unregistered
    [ 0.203623] Switched to clocksource acpi_pm
    [ 0.203683] pci 0000:00:0b.0: PCI bridge to [bus 01]
    [ 0.203692] pci 0000:00:0b.0: bridge window [mem 0xfa900000-0xfe9fffff]
    [ 0.203696] pci 0000:00:0b.0: bridge window [mem 0xba800000-0xda7fffff pref]
    [ 0.203702] pci 0000:00:0e.0: PCI bridge to [bus 02]
    [ 0.203705] pci 0000:00:0e.0: bridge window [io 0xb000-0xbfff]
    [ 0.203709] pci 0000:00:0e.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.203715] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.203718] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.203720] pci_bus 0000:00: resource 6 [mem 0x60000000-0xfcffffffff]
    [ 0.203723] pci_bus 0000:01: resource 1 [mem 0xfa900000-0xfe9fffff]
    [ 0.203726] pci_bus 0000:01: resource 2 [mem 0xba800000-0xda7fffff pref]
    [ 0.203730] pci_bus 0000:02: resource 0 [io 0xb000-0xbfff]
    [ 0.203732] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.203816] NET: Registered protocol family 2
    [ 0.204157] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.204482] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    [ 0.204915] TCP: Hash tables configured (established 16384 bind 16384)
    [ 0.205152] TCP: reno registered
    [ 0.205159] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.205233] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.205488] NET: Registered protocol family 1
    [ 0.205869] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
    [ 0.290220] ACPI: PCI Interrupt Link [LUS1] enabled at IRQ 21
    [ 0.370210] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 20
    [ 0.370416] pci 0000:01:00.0: Boot video device
    [ 0.370423] PCI: CLS 32 bytes, default 64
    [ 0.370570] Unpacking initramfs...
    [ 0.464290] Freeing initrd memory: 3236K (ffff88005fc97000 - ffff88005ffc0000)
    [ 0.464451] microcode: AMD CPU family 0xf not supported
    [ 0.464560] Scanning for low memory corruption every 60 seconds
    [ 0.465261] futex hash table entries: 256 (order: 2, 16384 bytes)
    [ 0.479534] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.481578] zbud: loaded
    [ 0.481785] VFS: Disk quotas dquot_6.5.2
    [ 0.481858] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.482120] msgmni has been set to 2999
    [ 0.482218] Key type big_key registered
    [ 0.482413] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.482461] io scheduler noop registered
    [ 0.482463] io scheduler deadline registered (default)
    [ 0.482512] io scheduler cfq registered
    [ 0.482688] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.482710] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.482841] GHES: HEST is not enabled!
    [ 0.482924] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.503487] 00:0c: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.524026] 00:0d: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
    [ 0.524343] Linux agpgart interface v0.103
    [ 0.524401] rtc_cmos 00:01: RTC can wake from S4
    [ 0.524562] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
    [ 0.524601] rtc_cmos 00:01: alarms up to one year, y3k, 114 bytes nvram
    [ 0.524617] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.524839] TCP: cubic registered
    [ 0.524845] IPv6: Loaded, but administratively disabled, reboot required to enable
    [ 0.524849] NET: Registered protocol family 17
    [ 0.525165] registered taskstats version 1
    [ 0.525574] Magic number: 6:546:636
    [ 0.525730] rtc_cmos 00:01: setting system clock to 2014-11-06 14:37:08 UTC (1415284628)
    [ 0.525790] PM: Hibernation image not present or could not be loaded.
    [ 0.529043] Freeing unused kernel memory: 1136K (ffffffff818d8000 - ffffffff819f4000)
    [ 0.529053] Write protecting the kernel read-only data: 8192k
    [ 0.534311] Freeing unused kernel memory: 944K (ffff880001514000 - ffff880001600000)
    [ 0.536542] Freeing unused kernel memory: 408K (ffff88000179a000 - ffff880001800000)
    [ 0.552237] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.560351] systemd-udevd[39]: starting version 216
    [ 0.592052] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.592059] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.592875] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.596938] Floppy drive(s): fd0 is 1.44M
    [ 0.614213] ACPI: bus type USB registered
    [ 0.614265] usbcore: registered new interface driver usbfs
    [ 0.614281] usbcore: registered new interface driver hub
    [ 0.614967] FDC 0 is a post-1991 82077
    [ 0.625659] SCSI subsystem initialized
    [ 0.633113] libata version 3.00 loaded.
    [ 0.633845] sata_nv 0000:00:0a.0: version 3.5
    [ 0.634191] ACPI: PCI Interrupt Link [LTID] BIOS reported IRQ 0, using IRQ 22
    [ 0.634194] ACPI: PCI Interrupt Link [LTID] enabled at IRQ 22
    [ 0.635580] usbcore: registered new device driver usb
    [ 0.636718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.637213] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.637384] ohci-pci: OHCI PCI platform driver
    [ 0.637732] ehci-pci: EHCI PCI platform driver
    [ 0.647435] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 19
    [ 0.647607] scsi0 : sata_nv
    [ 0.652697] scsi1 : sata_nv
    [ 0.652813] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xc800 irq 22
    [ 0.652817] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xc808 irq 22
    [ 0.653212] ohci-pci 0000:00:02.0: OHCI PCI host controller
    [ 0.653223] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 1
    [ 0.653279] ohci-pci 0000:00:02.0: irq 22, io mem 0xfebfd000
    [ 0.685200] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.700074] firewire_ohci 0000:02:0b.0: added OHCI v1.0 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 0.712351] hub 1-0:1.0: USB hub found
    [ 0.712367] hub 1-0:1.0: 4 ports detected
    [ 0.712766] ohci-pci 0000:00:02.1: OHCI PCI host controller
    [ 0.712776] ohci-pci 0000:00:02.1: new USB bus registered, assigned bus number 2
    [ 0.712845] ohci-pci 0000:00:02.1: irq 21, io mem 0xfebfe000
    [ 0.772298] hub 2-0:1.0: USB hub found
    [ 0.772346] hub 2-0:1.0: 4 ports detected
    [ 0.773212] ehci-pci 0000:00:02.2: EHCI Host Controller
    [ 0.773228] ehci-pci 0000:00:02.2: new USB bus registered, assigned bus number 3
    [ 0.773242] ehci-pci 0000:00:02.2: debug port 1
    [ 0.773285] ehci-pci 0000:00:02.2: cache line size of 32 is not supported
    [ 0.773315] ehci-pci 0000:00:02.2: irq 20, io mem 0xfebffc00
    [ 0.790050] ehci-pci 0000:00:02.2: USB 2.0 started, EHCI 1.00
    [ 0.790381] hub 3-0:1.0: USB hub found
    [ 0.790395] hub 3-0:1.0: 8 ports detected
    [ 0.880074] hub 1-0:1.0: USB hub found
    [ 0.880086] hub 1-0:1.0: 4 ports detected
    [ 0.970117] hub 2-0:1.0: USB hub found
    [ 0.970134] hub 2-0:1.0: 4 ports detected
    [ 0.970356] pata_amd 0000:00:08.0: version 0.4.1
    [ 0.973849] scsi2 : pata_amd
    [ 0.974094] scsi3 : pata_amd
    [ 0.974162] ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
    [ 0.974165] ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
    [ 0.980098] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.110030] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.190443] ata3.00: ATA-6: IC35L120AVV207-0, V24OA63A, max UDMA/100
    [ 1.190446] ata3.00: 241254720 sectors, multi 16: LBA48
    [ 1.190651] ata3.01: ATA-7: Hitachi HDT725032VLAT80, V54OA42A, max UDMA/133
    [ 1.190654] ata3.01: 625142448 sectors, multi 16: LBA48
    [ 1.190664] ata3: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc6c7c000) ACPI=0x3f01f (20:15:0x1f)
    [ 1.190668] ata3: nv_mode_filter: 0x7f39f&0x7f39f->0x7f39f, BIOS=0x7f000 (0xc6c7c000) ACPI=0x7f01f (20:15:0x1f)
    [ 1.200168] firewire_core 0000:02:0b.0: created device fw0: GUID 00e0180000b91545, S400
    [ 1.250375] ata3.00: configured for UDMA/100
    [ 1.265023] usb-storage 3-1:1.0: USB Mass Storage device detected
    [ 1.265669] scsi4 : usb-storage 3-1:1.0
    [ 1.265808] usbcore: registered new interface driver usb-storage
    [ 1.290406] ata3.01: configured for UDMA/133
    [ 1.310032] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.310260] scsi 2:0:0:0: Direct-Access ATA IC35L120AVV207-0 V24O PQ: 0 ANSI: 5
    [ 1.310565] scsi 2:0:1:0: Direct-Access ATA Hitachi HDT72503 V54O PQ: 0 ANSI: 5
    [ 1.380033] usb 3-2: new high-speed USB device number 3 using ehci-pci
    [ 1.460029] tsc: Refined TSC clocksource calibration: 2210.758 MHz
    [ 1.490267] ata4.00: ATAPI: PIONEER DVD-RW DVR-107D, 1.21, max UDMA/33
    [ 1.490278] ata4: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc6c7c000) ACPI=0x701f (60:600:0x13)
    [ 1.510193] ata4.00: configured for UDMA/33
    [ 1.517016] scsi 3:0:0:0: CD-ROM PIONEER DVD-RW DVR-107D 1.21 PQ: 0 ANSI: 5
    [ 1.530745] sd 2:0:1:0: [sdb] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.530827] sd 2:0:1:0: [sdb] Write Protect is off
    [ 1.530831] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.530860] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.530988] sd 2:0:0:0: [sda] 241254720 512-byte logical blocks: (123 GB/115 GiB)
    [ 1.531050] sd 2:0:0:0: [sda] Write Protect is off
    [ 1.531053] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.531145] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.536391] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
    [ 1.536403] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.536800] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 1.542997] usb-storage 3-2:1.0: USB Mass Storage device detected
    [ 1.543072] sdb: sdb1
    [ 1.543976] scsi5 : usb-storage 3-2:1.0
    [ 1.567204] sd 2:0:1:0: [sdb] Attached SCSI disk
    [ 1.575313] sda: sda1 sda2
    [ 1.575840] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.660061] usb 3-3: new high-speed USB device number 4 using ehci-pci
    [ 1.810652] hub 3-3:1.0: USB hub found
    [ 1.810704] hub 3-3:1.0: 4 ports detected
    [ 2.210057] usb 2-2: new low-speed USB device number 2 using ohci-pci
    [ 2.261495] scsi 4:0:0:0: Direct-Access INTENSO USB 1100 PQ: 0 ANSI: 0 CCS
    [ 2.263859] sd 4:0:0:0: [sdc] 15858688 512-byte logical blocks: (8.11 GB/7.56 GiB)
    [ 2.264963] sd 4:0:0:0: [sdc] Write Protect is off
    [ 2.264968] sd 4:0:0:0: [sdc] Mode Sense: 43 00 00 00
    [ 2.266088] sd 4:0:0:0: [sdc] No Caching mode page found
    [ 2.266143] sd 4:0:0:0: [sdc] Assuming drive cache: write through
    [ 2.270838] sd 4:0:0:0: [sdc] No Caching mode page found
    [ 2.270891] sd 4:0:0:0: [sdc] Assuming drive cache: write through
    [ 2.271726] sdc: sdc1 sdc2
    [ 2.275974] sd 4:0:0:0: [sdc] No Caching mode page found
    [ 2.276035] sd 4:0:0:0: [sdc] Assuming drive cache: write through
    [ 2.276094] sd 4:0:0:0: [sdc] Attached SCSI removable disk
    [ 2.446613] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.458243] usbcore: registered new interface driver usbhid
    [ 2.458250] usbhid: USB HID core driver
    [ 2.459628] input: Logitech USB Mouse as /devices/pci0000:00/0000:00:02.1/usb2/2-2/2-2:1.0/0003:046D:C00C.0001/input/input1
    [ 2.460237] hid-generic 0003:046D:C00C.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB Mouse] on usb-0000:00:02.1-2/input0
    [ 2.465896] Switched to clocksource tsc
    [ 2.514535] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.540869] scsi 5:0:0:0: Direct-Access Hama FlashPen 1.04 PQ: 0 ANSI: 0 CCS
    [ 2.541837] sd 5:0:0:0: [sdd] 1003520 512-byte logical blocks: (513 MB/490 MiB)
    [ 2.542457] sd 5:0:0:0: [sdd] Write Protect is off
    [ 2.542461] sd 5:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [ 2.543083] sd 5:0:0:0: [sdd] No Caching mode page found
    [ 2.543138] sd 5:0:0:0: [sdd] Assuming drive cache: write through
    [ 2.546081] sd 5:0:0:0: [sdd] No Caching mode page found
    [ 2.546131] sd 5:0:0:0: [sdd] Assuming drive cache: write through
    [ 2.546968] sdd:
    [ 2.549206] sd 5:0:0:0: [sdd] No Caching mode page found
    [ 2.549255] sd 5:0:0:0: [sdd] Assuming drive cache: write through
    [ 2.549305] sd 5:0:0:0: [sdd] Attached SCSI removable disk
    [ 3.215911] systemd[1]: systemd 216 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN )
    [ 3.216179] systemd[1]: Detected architecture 'x86-64'.
    [ 3.233071] systemd[1]: Set hostname to <db1arch>.
    [ 4.451586] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 4.452340] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 4.452470] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 4.452530] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 4.453076] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 4.453109] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 4.453152] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 4.453167] systemd[1]: Starting Paths.
    [ 4.453440] systemd[1]: Reached target Paths.
    [ 4.453453] systemd[1]: Starting Encrypted Volumes.
    [ 4.453723] systemd[1]: Reached target Encrypted Volumes.
    [ 4.453743] systemd[1]: Expecting device dev-sda2.device...
    [ 4.453935] systemd[1]: Expecting device dev-disk-by\x2duuid-1be23119\x2d5515\x2d4480\x2da559\x2d696105f9cee4.device...
    [ 4.454136] systemd[1]: Expecting device dev-disk-by\x2duuid-385efd17\x2d3905\x2d4b8f\x2d8ec8\x2d9419a38cfcb0.device...
    [ 4.454332] systemd[1]: Starting Root Slice.
    [ 4.461699] systemd[1]: Created slice Root Slice.
    [ 4.461738] systemd[1]: Starting User and Session Slice.
    [ 4.462302] systemd[1]: Created slice User and Session Slice.
    [ 4.462320] systemd[1]: Starting Delayed Shutdown Socket.
    [ 4.462665] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 4.462683] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 4.462993] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 4.463008] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 4.463307] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 4.463322] systemd[1]: Starting Journal Socket (/dev/log).
    [ 4.463621] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 4.463637] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 4.463929] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 4.463954] systemd[1]: Starting udev Control Socket.
    [ 4.464241] systemd[1]: Listening on udev Control Socket.
    [ 4.464259] systemd[1]: Starting udev Kernel Socket.
    [ 4.464547] systemd[1]: Listening on udev Kernel Socket.
    [ 4.464579] systemd[1]: Starting Journal Socket.
    [ 4.464874] systemd[1]: Listening on Journal Socket.
    [ 4.464930] systemd[1]: Starting System Slice.
    [ 4.465527] systemd[1]: Created slice System Slice.
    [ 4.465560] systemd[1]: Started File System Check on Root Device.
    [ 4.465574] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 4.466125] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 4.475871] systemd[1]: Mounting Temporary Directory...
    [ 4.486514] systemd[1]: Starting system-getty.slice.
    [ 4.487508] systemd[1]: Created slice system-getty.slice.
    [ 4.487590] systemd[1]: Mounting Huge Pages File System...
    [ 4.488820] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.491503] systemd[1]: Starting Setup Virtual Console...
    [ 4.494613] systemd[1]: Mounting Debug File System...
    [ 4.497220] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.557484] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 4.640820] systemd[1]: Started Load Kernel Modules.
    [ 4.640879] systemd[1]: Starting Apply Kernel Variables...
    [ 4.642456] systemd[1]: Mounting Configuration File System...
    [ 4.643981] systemd[1]: Mounted FUSE Control File System.
    [ 4.864249] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 4.865740] systemd[1]: Starting Journal Service...
    [ 4.867779] systemd[1]: Started Journal Service.
    [ 5.312956] EXT4-fs (sda1): re-mounted. Opts: data=ordered
    [ 5.624022] systemd-udevd[140]: starting version 216
    [ 6.289020] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 6.289034] ACPI: Power Button [PWRB]
    [ 6.289120] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 6.289123] ACPI: Power Button [PWRF]
    [ 6.352568] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1]
    [ 6.352584] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB
    [ 6.352594] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP
    [ 6.368450] agpgart-amd64 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 6.486856] parport_pc 00:05: reported by Plug and Play ACPI
    [ 6.486927] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
    [ 6.587129] gameport gameport0: NS558 PnP Gameport is pnp00:0b/gameport0, io 0x200, speed 904kHz
    [ 6.688852] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
    [ 6.689198] ACPI: PCI Interrupt Link [LKLN] enabled at IRQ 21
    [ 6.728214] random: nonblocking pool is initialized
    [ 6.988022] mousedev: PS/2 mouse device common for all mice
    [ 7.210562] forcedeth 0000:00:05.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:11:d8:00:96:f1
    [ 7.210572] forcedeth 0000:00:05.0: csum timirq gbit lnktim desc-v2
    [ 7.210685] ACPI Warning: SystemIO range 0x0000000000005000-0x000000000000503f conflicts with OpRegion 0x0000000000005000-0x0000000000005004 (\_SB_.PCI0.SMBS.SMRG) (20131218/utaddress-258)
    [ 7.210694] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.210750] i2c i2c-0: nForce2 SMBus adapter at 0x5040
    [ 7.210837] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.304777] MCE: In-kernel MCE decoding enabled.
    [ 7.310354] [Firmware Bug]: powernow-k8: No PSB or ACPI _PSS objects
    [ 7.310416] powernow-k8: Make sure that your BIOS is up to date and Cool'N'Quiet support is enabled in BIOS setup
    [ 7.388088] ACPI: PCI Interrupt Link [LAUI] enabled at IRQ 20
    [ 7.482978] ppdev: user-space parallel port driver
    [ 7.492121] EDAC MC: Ver: 3.0.0
    [ 7.682441] AMD64 EDAC driver v3.4.0
    [ 7.720053] intel8x0_measure_ac97_clock: measured 50279 usecs (2472 samples)
    [ 7.720064] intel8x0: clocking to 46862
    [ 7.720952] EDAC amd64: DRAM ECC enabled.
    [ 7.720961] EDAC amd64: K8 revE or earlier detected (node 0).
    [ 7.721024] EDAC amd64: CS0: Double data rate SDRAM
    [ 7.721026] EDAC amd64: CS1: Double data rate SDRAM
    [ 7.721028] EDAC amd64: CS2: Double data rate SDRAM
    [ 7.721029] EDAC amd64: CS3: Double data rate SDRAM
    [ 7.721031] EDAC amd64: CS4: Double data rate SDRAM
    [ 7.721032] EDAC amd64: CS5: Double data rate SDRAM
    [ 7.721371] EDAC MC0: Giving out device to module amd64_edac controller K8: DEV 0000:00:18.2 (INTERRUPT)
    [ 7.721411] EDAC PCI0: Giving out device to module amd64_edac controller EDAC PCI controller: DEV 0000:00:18.2 (POLLED)
    [ 7.819219] systemd-udevd[148]: renamed network interface eth0 to enp0s5
    [ 8.800850] nvidia: module license 'NVIDIA' taints kernel.
    [ 8.800863] Disabling lock debugging due to kernel taint
    [ 8.878778] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 18
    [ 8.878854] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 8.879632] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 304.123 Wed Jul 2 10:59:22 PDT 2014
    [ 9.251351] Adding 2137224k swap on /dev/sda2. Priority:-1 extents:1 across:2137224k FS
    [ 9.501409] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 10.518296] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 10.788573] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 11.527802] systemd-journald[119]: Received request to flush runtime journal from PID 1
    glxinfo | grep OpenGL
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 7600 GT/AGP/SSE2
    OpenGL version string: 2.1.2 NVIDIA 304.123
    OpenGL shading language version string: 1.20 NVIDIA via Cg compiler
    OpenGL extensions:
    OpenGL ES profile version string: OpenGL ES 2.0 NVIDIA 304.123 304.123
    OpenGL ES profile shading language version string: OpenGL ES GLSL ES 1.00
    OpenGL ES profile extensions:
    lspci -v
    00:00.0 Host bridge: NVIDIA Corporation nForce3 250Gb Host Bridge (rev a1)
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0
    Memory at e0000000 (32-bit, prefetchable) [size=256M]
    Capabilities: [44] HyperTransport: Slave or Primary Interface
    Capabilities: [c0] AGP version 3.0
    Kernel driver in use: agpgart-amd64
    Kernel modules: amd64_agp
    00:01.0 ISA bridge: NVIDIA Corporation nForce3 250Gb LPC Bridge (rev a2)
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0
    00:01.1 SMBus: NVIDIA Corporation nForce 250Gb PCI System Management (rev a1)
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: 66MHz, fast devsel
    I/O ports at 5080 [size=32]
    I/O ports at 5000 [size=64]
    I/O ports at 5040 [size=64]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: nForce2_smbus
    Kernel modules: i2c_nforce2
    00:02.0 USB controller: NVIDIA Corporation CK8S USB Controller (rev a1) (prog-if 10 [OHCI])
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 22
    Memory at febfd000 (32-bit, non-prefetchable) [size=4K]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: ohci-pci
    Kernel modules: ohci_pci
    00:02.1 USB controller: NVIDIA Corporation CK8S USB Controller (rev a1) (prog-if 10 [OHCI])
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 21
    Memory at febfe000 (32-bit, non-prefetchable) [size=4K]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: ohci-pci
    Kernel modules: ohci_pci
    00:02.2 USB controller: NVIDIA Corporation nForce3 EHCI USB 2.0 Controller (rev a2) (prog-if 20 [EHCI])
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 20
    Memory at febffc00 (32-bit, non-prefetchable) [size=256]
    Capabilities: [44] Debug port: BAR=1 offset=0098
    Capabilities: [80] Power Management version 2
    Kernel driver in use: ehci-pci
    Kernel modules: ehci_pci
    00:05.0 Bridge: NVIDIA Corporation CK8S Ethernet Controller (rev a2)
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 21
    Memory at febfc000 (32-bit, non-prefetchable) [size=4K]
    I/O ports at ec00 [size=8]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: forcedeth
    Kernel modules: forcedeth
    00:06.0 Multimedia audio controller: NVIDIA Corporation nForce3 250Gb AC'97 Audio Controller (rev a1)
    Subsystem: ASUSTeK Computer Inc. Device 812a
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 20
    I/O ports at e800 [size=256]
    I/O ports at e400 [size=128]
    Memory at febfb000 (32-bit, non-prefetchable) [size=4K]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: snd_intel8x0
    Kernel modules: snd_intel8x0
    00:08.0 IDE interface: NVIDIA Corporation CK8S Parallel ATA Controller (v2.5) (rev a2) (prog-if 8a [Master SecP PriP])
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0
    [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8]
    [virtual] Memory at 000003f0 (type 3, non-prefetchable)
    [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8]
    [virtual] Memory at 00000370 (type 3, non-prefetchable)
    I/O ports at ffa0 [size=16]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: pata_amd
    Kernel modules: pata_amd, pata_acpi, ata_generic
    00:0a.0 IDE interface: NVIDIA Corporation nForce3 Serial ATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
    Subsystem: ASUSTeK Computer Inc. K8N-E
    Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 22
    I/O ports at 09f0 [size=8]
    I/O ports at 0bf0 [size=4]
    I/O ports at 0970 [size=8]
    I/O ports at 0b70 [size=4]
    I/O ports at c800 [size=16]
    I/O ports at c400 [size=128]
    Capabilities: [44] Power Management version 2
    Kernel driver in use: sata_nv
    Kernel modules: sata_nv, pata_acpi, ata_generic
    00:0b.0 PCI bridge: NVIDIA Corporation nForce3 250Gb AGP Host to PCI Bridge (rev a2) (prog-if 00 [Normal decode])
    Flags: bus master, 66MHz, medium devsel, latency 16
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=10
    Memory behind bridge: fa900000-fe9fffff
    Prefetchable memory behind bridge: ba800000-da7fffff
    Kernel modules: shpchp
    00:0e.0 PCI bridge: NVIDIA Corporation nForce3 250Gb PCI-to-PCI Bridge (rev a2) (prog-if 00 [Normal decode])
    Flags: bus master, 66MHz, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=128
    I/O behind bridge: 0000b000-0000bfff
    Memory behind bridge: fea00000-feafffff
    Kernel modules: shpchp
    00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
    Flags: fast devsel
    Capabilities: [80] HyperTransport: Host or Secondary Interface
    00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Address Map
    Flags: fast devsel
    00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] DRAM Controller
    Flags: fast devsel
    Kernel driver in use: amd64_edac
    Kernel modules: amd64_edac_mod
    00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
    Flags: fast devsel
    Kernel driver in use: k8temp
    Kernel modules: k8temp
    01:00.0 VGA compatible controller: NVIDIA Corporation G73 [GeForce 7600 GT] (rev a2) (prog-if 00 [VGA controller])
    Subsystem: CardExpert Technology Device 0401
    Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 18
    Memory at fd000000 (32-bit, non-prefetchable) [size=16M]
    Memory at c0000000 (32-bit, prefetchable) [size=256M]
    Memory at fc000000 (32-bit, non-prefetchable) [size=16M]
    Expansion ROM at fe9e0000 [disabled] [size=128K]
    Capabilities: [60] Power Management version 2
    Capabilities: [44] AGP version 3.0
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    02:0b.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller (rev 80) (prog-if 10 [OHCI])
    Subsystem: ASUSTeK Computer Inc. A8V/A8N/P4P800 series motherboard
    Flags: bus master, medium devsel, latency 64, IRQ 19
    Memory at feaff800 (32-bit, non-prefetchable) [size=2K]
    I/O ports at bc00 [size=128]
    Capabilities: [50] Power Management version 2
    Kernel driver in use: firewire_ohci
    Kernel modules: firewire_ohci
    running browsers from a uterm shows only these console messages (nothing else):
    firefox http://dennisbusch.de/software/refugeel … _rlGL.html
    (process:489): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
    google-chrome-stable http://dennisbusch.de/software/refugeel … _rlGL.html
    NVIDIA: could not open the device file /dev/nvidia0 (Operation not permitted).
    NVIDIA: could not open the device file /dev/nvidia0 (Operation not permitted).
    google-chrome-stable --ignore-gpu-blacklist http://dennisbusch.de/software/refugeel … _rlGL.html
    NVIDIA: could not open the device file /dev/nvidia0 (Operation not permitted).
    NVIDIA: could not open the device file /dev/nvidia0 (Operation not permitted).
    chromium shows the same messages as google-chrome-stable does.
    stat /dev/nvidia0
    File: /dev/nvidia0
    Size: 0 Blocks: 0 IO Block: 4096 character special file
    Device: 5h/5d Inode: 10741 Links: 1 Device type: c3,0
    Access: (0666/crw-rw-rw-) Uid: ( 0/ root) Gid: ( 0/ root)
    Access: 2014-11-06 15:42:55.105702689 +0100
    Modify: 2014-11-06 15:42:55.105702689 +0100
    Change: 2014-11-06 15:42:55.105702689 +0100
    Birth: -
    That's all I know. Any ideas?

    Still trying...but pretty much stumbling around in the dark here.
    cat /proc/driver/nvidia/agp/host-bridge
    Host Bridge:      PCI device 10de:00e1
    Fast Writes:      Supported
    SBA:          Supported
    AGP Rates:      8x 4x
    Registers:      0x1f00421b:0x00000312
    cat /proc/driver/nvidia/agp/gpu
    Fast Writes:      Supported
    SBA:          Supported
    AGP Rates:      8x 4x
    Registers:      0xff000e1b:0x1f004312
    cat /proc/driver/nvidia/agp/status
    Status:      Enabled
    Driver:      AGPGART
    AGP Rate:      8x
    Fast Writes:      Disabled
    SBA:          Enabled
    Digging around the web I found how to enable fastwrites and did so by
    creating a file /etc/modprobe.d/nvidia.conf
    with this content:
    options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1
    after reboot, startx
    cat /proc/driver/nvidia/agp/status
    Status:      Enabled
    Driver:      AGPGART
    AGP Rate:      8x
    Fast Writes:      Enabled
    SBA:          Enabled
    The problem of sluggish webgl performance persists though and the
    browsers as described in the OP are still giving the same messages.
    Here is some more data, maybe it's relevant...
    cat /proc/driver/nvidia/params
    EnableVia4x: 0
    EnableALiAGP: 0
    NvAGP: 3
    ReqAGPRate: 15
    EnableAGPSBA: 1
    EnableAGPFW: 1
    Mobile: 4294967295
    ResmanDebugLevel: 4294967295
    RmLogonRC: 1
    ModifyDeviceFiles: 1
    DeviceFileUID: 0
    DeviceFileGID: 0
    DeviceFileMode: 438
    RemapLimit: 0
    UpdateMemoryTypes: 4294967295
    InitializeSystemMemoryAllocations: 1
    UseVBios: 1
    RMEdgeIntrCheck: 1
    UsePageAttributeTable: 4294967295
    EnableMSI: 0
    MapRegistersEarly: 0
    RegisterForACPIEvents: 1
    RegistryDwords: ""
    RmMsg: ""

  • Error: Reason codes with automatic charge-off are not permitted here(F-28)

    Hi All
    I creted a reason code in obxl t-code and assigned a gl code in OBXL transaction code, But when I am trying to clear a payment with reason code in F-28, System is throwing the following error..Can some one tell me why i am getting this error?
    Reason codes with automatic charge-off are not permitted here
    Message no. F5605
    Diagnosis
    The reason code entered is designed to ensure that the payment difference amount is posted to an account specially set up for this purpose.  Postings of this nature usually require additional specifications (e.g. tax code, business area). If the difference stems from a single open item, the necessary specifications can be taken from that item. In the case that led to this error message, however, the difference does not stem soley from one item, which means that this method cannot be used.
    System Response
    The reason code entered is not accepted.
    Procedure
    You can either select a different reason code, which would create a new open item for the customer or vendor OR write off the difference using the function Charge off diff.. This function either takes you into a pre-configured account assignment model or into the document overview. From here you can enter the required difference postings.

    Hi Venkata,
    It seems while entering the payment (partial payment / residual items) ... you are clearing multiple items with differences. (e.g. if the difference amount is $30, then may the difference consists of two invoices underpaid by $15 each). In this scenario, F-28 doesn't know which additional account assignment fields should be picked up ... hence the error.
    First of all, to validate that this indeed is the case, try clearing a payment with the same reason code where difference can be attributed to a single invoice. If you still get an error, then there is some other problem.
    Then, to take care of a the business scenario where the difference can indeed be due to multiple documents, select "charge off difference" option and create an entry to post the difference as necessary.
    HTH,
    Manish Patel
    Sr. SAP Solutions Consultant

  • Message "Creation of DataSources for SAP source system is not permitted"

    Hi,
    I am in DW Workbench: Modeling and I need to copy a DataSource.
    It's impossible, beacause I have this Message "Creation of DataSources for SAP source system is not permitted"!
    What can I do?
    Thks

    Hii.
    You can not copy the standard datasource to any other source system it will not allow you to do that.
    But if you want to copy you can copy it to PC FILE source system.
    It will allow you to copy there.
    Right click in Datasource->Copy-> Give Target datasource name -
    > intarget Source system tab -
    >Give Source system for File.
    Thanks
    Mayank
    Edited by: Mayank Chauhan on Sep 4, 2009 5:41 PM

  • While upgrading Adobe Creative Suite CS4 ME into Adobe Creative Suite CS5.5 Design Premium, I get an error saying This serial number is not of a qualifying product, please try another. I used to be able to get a code from customer service but I can't get

    While upgrading Adobe Creative Suite CS4 ME into Adobe Creative Suite CS5.5 Design Premium, I get an error saying This serial number is not of a qualifying product, please try another. I used to be able to get a code from customer service but I can't get to the chat. Please advise!!!!

    MoeGhazal I reviewed your account and it looks like you have have upgraded from a CS4 volume license for Design Premium to a retail upgrade of Design Premium 5.5.
    I also show that you made two purchases of CS5.5 Design Premium but the second purchase was canceled.  Please make sure you are utilizing the serial number which ends in 7886.
    If you are using the correct serial number then it is likely the installer will not recognize your volume license CS4 serial number as being valid for an upgrade.  If you can contact our support team then you can be walked through an unlocking procedure to allow you to proceed with the installation.  You can contact our support team directly at Contact Customer Care.  You may want to try installing a web browser you have not previously utilized.  It is likely a toolbar or some other software application is affecting your ability to access chat support successfully.
    If you are still unable to reach our support team then please verify the information under your account is accurate.  If you can please then update this discussion after confirming this then I can request a member of our support team contact you directly.
    Again I would recommend reaching out directly if possible as it will be the most efficient method of resolving your current error.

  • Firewall service not permitting as it should

    The firewall services in OS X Server 10.5.1 are not permitting traffic as expected.
    Any ideas here to help me understand why would be appreciated.
    IP address block 11.22.33.0/26 has been changed from the original but should have no effect on the example. I don't understand why address 11.22.33.62 hhas no access.
    - Steve
    root# *serveradmin status ipfilter*
    ipfilter:state = "RUNNING"
    root# *ipfw list*
    00001 allow udp from any 626 to any dst-port 626
    01000 allow ip from any to any via lo0
    01010 deny log logamount 1000 ip from any to 127.0.0.0/8
    01020 deny log logamount 1000 ip from 224.0.0.0/4 to any in
    01030 deny log logamount 1000 tcp from any to 224.0.0.0/4 in
    12300 allow tcp from any to any established
    12301 allow tcp from any to any out
    12302 allow tcp from any to any dst-port 22
    12302 allow udp from any to any dst-port 22
    12303 allow udp from any to any out keep-state
    12304 allow tcp from any to any dst-port 53 out keep-state
    12304 allow udp from any to any dst-port 53 out keep-state
    12305 allow udp from any to any in frag
    12306 allow tcp from any to any dst-port 311
    12307 allow tcp from any to any dst-port 625
    12308 allow udp from any to any dst-port 626
    12309 allow icmp from any to any icmptypes 8
    12310 allow icmp from any to any icmptypes 0
    12311 allow igmp from any to any
    12312 allow tcp from any to any dst-port 110
    12312 allow udp from any to any dst-port 110
    12313 allow tcp from any to any dst-port 25
    12313 allow udp from any to any dst-port 25
    12314 allow tcp from any to any dst-port 16080
    12315 allow ip from 192.168.0.0/24 to any via en0 keep-state
    12316 allow udp from any 68 to any dst-port 67 via en0
    12317 allow tcp from 11.22.33.0/26 to any dst-port 687
    12318 allow tcp from 11.22.33.0/26 to any dst-port 5988,5989
    12319 allow tcp from 11.22.33.0/26 to any dst-port 5432
    12320 allow tcp from 11.22.33.0/26 to any dst-port 443
    12321 allow tcp from 11.22.33.0/26 to any dst-port 3283,5900
    12321 allow udp from 11.22.33.0/26 to any dst-port 3283,5900
    12322 allow tcp from 11.22.33.0/26 to any dst-port 311
    12323 allow tcp from 11.22.33.0/26 to any dst-port 80
    12324 allow tcp from 11.22.33.0/26 to any dst-port 8080
    12325 allow tcp from 11.22.33.0/26 to any dst-port 749
    12325 allow udp from 11.22.33.0/26 to any dst-port 749
    12326 allow tcp from 11.22.33.0/26 to any dst-port 88
    12326 allow udp from 11.22.33.0/26 to any dst-port 88
    12327 allow tcp from 11.22.33.0/26 to any dst-port 600-1023
    12327 allow udp from 11.22.33.0/26 to any dst-port 600-1023
    65534 deny log logamount 1000 ip from any to any
    65535 allow ip from any to any
    in /var/log/ipfw.log
    Jan 8 11:10:56 ssg4 ipfw[31959]: 65534 Deny TCP 11.22.33.62:63681 192.168.0.5:8008 in via en0

      1. Hacked hosts file?
           etc/hosts
            https://discussions.apple.com/docs/DOC-8091
      2. Get rid of uTorrent.
    3. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".

  • Account type M& GL with open item managment not permitted error

    Hi
    We are getting the below error message while trying to do Goods reciepting using MIGO transaction.We have created new plants and done all assignments...
    Account type M&GL account with open item management not permitted....

    Hi
    GL code is assigned for GR/IR clearing account..But in fs00,for GL account/Company code,Open item management is ticked..Can u tell me how to remove the open item management.When i untick the open item management it gives an error message as below...
    (you want to switch off the open item management function
    retroactively for an account, you must first clear all the postings
    currently on this account. You cannot make any changes to the account
    management method until this is done.)
    Iam doing config in development server...In production server open item management is unticked

  • "Company code  is not permitted as the paying company code while FRFT

    Hi Experts,
    I am trying to post cross company fund transfers via FRFT -> F111. In my scenario, CC1 is sending amount to CC2 via a virtual payment method. I have done basic company code set up and also customizations in FBZP for payment method and F8BJ/F8BF for incoming/outgoing transactions. I have also done OBYA setting for cross company clearing account
    During FRFT payment request i get this error: "Company code CC1 is not permitted as the paying company code".
    Did you ever experience this? If so, how can i fix this?
    Thanks in advance.

    Dear subumax
    1.Please check once again in both company codes for FBZP. were you maintained in All Company codes in FBZP - Select your company code and check- were you maintained Paying company code.
    2.Pleasecheck in under Paying Company codes - were you maintained the paying company code CC1 or not
    3Please check in under Payment methods in comapny code were you maintained your paying company code code CC1 details or not 
    Regards
    Shankar

  • Decimal places are not permitted for asset useful life

    Dear SAP experts,
    I need to post a new net book value on a new depreciation area 50 for fixed assets. The new deprecation for depreciation area 50 will start in July 2011 on all existing (also fully depreciated or to be disposed) assets with a different useful life unlike the book deprecation for depreciation area 01. The depreciation method for depreciation area 50 is straight line.
    I have a requirement to assign the new useful life for the depreciation area 50 which may contain decimals, for example 5.5 years. Basically, I need to depreciate the asset for the remaining 6 months of 2011 and the entire 2012 to 2016.
    SAP does not allow decimals on asset useful life (Decimal places are not permitted, Message no. 00011).
    Have you come accross a similar situation? How can that be managed via depreciation methods and keys?
    Please advise.
    Thank you in advance,
    Inna

    Hi Inna,
    You can define your useful life of 5.5 years for the depreciation area 50 as follows:
    Useful life : 5
    period : 6
    here, useful life(5) represents 5 years and period(6) as 6 months which gives you 5.5 years starting depreciation from Depreciation calculation start date.
    Kind Regards,
    Mehul

  • Content Not Permitted?

    When I just now tried to post a reply to a message, the result was this: "You have included content in your post that is not permitted." There was no hint of what content was found to be objectionable. My post contained basically four lines of non-abusive, non-profane text and three links to articles on Mac-related Web sites. I sure which this forum's software would give me a clue about what it didn't like. My only approach now is to try removing one thing at a time until it's acceptable.
    Edit: I saved all the text of my attempted post in a TextEdit document, then deleted the text in the post window a section at a time until it was accepted. This required removing pretty much everything before I could post it. Then I edited the post and added back the original content a section at a time. In several iterations I was able to add back everything that I had originally posted. I have to conclude that (a) the forum software is deranged or (b) the checks for edited content are different than for original content.

    +True, but not impossible. See these fairly recent stories:+
    +http://arstechnica.com/apple/news/2010/06/spyware-trojan-hitching-ride-on-third- party-mac-screensavers.ars+
    +http://www.theregister.co.uk/2010/04/20/pinheadmactrojan/+
    +http://www.maclife.com/article/feature/protectyour_mac_phishing_trojan_horses_andviruses+
    Was it this post? It may be that phishing or Trojan Horse triggered something, but if this is the post you are referring to, there's absolutely nothing objectionable in it.

  • I had a hard drive blow out and lost my itunes library. Now when I connect my ipod itunes tells me it is not sync'd. I am not permited to delete or add any songs. I do not want to loose my ipod songs if I reset. Any ideas? Thanks.

    I had a hard drive blow out and lost my itunes library. Now when I connect my ipod itunes tells me it is not sync'd. I am not permited to delete or add any songs. I do not want to loose my ipod songs if I reset. Any ideas? Thanks.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

Maybe you are looking for

  • IDoc programming for Requested Delivery Date - Inbound ORDERS

    Hi Folks, I want to manipulate Requested Delivery Date on the Sales Order. The Field for Req Del Date is RV45A-KETDAT. But this value is stored in VBAK-VDATU. When i am trying to modify this value using dxvbak structure, this value is getting populat

  • Custom File Processor implementing UploadedFileProcessor

    I am implementing a custom file processor since upload of files will be in GB, Faces Context is not available it gives NULL also the ServletRequest Object available seems to be a trimmed instance as it not could list any parameter values.. Any idea o

  • Display port connect to pc using imac as display.

    hi guys i recently got the imac 27inch. i would like to know if i connect the display port from my pc to the imac, should i on the power for my imac too ? as i was told that imac can use as a external monitor as long and connected to a display port f

  • Printing Report in same order as Paycheck Run (Important)

    Hi, For one of my current project's, the requirement is to the print a Salesman Incentive Paycheck Report in the same order as the paycheck run. The report is needed in order to show the sales personnel which incentives they were paid on their payche

  • What is the best method to reduce the Render size?

    hi, my movie files which i want to edit come to a total of 4GB and when i edit the movie and render the files it comes to a size of 20GB!..thats way to large and will take forever to compressor or export to a another format. What do you guys recommen