Composition vs. Association Associations

Using JDev 11.1.1.1 created a Model project using Dept and Emp. This gives a foreign key assoc between Dept-Emp. When I edit this association the Composition Association (CA) checkbox is not checked indicating that this is an Association Association (AA)? If this is the case then I will have to write code to ensure the correct order of commit to a database? If I am working with a Composition Association I believe the ordering of the commit is handled by the framework so I do not get an error, i.e. insert a emp record without a corresponding dept record.
Question is is the association that is created an AA or a CA? If an AA is it advisable to edit the association to a CA or write code to make sure of the proper insertion order into the database?
Thanks - Casey

Hi,
if the relationship between two entities is such that the child entity cannot be without the parent entity (like in order and order-item) then you should make it a composition. As you can see, the composition setting is a by use case decision, which is why it isn't set by default. If you can, setting the composition flag simplifies your developer life big times
Frank

Similar Messages

  • Navigation property, Association, Mapping in SEGW

    Hi Experts,
    I am working on one very new technology in SAP - SAP NetWeaver Gateway Service Builder. I have created some projects in SEGW. Here some other properties available in Data Model like navigation property, association and mapping. These three properties are very confusing to me. I dont have so much information on these three information.
    Is there any definition for these three property? Kindly provide. When I can use these three properties? In which situation or circumstance, these three properties will come to the picture?
    What are benefits if I use these three properties in my project?
    Thanks in advance,
    Regards,
    Arindam Samanta.

    Hi Arindam,
    Here some other properties available in Data Model like navigation property, association and mapping. These three properties are very confusing to me. I dont have so much information on these three information.
    Is there any definition for these three property? Kindly provide.
    you can refer below SAP help on topics you are looking for
    Navigation property - Navigation Properties - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    Association - Associations - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    Mapping - Mapping the Operations - SAP NetWeaver Gateway - SAP Library
    also note that this question is more appropriate in SAP Gateway forum.
    Regards,
    Chandra

  • About the DDIC association mapping in tcode:SEGW

    Hi experts,
    I am trying to build a simpel odata service in segw.
    I build the service step by step
    1)Created 2 entity type named "map" and "dlink" by importing from DDIC
       at the same time, entityset "maps" and "dlinks" are created
    2) Created 1 assocaiton from map to dlink.
    3) create the mapping for "maps" and "dlinks" in service implementation
    4) the problem is comming.when I try to mapping the assocation, I can't selecte any assocation.
    My question is :
    why I can't select the assocation created by me in previous step.
    and How to create a association which can be selected in the maaping
    Please see the attached screenshot for detail information, thanks!

    Hi Arindam,
    Here some other properties available in Data Model like navigation property, association and mapping. These three properties are very confusing to me. I dont have so much information on these three information.
    Is there any definition for these three property? Kindly provide.
    you can refer below SAP help on topics you are looking for
    Navigation property - Navigation Properties - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    Association - Associations - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    Mapping - Mapping the Operations - SAP NetWeaver Gateway - SAP Library
    also note that this question is more appropriate in SAP Gateway forum.
    Regards,
    Chandra

  • Are there two type of associations between objects or are there just different representations?

    I've been spending some time on 're-tuning' some of my OOP understanding, and I've come up against a concept that is confusing me.
    Lets say I have two objects. A user object
    and an account object.
    Back to basics here, but each object has state, behaviour and identity (often referred to as an entity object).
    The user object
    manages behaviour purely associated with a user, for example we could have a login(credentials) method
    that returns if successfully logged in or throws exception if not.
    The account object
    manages behaviour purely associated with a users account. For example we could have a method checkActive() that checks if the account is active. The account object checks if the account has an up-to-date subscription, checks if there are any admin flags added
    which would make it inactive. It returns if checks pass, or throws exception if not.
    Now here lies my problem. There is clearly a relationship between user and account,
    but I feel that there are actually two TYPES of association to consider. One that is data driven (exists only in the data/state of the objects and the database) and one that is behaviour driven (represents an object call to methods of the associated object).
    Data Driven Association
    In the example I have presented, there is clearly a data association between user and account.
    In a database schema we could have the following table:
    USER_ACCOUNTS
    id
    user_id
    When we instantiate the account and
    load the database data into it, there will be a class variable containing user_id.
    In essence, the account object
    holds an integer representation of user through user_id
    Behaviour Driven Association
    Behaviour driven associations are really the dependencies of an object. If object A calls methods on object B there is an association going from A to B. A holds an object representation of B.
    In my example case, neither the user object
    nor the account object
    depend on each other to perform their tasks i.e. neither object calls methods on the other object. There is therefore no behaviour driven association between the two and neither object holds an object reference to the other.
    Question
    Is the case I presented purely a case of entity representation? The association between user and account is
    always present, but its being represented in different ways?
    ie. the user entity
    has an identity that can be represented in different forms. It can be represented as an object (the instantiated user object)
    or as a unique integer from the users table in the databases.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    One thing that bugs me is how would I describe the differences in UML or similar? Or is it just an implementation detail?

    It s a bit hard to fully understand what is problem actually in :). I think you are a bit mixing some concepts.
    Entities representation
    At first, all models we are implementing is just a simplification of some real-world objects and environment. Your conceptual entity user corresponds to some real user and contains some attributes we are intresteing in according to application needs. Thus there
    are some models we have to implement.
    Thus, all user defined by DB schema, user defined by class, and probably user defined by some presentation logic is normally present some real-world user. It is only about implementation purposes, we have to store, view and manipulate with user.
    On the other hand let's take a look on Single Responsibility Principle. It tells us to use every class or program unit just for certain needs. Using single user (class or program unit) for storage and presentation needs violates this principles.
    the user entity has an identity that can be represented in different forms. It can be represented as an object (the instantiated user object) or as a unique integer from the users table in the
    databases.
    So, the answer is yes.
    Associations and dependencies
    I think it is more about terminology than about nature of problem. But in general you are right - there are different types of object realtions (especially, I will use other terms to list it). For example "referencing", "creation", "using",
    "coordinating", "storing", "inheriting" (!) ....
    According to this, user instance references account instance. And A instance uses B instance.
    For most cases it is good enough to distinguish just "referencing" and "using". It is what you've just written. It's enough common and abstract to be understood by other person when talking about domain, e.g.
    But sometimes, to emphasize some aspects you should describe relations in a way like "A dispatches ensemble of Bs" or "R stores X to database". It's more applicable for specification and modelling.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    To call something formalized I suggest to look at UML.
    UML and other modelling instruments
    One thing that bugs me is how would I describe the differences in UML or similar? Or is it just an implementation detail?
    There are a lot of UML models (diagrams). Let's take a look at most well-known - Classes and Objects Diagram.
    It's interesting that UML allows to present all type of object relations, and moreover allows to decide "is it just an implementation detail".
    Martin Fowler describes 3 levels (or point of views) of understanding of Classes Diagram.
    Conceptual. Diagram is considered as high-level domain model, independent from implementation.
    Specification. Diagram is considered as high-level realization model containing of interfaces.
    Implementation. Diagram is considered as low-level technical paper containing interfaces, classes, references, other types of relations.
    Is this a formalised way of recognising different implementations of associations or have I completely lost my mind?
    Yes, you have to fix some point of view and choose appropriate relations set.
    For example, let's take a look at Classes Diagram and consider it from an implementation point of view. UML defines 3 type of relations (and propose corresponding means to its designation):
    Association
    Association corresponds "referencing" between instances.
    Dependency
    Dependency combines all types of relations such as "using", "creating", "storing", etc.
    Inheritance.
    Inheritances as a fundamental OOP instrument is presented by UML in a distinct way. It's more about classes than about instances, but also one can say that A instance inherit attributes of B instance. So, that's ok.
    First and second points of view on Class Diagram, as I remember uses only one type of relation unifying both associations and dependencies and is designated like association (no inheritance, of course).
    Also, UML proposes Objects Diagram which is same to Classes Diagram, but fits better for runtime modelling needs.
    Finally, a choice of a set of relations taken into consideration depends on a context and point of view. UML provides some ones.

  • Additional association problems in jdev 9033

    Hi,
    besides the already described problem that associations almost always need to have both accessors enabled to prevent weird nullpointer exceptions, there's an additional problem in that it takes ages to open the association wizard.
    This makes hunting missing accessors especially annoying. It sometimes takes up to 2 minutes (on a 2.4Ghz, 2Gb mem machine) to open up the association wizard.
    All other wizards pop up immediately. It's just the association wizard that misbehaves.
    Greetings,
    Ivo

    Hi Ivo,
    I took some time to try to reproduce your problems with the performance of invoking the association editor. I tried to reproduce a performance problem in both 9.0.3.2 and 9.0.3.3 using several sizes of applications and different associations and was unable to reproduce any performance problem. In researching any history of problems with the editor, I found bug 2596870 about performance problems with launching association editor on extended associations, which I filed in Sept. 2002 and verified the fix in Oct. 2002 and I have not see a regression since. I retested extended associations in jdev9033 and everything looked great. Here are my results testing performance with bc4j associations:
    Association Editor - Jdev9032 - invoked at 2:53:30 launched at 2:53:32 - 2 seconds to launch
    Association Wizard - Jdev9032 - invoked at 2:54:30 launched at 2:54:31 - less than 1 second
    Association Editor - Jdev9033 - invoked at 2:57:30 launched at 2:57:32 - less than 2 seconds to launch
    Association Wizard - Jdev9033 - invoked at 2:58:30 launched at 2:58:31 - less than 1 second
    I know that I will need a project from you and/or complete steps to reproduce the associations they are building. I have a feeling that the only way to find the errors is to try to create or use the associations you are building and cause the exceptions to throw that you reported and then invoke editors once the exceptions have altered the state of jdev. Please let me know if you'd like me to attempt to reproduce with your application.
    Thanks,
    Amy

  • When an how to create an association?

    Recently,I have been confused about association,can someone tell me when an how to create an association?

    Hi Zhang,
    I hope you want to know about cross Bo association.
    When to create association?
    You use association whenever you want to use other BO's(target) data in your current BO(source). In other word you can maintain relationship between two BOs using association. Association will provide reference of target BO in your source BO.
    You need not to maintain all the structure of target BO in your BO, using association you can access any field of target BO on the fly.
    How to create?
    For example in your custom BO you want to use data employee BO
    1. import the namespace of employee business object
    import AP.FO.BusinessPartner.Global'
    2. define association
    association ToEmployee to Employee  //here ToEmployee is association name.
    You have to set this association before to use the employee data in your ABSL.
    Hope this help
    Thanks
    Sunil

  • NetworkManager: "association took too long"

    I have been running arch linux on this laptop for a year now, with the broadcom-wl driver for my card. As of yesterday, WPA encryption stopped working.
    Regular, non-encrypted wireless works fine - but WPA2 Enterprise encryption won't work, and the only message  that I could see was 'Activation (eth0/wireless): association took too long.'
    Here is the whole log (from /var/log/daemon.log):
    The Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) starting connection 'YaleSecure'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> (eth0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> (eth0): device state change: prepare -> config (reason 'none') [40 50 0]
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0/wireless): access point 'YaleSecure' has security, but secrets are required.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> (eth0): device state change: config -> need-auth (reason 'none') [50 60 0]
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> (eth0): device state change: need-auth -> prepare (reason 'none') [60 40 0]
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> (eth0): device state change: prepare -> config (reason 'none') [40 50 0]
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0/wireless): connection 'YaleSecure' has security, and secrets exist. No new secrets needed.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'ssid' value 'YaleSecure'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'scan_ssid' value '1'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'key_mgmt' value 'WPA-EAP'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'auth_alg' value 'OPEN'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'password' value '<omitted>'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'eap' value 'TTLS'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'fragment_size' value '1300'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'phase2' value 'auth=MSCHAPV2'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'identity' value '********'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: added 'bgscan' value 'simple:30:-45:300'
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
    Sep 24 15:14:37 localhost NetworkManager[1039]: <info> Config: set interface ap_scan to 1
    Sep 24 15:14:38 localhost NetworkManager[1039]: <info> (eth0): supplicant interface state: inactive -> scanning
    Sep 24 15:14:38 localhost NetworkManager[1039]: <info> (eth0): supplicant interface state: scanning -> associating
    Sep 24 15:14:39 localhost NetworkManager[1039]: <info> (eth0): supplicant interface state: associating -> associated
    Sep 24 15:14:41 localhost NetworkManager[1039]: <info> (eth0): supplicant interface state: associated -> disconnected
    Sep 24 15:14:45 localhost ntpd[1036]: Deleting interface #4 eth1, 128.36.14.121#123, interface stats: received=33, sent=37, dropped=3, active_time=600 secs
    Sep 24 15:14:45 localhost ntpd[1036]: 129.6.15.29 interface 128.36.14.121 -> (none)
    Sep 24 15:14:45 localhost ntpd[1036]: 129.6.15.28 interface 128.36.14.121 -> (none)
    Sep 24 15:14:45 localhost ntpd[1036]: 64.90.182.55 interface 128.36.14.121 -> (none)
    Sep 24 15:14:45 localhost ntpd[1036]: 169.229.70.183 interface 128.36.14.121 -> (none)
    Sep 24 15:14:45 localhost ntpd[1036]: peers refreshed
    Sep 24 15:15:02 localhost NetworkManager[1039]: <warn> Activation (eth0/wireless): association took too long.
    Sep 24 15:15:02 localhost NetworkManager[1039]: <info> (eth0): device state change: config -> need-auth (reason 'none') [50 60 0]
    Sep 24 15:15:02 localhost NetworkManager[1039]: <warn> Activation (eth0/wireless): asking for new secrets
    Sep 24 15:15:11 localhost NetworkManager[1039]: <info> (eth0): supplicant interface state: disconnected -> inactive
    I did upgrade some packages yesterday, but I can't figure out what it could have been. My wireless was working on 9/23, and I restarted at least once that day. I tried downgrading 'python-mako', 'openconnect', 'python2-pyopenssl' and 'glib-networking' and restarting, but that didn't help.
    Here is the pacman log from before the wireless stopped working:
    [2011-09-15 16:45] Running 'pacman -Syu'
    [2011-09-15 16:45] synchronizing package lists
    [2011-09-15 16:45] starting full system upgrade
    [2011-09-20 11:28] Running 'pacman -Syu'
    [2011-09-20 11:28] synchronizing package lists
    [2011-09-20 11:28] starting full system upgrade
    [2011-09-20 11:35] Running 'pacman -R ipython'
    [2011-09-20 11:35] removed ipython (0.11-1)
    [2011-09-20 11:35] Running 'pacman -S -- ipython'
    [2011-09-20 11:36] Running 'pacman -S -- ipython ipython2'
    [2011-09-20 11:36] Running 'pacman -S -- ipython ipython2'
    [2011-09-20 11:39] Running 'pacman -R ipython-docs'
    [2011-09-20 11:39] removed ipython-docs (0.11-1)
    [2011-09-20 11:39] Running 'pacman -R ipython3'
    [2011-09-20 11:39] removed ipython3 (0.11-1)
    [2011-09-20 11:39] Running 'pacman -S -- ipython ipython2'
    [2011-09-20 11:39] installed ipython (0.11-3)
    [2011-09-20 11:39] installed ipython2 (0.11-3)
    [2011-09-20 11:40] Running 'pacman -S -- python-pygments python2-sip python2-pyqt'
    [2011-09-21 00:37] Running 'pacman -Syu'
    [2011-09-21 00:37] synchronizing package lists
    [2011-09-21 00:37] starting full system upgrade
    [2011-09-21 00:38] upgraded libmysqlclient (5.5.15-1 -> 5.5.16-1)
    [2011-09-21 00:38] upgraded mysql-clients (5.5.15-1 -> 5.5.16-1)
    [2011-09-21 00:38] upgraded mysql (5.5.15-1 -> 5.5.16-1)
    [2011-09-21 00:38] upgraded akonadi (1.6.0-3 -> 1.6.1-1)
    [2011-09-21 00:38] upgraded chromium (13.0.782.220-1 -> 14.0.835.163-1)
    [2011-09-21 00:38] upgraded sdl (1.2.14-7 -> 1.2.14-8)
    [2011-09-21 00:38] upgraded ffmpeg (20110910-1 -> 20110916-1)
    [2011-09-21 00:38] upgraded file (5.08-1 -> 5.09-1)
    [2011-09-21 00:38] upgraded git (1.7.6.1-1 -> 1.7.6.3-1)
    [2011-09-21 00:38] installed p11-kit (0.6-2)
    [2011-09-21 00:38] upgraded gnutls (3.0.2-1 -> 3.0.3-1)
    [2011-09-21 00:38] upgraded glib-networking (2.28.7-4 -> 2.28.7-5)
    [2011-09-21 00:38] upgraded gparted (0.9.0-3 -> 0.9.1-1)
    [2011-09-21 00:38] upgraded gpodder (2.18-1 -> 2.19-1)
    [2011-09-21 00:38] upgraded lftp (4.3.1-2 -> 4.3.2-1)
    [2011-09-21 00:38] upgraded lib32-nspr (4.8.6-2 -> 4.8.9-1)
    [2011-09-21 00:38] upgraded lib32-nss (3.12.8-1 -> 3.12.11-1)
    [2011-09-21 00:38] upgraded librsvg (2.34.1-1 -> 2.34.1-2)
    [2011-09-21 00:38] upgraded libssh (0.5.1-1 -> 0.5.2-1)
    [2011-09-21 00:38] upgraded libwebkit (1.4.2-1 -> 1.4.3-1)
    [2011-09-21 00:38] upgraded libwebkit3 (1.4.2-1 -> 1.4.3-1)
    [2011-09-21 00:38] upgraded lua (5.1.4-7 -> 5.1.4-8)
    [2011-09-21 00:38] upgraded ocaml (3.12.1-1 -> 3.12.1-2)
    [2011-09-21 00:38] upgraded python2-numpy (1.6.0-1 -> 1.6.1-1)
    [2011-09-21 00:38] upgraded python-numpy (1.6.0-1 -> 1.6.1-1)
    [2011-09-21 00:38] upgraded totem-plparser (2.32.5-1 -> 2.32.6-1)
    [2011-09-21 00:38] upgraded wget (1.13.3-1 -> 1.13.4-1)
    [2011-09-21 00:38] upgraded xorg-server-common (1.10.3.901-1 -> 1.10.4-1)
    [2011-09-21 00:39] upgraded xorg-server (1.10.3.901-1 -> 1.10.4-1)
    [2011-09-21 08:14] Running 'pacman -Syu'
    [2011-09-21 08:14] synchronizing package lists
    [2011-09-21 08:14] starting full system upgrade
    [2011-09-21 08:14] upgraded chromium (14.0.835.163-1 -> 14.0.835.186-1)
    [2011-09-21 08:15] Running 'pacman -U vidalia-0.2.14-1-x86_64.pkg.tar.xz'
    [2011-09-21 08:15] upgraded vidalia (0.2.12-1 -> 0.2.14-1)
    [2011-09-21 08:15] Running 'pacman -Syu'
    [2011-09-21 08:15] synchronizing package lists
    [2011-09-21 08:15] starting full system upgrade
    [2011-09-22 13:32] Running 'pacman -S -- impressive'
    [2011-09-22 13:33] installed impressive (0.10.3-2)
    [2011-09-22 13:33] Running 'pacman -S -- pdftk'
    [2011-09-22 13:33] installed gcc-gcj-ecj (4.5-1)
    [2011-09-22 13:33] installed gcc-gcj (4.6.1-1)
    [2011-09-22 13:33] installed pdftk (1.44-4)
    [2011-09-22 17:07] Running 'pacman -Syu'
    [2011-09-22 17:07] synchronizing package lists
    [2011-09-22 17:07] starting full system upgrade
    [2011-09-22 17:07] upgraded cython (0.15-1 -> 0.15.1-1)
    [2011-09-22 17:07] upgraded deluge (1.3.3-2 -> 1.3.3-3)
    [2011-09-22 17:07] upgraded kde-agent (20110602-1 -> 20110922-1)
    [2011-09-22 17:07] upgraded sdl (1.2.14-8 -> 1.2.14-9)
    [2011-09-22 17:08] Updating font cache... done.
    [2011-09-22 17:08] upgraded ttf-liberation (1.07.0-1 -> 1.07.1-1)
    [2011-09-22 17:08] upgraded virtuoso (6.1.3-1 -> 6.1.3-2)
    [2011-09-22 21:39] Running 'pacman -Syu'
    [2011-09-22 21:39] synchronizing package lists
    [2011-09-22 21:39] starting full system upgrade
    [2011-09-23 23:17] Running 'pacman -Syu'
    [2011-09-23 23:17] synchronizing package lists
    [2011-09-23 23:18] starting full system upgrade
    [2011-09-24 01:06] Running 'pacman -Syu'
    [2011-09-24 01:06] synchronizing package lists
    [2011-09-24 01:06] starting full system upgrade
    [2011-09-24 01:07] upgraded python2-pyopenssl (0.12-1 -> 0.13-1)
    [2011-09-24 01:07] upgraded deluge (1.3.3-3 -> 1.3.3-4)
    [2011-09-24 01:07] upgraded docutils (0.8-1 -> 0.8.1-1)
    [2011-09-24 01:07] upgraded ffmpeg (20110916-1 -> 20110923-1)
    [2011-09-24 01:07] upgraded gstreamer0.10-ffmpeg (0.10.11-1 -> 0.10.12-1)
    [2011-09-24 01:07] upgraded openconnect (1:3.11-1 -> 1:3.12-1)
    [2011-09-24 01:07] upgraded python-mako (0.4.1-1 -> 0.4.2-1)
    [2011-09-24 01:08] upgraded wine (1.3.28-1 -> 1.3.29-1)
    [2011-09-24 01:32] Running 'pacman -Syu'
    [2011-09-24 01:32] synchronizing package lists
    [2011-09-24 01:32] starting full system upgrade
    [2011-09-24 01:33] Running 'pacman -Syyu'
    [2011-09-24 01:33] synchronizing package lists
    [2011-09-24 01:33] starting full system upgrade
    [2011-09-24 01:33] Running 'pacman-color -Syyu'
    [2011-09-24 01:33] synchronizing package lists
    [2011-09-24 01:33] starting full system upgrade
    [2011-09-24 01:34] Running 'pacman -Syu'
    [2011-09-24 01:34] synchronizing package lists
    [2011-09-24 01:34] starting full system upgrade
    [2011-09-24 01:34] Running 'pacman -U packer-20110924-1-any.pkg.tar.xz'
    [2011-09-24 01:34] upgraded packer (20110808-1 -> 20110924-1)
    [2011-09-24 01:35] Running 'pacman -U pidgin-gnome-shell-extension-git-20110924-1-any.pkg.tar.xz'
    [2011-09-24 01:35] upgraded pidgin-gnome-shell-extension-git (20110624-1 -> 20110924-1)
    [2011-09-24 01:35] Running 'pacman -U reinteract-git-20110924-1-x86_64.pkg.tar.xz'
    [2011-09-24 01:35] upgraded reinteract-git (20110726-1 -> 20110924-1)
    I would appreciate any help. Thanks!

    Same here broadcom card and used brcmsmac driver. Fuck networkmanager, use wicd and wicd-gtk = flawless victory.

  • Cascade update of primary key in child tables

    Hi,
    We have a typical scenario in which the primary key has to propage to the child table into 3 levels. We are getting the no parent key exception if we create new data into the three tables using 3 level master detail relationship and execute commit operation. The following is the structure of the tables.
    Parent_table (sno number primary key, name varchar2(100));
    Child_table (fk_sno number primary key, name varchar2(100), foreign key (fk_sno) references parent_table(sno));
    GrandChild_table (sno number primary key, fk_sno number, name varchar2(100), foreign key (fk_sno) references Child_table(fk_sno));
    The requirement is to update fk_sno in child_table and grandchild_table with the trigger generated primary key sno in the parent_table.
    The application module is having the following structure
    parenttable
    |
    ----------childtable
    |
    -----------grandchild_table
    If we create new records into parent_table and child_table it is working fine when we commit the data. If we create another record into grandchild_table and commit data we are getting the foreign key violation exception. We are using composition in the association to update the modified values to refresh the data.
    Is there any problem in the data model to use fk_sno as primary key and foreign key in child_table.
    Thanks and Regards,
    S R Prasad

    Hmm, another example is CSKS, this logic was probably designed already in the 1980s...maybe it was seen beneficial to be able to select the currently valid record by using the primary key only (the first record where DATBI is larger than system date, not possible when DATAB is the key instead).
    Maybe there are better explanations. Why do you need to know this, just curious?
    Thomas

  • Workflow process for MIGO

    Dear All,
    I 'm new on the forum and I will greetly appreciate to share SAP experience and knowlege. I ' ve been doing MM and FI for only 2 years and I am very interested in workflow procedure.
    Here is my question :
    Can I set up a workflow procedure for the transaction MIGO in 3 steps
    The goal is to divide this transaction in 3 level of approbation to definitly accept a good receipt and to further proceed to Miro transaction.
    - First, an user must do the good receipt but the document should just be just maintained.
    - Second step, an user should confirm or modify the maintained document and park it. This user could not be the same one as the one that made the good receipt at the first level.
    - Finally, at the third level, an user will finally confirm the good receipt, post the document which will be available for clearing  in MIRO.  This user could not be the one that order the goods in first instance.
    Any help would be greetly appreciated.
    Hervé
    Edited by: H.moreau on Oct 19, 2011 9:24 AM

    There are some default approval processes available.  Luckily, there is one for a manager approval that requires no custom coding.  You can use this one:
    BeneficiaryManagerApproval
    This acquires approval from the beneficiary's manager. This can be associated with the following:
    The request types that have a beneficiary. Examples of such request types are Provision Resource and Assign Roles.
    All user models except Create User and Self-Register User.
    This composite must be associated at the operational level of approval because a request can have multiple beneficiaries at the request level.
    To the list of other available default approvals, you can check here:  http://docs.oracle.com/cd/E21764_01/doc.1111/e14309/soa.htm#BABIHHBE
    If you want to do a custom approval, i would suggest the Oracle By Examples, they will get you started:  http://apex.oracle.com/pls/apex/f?p=44785:2:0:FORCE_QUERY::2,RIR,CIR:P2_SEARCH,P2_GROUP_ID,P2_PRODUCT_ID,P2_RELEASE_ID:Approval%2C1001%2C2019%2C131
    -Kevin

  • Wifi disconnects on highish throughput

    Hi,
    I've got wireless problems with the combination of my router and my laptop. Whenever I download something more than say 1MB the connection drops. This happens with Youtube, Google Image search and Pacman updates. The connection re-establishes after a few seconds to drop out again some 10-15 seconds later. This continues until either the download fails or is finished.
    On the university, which uses eduroam, I've got no problems connecting and no problems downloading.
    I'm using wpa_supplicant to connect, which is started by dhcpd. The settings for the connection with my router are as basic as could be, only an SSID and PSK are given in the configuration file.
    What I've tried so far:
    Update system with pacman. No success
    Change router to mixed BG only, no N. No success
    Turned power management off. No success
    I've had the problem a few weeks back, but then changing the config file to a minimum fixed the problem.
    On Windows 8.1 the wifi seems to work fine.
    Does anyone have a clue on how to fix this? 
    Hardware info, lspci -vv:
    03:00.0 Network controller: Intel Corporation Centrino Advanced-N 6235 (rev 24)
    Subsystem: Intel Corporation Centrino Advanced-N 6235 AGN
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 48
    Region 0: Memory at f7800000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: <access denied>
    Kernel driver in use: iwlwifi
    Kernel modules: iwlwifi
    Connection info iwconfig:
    wlp3s0 IEEE 802.11abgn ESSID:"Sacred"
    Mode:Managed Frequency:2.447 GHz Access Point: F8:D1:11:B7:29:A4
    Bit Rate=54 Mb/s Tx-Power=15 dBm
    Retry short limit:7 RTS thr:off Fragment thr:off
    Power Management:on
    Link Quality=70/70 Signal level=-29 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:3 Invalid misc:145 Missed beacon:0
    Some extensive debug from wpa_supplicant:
    EAPOL: disable timer tick
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 operstate=2 linkmode=1 ifi_flags=0x1003 ([UP])
    nl80211: Event message available
    nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlp3s0
    nl80211: Delete station f8:d1:11:b7:29:a4
    nl80211: Event message available
    nl80211: Drv Event 40 (NL80211_CMD_DISASSOCIATE) received for wlp3s0
    nl80211: MLME event 40 (NL80211_CMD_DISASSOCIATE) on wlp3s0(c4:85:08:92:41:b8) A1=c4:85:08:92:41:b8 A2=f8:d1:11:b7:29:a4
    nl80211: MLME event frame - hexdump(len=26): a0 00 40 01 c4 85 08 92 41 b8 f8 d1 11 b7 29 a4 f8 d1 11 b7 29 a4 b0 d9 22 00
    nl80211: Disassociate event
    wlp3s0: Event DISASSOC (1) received
    wlp3s0: Disassociation notification
    wlp3s0: * reason 34
    wlp3s0: * address f8:d1:11:b7:29:a4
    Disassociation frame IE(s) - hexdump(len=0): [NULL]
    wlp3s0: SME: Disassociation event received
    wlp3s0: SME: Deauthenticate to clear driver state
    wpa_driver_nl80211_deauthenticate(addr=f8:d1:11:b7:29:a4 reason_code=3)
    wlp3s0: nl80211: MLME command failed: reason=3 ret=-107 (Transport endpoint is not connected)
    wlp3s0: CTRL-EVENT-DISCONNECTED bssid=f8:d1:11:b7:29:a4 reason=34
    wlp3s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=9)
    wlp3s0: Setting scan request: 0.100000 sec
    Added BSSID f8:d1:11:b7:29:a4 into blacklist
    wlp3s0: Blacklist count 1 --> request scan in 100 ms
    wlp3s0: Ignore new scan request for 0.100000 sec since an earlier request is scheduled to trigger sooner
    TDLS: Remove peers on disassociation
    wlp3s0: Disconnect event - remove keys
    wpa_driver_nl80211_set_key: ifindex=2 (wlp3s0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_nl80211_set_key: ifindex=2 (wlp3s0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_nl80211_set_key: ifindex=2 (wlp3s0) alg=0 addr=0x7cfa10 key_idx=0 set_tx=0 seq_len=0 key_len=0
    addr=f8:d1:11:b7:29:a4
    wlp3s0: State: COMPLETED -> DISCONNECTED
    nl80211: Set wlp3s0 operstate 1->0 (DORMANT)
    netlink: Operstate: ifindex=2 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    EAPOL: External notification - portEnabled=0
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: Supplicant port status: Unauthorized
    nl80211: Skip set_supp_port(unauthorized) while not associated
    EAPOL: SUPP_BE entering state INITIALIZE
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    nl80211: Event message available
    nl80211: Drv Event 48 (NL80211_CMD_DISCONNECT) received for wlp3s0
    nl80211: Ignore disconnect event when using userspace SME
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 wext ifi_flags=0x1003 ([UP])
    wlp3s0: State: DISCONNECTED -> SCANNING
    wlp3s0: Starting AP scan for wildcard SSID
    wlp3s0: Add radio work 'scan'@0x7efad0
    wlp3s0: First radio work item in the queue - schedule start immediately
    wlp3s0: Starting radio work 'scan'@0x7efad0 after 0.000006 second wait
    wlp3s0: nl80211: scan request
    nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]
    Scan requested (ret=0) - scan timeout 30 seconds
    nl80211: Event message available
    nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlp3s0
    wlp3s0: nl80211: Scan trigger
    wlp3s0: Event SCAN_STARTED (49) received
    wlp3s0: Own scan request started a scan in 0.000018 seconds
    wlp3s0: CTRL-EVENT-SCAN-STARTED
    nl80211: Event message available
    nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlp3s0
    wlp3s0: nl80211: New scan results available
    nl80211: Scan probed for SSID ''
    nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 2467 2472 5180 5200 5220 5240 5260 5280 5300 5320 5500 5520 5540 5560 5580 5600 5620 5640 5660 5680 5700 5745 5765 5785 5805 5825
    wlp3s0: Event SCAN_RESULTS (3) received
    wlp3s0: Scan completed in 3.280062 seconds
    nl80211: Received scan results (40 BSSes)
    wlp3s0: BSS: Start scan result update 3
    wlp3s0: BSS: Add new id 38 BSSID ac:cf:23:2e:7f:58 SSID 'LEDnetkamerlicht'
    wlp3s0: BSS: Add new id 39 BSSID c8:d7:19:ed:c4:bb SSID 'Christina, where's your nipple?'
    wlp3s0: BSS: Add new id 40 BSSID 00:25:9c:bc:e0:ab SSID 'Hoogendijk'
    wlp3s0: BSS: Remove id 16 BSSID b0:48:7a:99:b5:bc SSID 'Matrix' due to no match in scan
    BSS: last_scan_res_used=40/64
    wlp3s0: New scan results available (own=1 ext=0)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: AP c4:04:15:3d:f8:00 type 0 added
    WPS: AP c4:04:15:3d:f7:ff type 0 added
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: AP f8:1a:67:7f:62:8e type 0 added
    WPS: AP 00:16:0a:1e:a7:d8 type 0 added
    WPS: AP 6c:fd:b9:30:93:f0 type 0 added
    WPS: AP 64:d1:a3:1d:d9:f4 type 0 added
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: AP 64:66:b3:4f:ed:69 type 0 added
    WPS: AP 00:23:69:2e:1a:cf type 0 added
    WPS: AP e0:46:9a:5d:f7:91 type 0 added
    WPS: AP 00:0c:f6:6b:20:68 type 0 added
    WPS: Unknown Vendor Extension (Vendor ID 9442)
    WPS: AP f8:1a:67:05:3c:66 type 0 added
    WPS: AP 68:7f:74:a5:06:c6 type 0 added
    WPS: AP 20:aa:4b:82:94:13 type 0 added
    WPS: AP 00:0c:f6:6e:c1:ac type 0 added
    WPS: AP c8:d7:19:ed:c4:bb type 0 added
    WPS: AP 00:25:9c:bc:e0:ab type 0 added
    WPS: AP f8:d1:11:b9:95:d2 type 0 added
    WPS: AP 00:0c:f6:46:35:24 type 0 added
    WPS: AP f0:7d:68:55:e8:f2 type 0 added
    WPS: AP 80:1f:02:46:75:6c type 0 added
    WPS: AP 00:0c:f6:71:3c:d4 type 0 added
    WPS: AP[0] c4:04:15:3d:f8:00 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[1] c4:04:15:3d:f7:ff type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[2] f8:1a:67:7f:62:8e type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[3] 00:16:0a:1e:a7:d8 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[4] 6c:fd:b9:30:93:f0 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[5] 64:d1:a3:1d:d9:f4 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[6] 64:66:b3:4f:ed:69 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[7] 00:23:69:2e:1a:cf type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[8] e0:46:9a:5d:f7:91 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[9] 00:0c:f6:6b:20:68 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[10] f8:1a:67:05:3c:66 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[11] 68:7f:74:a5:06:c6 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[12] 20:aa:4b:82:94:13 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[13] 00:0c:f6:6e:c1:ac type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[14] c8:d7:19:ed:c4:bb type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[15] 00:25:9c:bc:e0:ab type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[16] f8:d1:11:b9:95:d2 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[17] 00:0c:f6:46:35:24 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[18] f0:7d:68:55:e8:f2 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[19] 80:1f:02:46:75:6c type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    WPS: AP[20] 00:0c:f6:71:3c:d4 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
    wlp3s0: Radio work 'scan'@0x7efad0 done in 3.283504 seconds
    wlp3s0: Selecting BSS from priority group 0
    wlp3s0: 0: f8:d1:11:b7:29:a4 ssid='Sacred' wpa_ie_len=0 rsn_ie_len=20 caps=0x411 level=-30
    wlp3s0: skip - SSID mismatch
    wlp3s0: skip - SSID mismatch
    wlp3s0: skip - SSID mismatch
    wlp3s0: skip - SSID mismatch
    wlp3s0: selected based on RSN IE
    wlp3s0: selected BSS f8:d1:11:b7:29:a4 ssid='Sacred'
    wlp3s0: Considering connect request: reassociate: 0 selected: f8:d1:11:b7:29:a4 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0x7d1b30 current_ssid=(nil)
    wlp3s0: Request association with f8:d1:11:b7:29:a4
    WPA: Unrecognized EAPOL-Key Key Data IE - hexdump(len=8): 00 06 53 61 63 72 65 64
    WPA: Unrecognized EAPOL-Key Key Data IE - hexdump(len=3): 03 01 08
    WPA: Unrecognized EAPOL-Key Key Data IE - hexdump(len=3): 2a 01 04
    WPA: RSN IE in EAPOL-Key - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 0c 00
    TDLS: TDLS is allowed in the target BSS
    wlp3s0: Add radio work 'sme-connect'@0x7f6460
    wlp3s0: First radio work item in the queue - schedule start immediately
    wlp3s0: Starting radio work 'sme-connect'@0x7f6460 after 0.000009 second wait
    wlp3s0: Automatic auth_alg selection: 0x1
    RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
    RSN: Search for BSSID f8:d1:11:b7:29:a4
    RSN: No PMKSA cache entry found
    wlp3s0: RSN: using IEEE 802.11i/D9.0
    wlp3s0: WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 2
    wlp3s0: WPA: Selected mgmt group cipher 32
    wlp3s0: WPA: clearing AP WPA IE
    WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 0c 00
    wlp3s0: WPA: using GTK TKIP
    wlp3s0: WPA: using PTK TKIP
    wlp3s0: WPA: using KEY_MGMT WPA-PSK
    wlp3s0: WPA: not using MGMT group cipher
    WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 00 00
    wlp3s0: Cancelling scan request
    wlp3s0: SME: Trying to authenticate with f8:d1:11:b7:29:a4 (SSID='Sacred' freq=2447 MHz)
    wlp3s0: State: SCANNING -> AUTHENTICATING
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - EAP fail=0
    EAPOL: External notification - portControl=Auto
    nl80211: Authenticate (ifindex=2)
    * bssid=f8:d1:11:b7:29:a4
    * freq=2447
    * SSID - hexdump_ascii(len=6):
    53 61 63 72 65 64 Sacred
    * IEs - hexdump(len=0): [NULL]
    * Auth Type 0
    nl80211: Authentication request send successfully
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 wext ifi_flags=0x1003 ([UP])
    nl80211: Event message available
    nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlp3s0
    nl80211: New station f8:d1:11:b7:29:a4
    nl80211: Event message available
    nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlp3s0
    nl80211: MLME event 37 (NL80211_CMD_AUTHENTICATE) on wlp3s0(c4:85:08:92:41:b8) A1=c4:85:08:92:41:b8 A2=f8:d1:11:b7:29:a4
    nl80211: MLME event frame - hexdump(len=30): b0 00 40 01 c4 85 08 92 41 b8 f8 d1 11 b7 29 a4 f8 d1 11 b7 29 a4 30 de 00 00 02 00 00 00
    nl80211: Authenticate event
    wlp3s0: Event AUTH (11) received
    wlp3s0: SME: Authentication response: peer=f8:d1:11:b7:29:a4 auth_type=0 auth_transaction=2 status_code=0
    SME: Authentication response IEs - hexdump(len=0): [NULL]
    wlp3s0: set_disable_max_amsdu: -1
    wlp3s0: set_ampdu_factor: -1
    wlp3s0: set_ampdu_density: -1
    wlp3s0: set_disable_ht40: 0
    wlp3s0: set_disable_sgi: 0
    wlp3s0: Trying to associate with f8:d1:11:b7:29:a4 (SSID='Sacred' freq=2447 MHz)
    wlp3s0: State: AUTHENTICATING -> ASSOCIATING
    nl80211: Set wlp3s0 operstate 0->0 (DORMANT)
    netlink: Operstate: ifindex=2 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 00 00
    nl80211: Associate (ifindex=2)
    * bssid=f8:d1:11:b7:29:a4
    * freq=2447
    * SSID - hexdump_ascii(len=6):
    53 61 63 72 65 64 Sacred
    * IEs - hexdump(len=32): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 00 00 7f 08 00 00 00 00 00 00 00 40
    * WPA Versions 0x2
    * pairwise=0xfac02
    * group=0xfac02
    nl80211: Association request send successfully
    nl80211: Event message available
    nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlp3s0
    nl80211: MLME event 38 (NL80211_CMD_ASSOCIATE) on wlp3s0(c4:85:08:92:41:b8) A1=c4:85:08:92:41:b8 A2=f8:d1:11:b7:29:a4
    nl80211: MLME event frame - hexdump(len=72): 10 00 40 01 c4 85 08 92 41 b8 f8 d1 11 b7 29 a4 f8 d1 11 b7 29 a4 40 de 11 04 00 00 01 c0 01 08 82 84 8b 96 0c 12 18 24 32 04 30 48 60 6c dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
    nl80211: Associate event
    wlp3s0: Event ASSOC (0) received
    wlp3s0: Association info event
    resp_ies - hexdump(len=42): 01 08 82 84 8b 96 0c 12 18 24 32 04 30 48 60 6c dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
    wlp3s0: freq=2447 MHz
    wlp3s0: State: ASSOCIATING -> ASSOCIATED
    nl80211: Set wlp3s0 operstate 0->0 (DORMANT)
    netlink: Operstate: ifindex=2 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    wlp3s0: Associated to a new BSS: BSSID=f8:d1:11:b7:29:a4
    wlp3s0: Associated with f8:d1:11:b7:29:a4
    wlp3s0: WPA: Association event - clear replay counter
    wlp3s0: WPA: Clear old PTK
    TDLS: Remove peers on association
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - portEnabled=1
    EAPOL: SUPP_PAE entering state CONNECTING
    EAPOL: enable timer tick
    EAPOL: SUPP_BE entering state IDLE
    wlp3s0: Setting authentication timeout: 10 sec 0 usec
    wlp3s0: Cancelling scan request
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 operstate=5 linkmode=1 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 wext ifi_flags=0x11003 ([UP][LOWER_UP])
    nl80211: Event message available
    nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlp3s0
    nl80211: Ignore connect event (cmd=46) when using userspace SME
    wlp3s0: RX EAPOL from f8:d1:11:b7:29:a4
    RX EAPOL - hexdump(len=99): 01 03 00 5f 02 00 89 00 20 00 00 00 00 00 00 00 01 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    wlp3s0: Setting authentication timeout: 10 sec 0 usec
    wlp3s0: IEEE 802.1X RX: version=1 type=3 length=95
    wlp3s0: EAPOL-Key type=2
    wlp3s0: key_info 0x89 (ver=1 keyidx=0 rsvd=0 Pairwise Ack)
    wlp3s0: key_length=32 key_data_length=0
    replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
    key_nonce - hexdump(len=32): 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45
    key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    WPA: RX EAPOL-Key - hexdump(len=99): 01 03 00 5f 02 00 89 00 20 00 00 00 00 00 00 00 01 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    wlp3s0: State: ASSOCIATED -> 4WAY_HANDSHAKE
    wlp3s0: WPA: RX message 1 of 4-Way Handshake from f8:d1:11:b7:29:a4 (ver=1)
    RSN: msg 1/4 key data - hexdump(len=0):
    WPA: Renewed SNonce - hexdump(len=32): c0 0f fe b9 af ab d8 85 a9 1b aa 3c 3f 68 8e 01 b4 71 70 90 bd 90 86 cd b1 44 87 9f 19 d6 44 3b
    WPA: PTK derivation - A1=c4:85:08:92:41:b8 A2=f8:d1:11:b7:29:a4
    WPA: Nonce1 - hexdump(len=32): c0 0f fe b9 af ab d8 85 a9 1b aa 3c 3f 68 8e 01 b4 71 70 90 bd 90 86 cd b1 44 87 9f 19 d6 44 3b
    WPA: Nonce2 - hexdump(len=32): 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45
    WPA: PMK - hexdump(len=32): [REMOVED]
    WPA: PTK - hexdump(len=64): [REMOVED]
    WPA: WPA IE for msg 2/4 - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 00 00
    WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
    wlp3s0: WPA: Sending EAPOL-Key 2/4
    WPA: KCK - hexdump(len=16): [REMOVED]
    WPA: Derived Key MIC - hexdump(len=16): 54 a5 2d 53 ab 9d 26 1f 03 32 3d c0 5a fd 57 5c
    WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 09 00 00 00 00 00 00 00 00 00 01 c0 0f fe b9 af ab d8 85 a9 1b aa 3c 3f 68 8e 01 b4 71 70 90 bd 90 86 cd b1 44 87 9f 19 d6 44 3b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 54 a5 2d 53 ab 9d 26 1f 03 32 3d c0 5a fd 57 5c 00 16 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 00 00
    wlp3s0: RX EAPOL from f8:d1:11:b7:29:a4
    RX EAPOL - hexdump(len=161): 01 03 00 9d 02 13 c9 00 20 00 00 00 00 00 00 00 02 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45 c5 e6 d0 8f e2 6c 63 56 44 9b ad 25 f8 10 73 c8 73 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 6c 10 77 99 a6 8e 92 04 db 0d e2 7d db b7 a5 9d 00 3e 50 00 b8 c8 bf f2 7e 41 d7 ff 0c 09 d6 fa 0c d3 47 af 3d 4a 09 84 67 83 c7 8b 19 44 ab 5b d7 fc 72 e8 f9 e9 8d d4 b9 f1 66 aa e8 0b 02 db 6a df c3 b6 ba 1b 73 cb 39 0c 43 b9 eb 5c 07 7e
    wlp3s0: IEEE 802.1X RX: version=1 type=3 length=157
    wlp3s0: EAPOL-Key type=2
    wlp3s0: key_info 0x13c9 (ver=1 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
    wlp3s0: key_length=32 key_data_length=62
    replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
    key_nonce - hexdump(len=32): 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45
    key_iv - hexdump(len=16): c5 e6 d0 8f e2 6c 63 56 44 9b ad 25 f8 10 73 c8
    key_rsc - hexdump(len=8): 73 00 00 00 00 00 00 00
    key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_mic - hexdump(len=16): 6c 10 77 99 a6 8e 92 04 db 0d e2 7d db b7 a5 9d
    WPA: RX EAPOL-Key - hexdump(len=161): 01 03 00 9d 02 13 c9 00 20 00 00 00 00 00 00 00 02 1b 2c 85 e1 20 25 da f0 83 37 b2 95 40 b0 7f 87 05 45 28 21 3a 7e cc 26 62 7f b7 9d 73 d5 2d 45 c5 e6 d0 8f e2 6c 63 56 44 9b ad 25 f8 10 73 c8 73 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 6c 10 77 99 a6 8e 92 04 db 0d e2 7d db b7 a5 9d 00 3e 50 00 b8 c8 bf f2 7e 41 d7 ff 0c 09 d6 fa 0c d3 47 af 3d 4a 09 84 67 83 c7 8b 19 44 ab 5b d7 fc 72 e8 f9 e9 8d d4 b9 f1 66 aa e8 0b 02 db 6a df c3 b6 ba 1b 73 cb 39 0c 43 b9 eb 5c 07 7e
    RSN: encrypted key data - hexdump(len=62): 50 00 b8 c8 bf f2 7e 41 d7 ff 0c 09 d6 fa 0c d3 47 af 3d 4a 09 84 67 83 c7 8b 19 44 ab 5b d7 fc 72 e8 f9 e9 8d d4 b9 f1 66 aa e8 0b 02 db 6a df c3 b6 ba 1b 73 cb 39 0c 43 b9 eb 5c 07 7e
    WPA: decrypted EAPOL-Key key data - hexdump(len=62): [REMOVED]
    wlp3s0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
    wlp3s0: WPA: RX message 3 of 4-Way Handshake from f8:d1:11:b7:29:a4 (ver=1)
    WPA: IE KeyData - hexdump(len=62): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 0c 00 dd 26 00 0f ac 01 02 00 35 7c eb 58 e4 43 0f c5 5e ba d4 e4 88 8f 11 b7 87 7c cd 93 9f 73 a4 6c a3 c8 95 5b db 92 40 6a
    WPA: RSN IE in EAPOL-Key - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 02 01 00 00 0f ac 02 0c 00
    WPA: GTK in EAPOL-Key - hexdump(len=40): [REMOVED]
    wlp3s0: WPA: Sending EAPOL-Key 4/4
    WPA: KCK - hexdump(len=16): [REMOVED]
    WPA: Derived Key MIC - hexdump(len=16): a7 52 42 cc b1 b6 b5 c0 71 8f 7c a0 85 bc a0 fb
    WPA: TX EAPOL-Key - hexdump(len=99): 01 03 00 5f 02 03 09 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 a7 52 42 cc b1 b6 b5 c0 71 8f 7c a0 85 bc a0 fb 00 00
    wlp3s0: WPA: Installing PTK to the driver
    wpa_driver_nl80211_set_key: ifindex=2 (wlp3s0) alg=2 addr=0x7d2748 key_idx=0 set_tx=1 seq_len=6 key_len=32
    addr=f8:d1:11:b7:29:a4
    EAPOL: External notification - portValid=1
    wlp3s0: State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
    RSN: received GTK in pairwise handshake - hexdump(len=34): [REMOVED]
    WPA: Group Key - hexdump(len=32): [REMOVED]
    wlp3s0: WPA: Installing GTK to the driver (keyidx=2 tx=0 len=32)
    WPA: RSC - hexdump(len=6): 73 00 00 00 00 00
    wpa_driver_nl80211_set_key: ifindex=2 (wlp3s0) alg=2 addr=0x4f9e43 key_idx=2 set_tx=0 seq_len=6 key_len=32
    broadcast key
    wlp3s0: WPA: Key negotiation completed with f8:d1:11:b7:29:a4 [PTK=TKIP GTK=TKIP]
    wlp3s0: Cancelling authentication timeout
    Removed BSSID f8:d1:11:b7:29:a4 from blacklist
    wlp3s0: State: GROUP_HANDSHAKE -> COMPLETED
    wlp3s0: Radio work 'sme-connect'@0x7f6460 done in 0.032118 seconds
    wlp3s0: CTRL-EVENT-CONNECTED - Connection to f8:d1:11:b7:29:a4 completed [id=4 id_str=]
    nl80211: Set wlp3s0 operstate 0->1 (UP)
    netlink: Operstate: ifindex=2 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
    EAPOL: External notification - portValid=1
    EAPOL: External notification - EAP success=1
    EAPOL: SUPP_PAE entering state AUTHENTICATING
    EAPOL: SUPP_BE entering state SUCCESS
    EAP: EAP entering state DISABLED
    EAPOL: SUPP_PAE entering state AUTHENTICATED
    EAPOL: Supplicant port status: Authorized
    nl80211: Set supplicant port authorized for f8:d1:11:b7:29:a4
    EAPOL: SUPP_BE entering state IDLE
    EAPOL authentication completed - result=SUCCESS
    RTM_NEWLINK: ifi_index=2 ifname=wlp3s0 operstate=6 linkmode=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
    EAPOL: startWhen --> 0
    EAPOL: disable timer tick
    Last edited by shoogendijk (2014-07-11 09:32:28)

    Mabye disabling power management helps
    iw wlp3s0 set power_save off

  • Home wireless network trouble

    I got a new wireless router, Netgear WPN824 from Newegg, a refurbished product. I set up a home wireless network using the online manual on the Netgear website. The router works well for the wired setup. But I could not connect to wireless.
    My wireless network shows up on the list of available wireless networks. I can connect to other wireless networks such as that of my neighbour's. I tried connecting to my network using both unsecured and secure WEP / WPA modes. Except once, I could never connect. That one time, as soon as I could connect and verify that I was indeed connected I thought the problem was resolved and so shutdown my system to see if i could connect again - alas, same trouble again. I use NetworkManager to connect, and here's the output for two networks - jaydoc which is my home network, and linksys, that of my neighbour's to which i can always connect.
    <info> Activation (wlan0) starting connection 'Auto jaydoc'
    Feb 26 02:37:04 Sarvam NetworkManager: <info> (wlan0): device state change: 3 -> 4 (reason 0)
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
    Feb 26 02:37:04 Sarvam NetworkManager: <info> (wlan0): device state change: 4 -> 5 (reason 0)
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0/wireless): connection 'Auto jaydoc' requires no security. No secrets needed.
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Config: added 'ssid' value 'jaydoc'
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Config: added 'scan_ssid' value '1'
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Config: added 'key_mgmt' value 'NONE'
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
    Feb 26 02:37:04 Sarvam NetworkManager: <info> Config: set interface ap_scan to 1
    Feb 26 02:37:04 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: disconnected -> scanning
    Feb 26 02:37:05 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: scanning -> associating
    Feb 26 02:37:05 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associating -> associated
    Feb 26 02:37:05 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associated -> completed
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'jaydoc'.
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
    Feb 26 02:37:05 Sarvam NetworkManager: <info> (wlan0): device state change: 5 -> 7 (reason 0)
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Beginning DHCP transaction (timeout in 45 seconds)
    Feb 26 02:37:05 Sarvam NetworkManager: <info> dhcpcd started with pid 2428
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) scheduled...
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) started...
    Feb 26 02:37:05 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) complete.
    Feb 26 02:37:05 Sarvam dhcpcd: version 5.1.5 starting
    Feb 26 02:37:05 Sarvam NetworkManager: <info> DHCP: device wlan0 state changed normal exit -> preinit
    Feb 26 02:37:05 Sarvam dhcpcd: wlan0: broadcasting for a lease
    Feb 26 02:37:51 Sarvam NetworkManager: <info> (wlan0): DHCP transaction took too long, stopping it.
    Feb 26 02:37:51 Sarvam dhcpcd: received SIGTERM, stopping
    Feb 26 02:37:51 Sarvam dhcpcd: wlan0: removing interface
    Feb 26 02:37:51 Sarvam NetworkManager: <info> (wlan0): canceled DHCP transaction, dhcp client pid 2428
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) scheduled...
    Feb 26 02:37:51 Sarvam NetworkManager: <WARN> nm_dhcp_manager_handle_event(): Received DHCP event from unexpected PID 2428 (expected 0)
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) started...
    Feb 26 02:37:51 Sarvam NetworkManager: <info> (wlan0): device state change: 7 -> 9 (reason 5)
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Activation (wlan0) failed for access point (jaydoc)
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Marking connection 'Auto jaydoc' invalid.
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Activation (wlan0) failed.
    Feb 26 02:37:51 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) complete.
    Feb 26 02:37:51 Sarvam NetworkManager: <info> (wlan0): device state change: 9 -> 3 (reason 0)
    Feb 26 02:37:51 Sarvam NetworkManager: <info> (wlan0): deactivating device (reason: 0).
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) starting connection 'Auto linksys'
    Feb 26 02:39:08 Sarvam NetworkManager: <info> (wlan0): device state change: 3 -> 4 (reason 0)
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
    Feb 26 02:39:08 Sarvam NetworkManager: <info> (wlan0): device state change: 4 -> 5 (reason 0)
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0/wireless): connection 'Auto linksys' requires no security. No secrets needed.
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Config: added 'ssid' value 'linksys'
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Config: added 'scan_ssid' value '1'
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Config: added 'key_mgmt' value 'NONE'
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
    Feb 26 02:39:08 Sarvam NetworkManager: <info> Config: set interface ap_scan to 1
    Feb 26 02:39:08 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: disconnected -> scanning
    Feb 26 02:39:09 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: scanning -> associating
    Feb 26 02:39:09 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associating -> associated
    Feb 26 02:39:09 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associated -> completed
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'linksys'.
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
    Feb 26 02:39:09 Sarvam NetworkManager: <info> (wlan0): device state change: 5 -> 7 (reason 0)
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Beginning DHCP transaction (timeout in 45 seconds)
    Feb 26 02:39:09 Sarvam NetworkManager: <info> dhcpcd started with pid 2444
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) scheduled...
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) started...
    Feb 26 02:39:09 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) complete.
    Feb 26 02:39:09 Sarvam dhcpcd: version 5.1.5 starting
    Feb 26 02:39:09 Sarvam NetworkManager: <info> DHCP: device wlan0 state changed normal exit -> preinit
    Feb 26 02:39:09 Sarvam dhcpcd: wlan0: broadcasting for a lease
    Feb 26 02:39:17 Sarvam dhcpcd: wlan0: offered 192.168.1.115 from 192.168.1.1
    Feb 26 02:39:20 Sarvam dhcpcd: wlan0: acknowledged 192.168.1.115 from 192.168.1.1
    Feb 26 02:39:20 Sarvam dhcpcd: wlan0: checking for 192.168.1.115
    Feb 26 02:39:25 Sarvam dhcpcd: wlan0: leased 192.168.1.115 for 86400 seconds
    Feb 26 02:39:25 Sarvam NetworkManager: <info> DHCP: device wlan0 state changed preinit -> bound
    Feb 26 02:39:25 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Get) scheduled...
    Feb 26 02:39:25 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Get) started...
    Feb 26 02:39:25 Sarvam NetworkManager: <info> address 192.168.1.115
    Feb 26 02:39:25 Sarvam NetworkManager: <info> prefix 24 (255.255.255.0)
    Feb 26 02:39:25 Sarvam NetworkManager: <info> gateway 192.168.1.1
    Feb 26 02:39:25 Sarvam NetworkManager: <info> nameserver '167.206.254.2'
    Feb 26 02:39:25 Sarvam NetworkManager: <info> nameserver '167.206.254.1'
    Feb 26 02:39:25 Sarvam NetworkManager: <info> Activation (wlan0) Stage 5 of 5 (IP Configure Commit) scheduled...
    Feb 26 02:39:25 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Get) complete.
    Feb 26 02:39:25 Sarvam NetworkManager: <info> Activation (wlan0) Stage 5 of 5 (IP Configure Commit) started...
    Feb 26 02:39:26 Sarvam NetworkManager: <info> (wlan0): device state change: 7 -> 8 (reason 0)
    Feb 26 02:39:26 Sarvam NetworkManager: <debug> [1267169966.595494] periodic_update(): Roamed from BSSID 00:1D:7E:4E:C1:D7 (linksys) to 00:13:10:43:D7:DE (linksys)
    Feb 26 02:39:26 Sarvam NetworkManager: <info> Policy set 'Auto linksys' (wlan0) as default for routing and DNS.
    Feb 26 02:39:26 Sarvam NetworkManager: <info> Activation (wlan0) successful, device activated.
    Feb 26 02:39:26 Sarvam NetworkManager: <info> Activation (wlan0) Stage 5 of 5 (IP Configure Commit) complete.
    Is the wireless router i got a dud, being refurbished i took my chances and maybe i wasn't so lucky..! Or is it something wrong in my network settings..? I tried shutting down everything and then turning the modem, then the router and finally the PC without the ethernet cable connected. Still I am unable to connect.
    Any help is deeply appreciated. I am a total newbie in networking...!
    Last edited by jaydoc (2010-02-26 07:57:15)

    Router Status
    Hardware Version WPN824v3
    Firmware Version V1.0.7_1.0.8NA
    Internet Port
    MAC Address 00:1E:68:12:EB:1C
    IP Address [i]edited[/i]
    DHCP DHCP Client
    IP Subnet Mask 255.255.252.0
    Domain Name Server 167.206.254.2
    167.206.254.1
    LAN Port
    MAC Address 00:1F:33:FF:97:FF
    IP Address 192.168.1.1
    DHCP ON
    IP Subnet Mask 255.255.255.0
    Wireless Port
    Name (SSID) jaydoc
    Region United States
    Channel 1
    Mode b and g
    Wireless AP ON
    Broadcast Name ON
    that is what my router status is at the moment. and I am able to connect to the wired network using the router. However I still cannot connect wireless. I did not see any settings in the wireless settings page of the router that ask for DHCP server names/addresses. This is the current logfile output
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) starting connection 'Auto jaydoc'
    Feb 26 08:30:36 Sarvam NetworkManager: <info> (wlan0): device state change: 3 -> 4 (reason 0)
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
    Feb 26 08:30:36 Sarvam NetworkManager: <WARN> nm_dhcp_manager_handle_event(): Received DHCP event from unexpected PID 2548 (expected 0)
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
    Feb 26 08:30:36 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: completed -> disconnected
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
    Feb 26 08:30:36 Sarvam NetworkManager: <info> (wlan0): device state change: 4 -> 5 (reason 0)
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0/wireless): connection 'Auto jaydoc' requires no security. No secrets needed.
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Config: added 'ssid' value 'jaydoc'
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Config: added 'scan_ssid' value '1'
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Config: added 'key_mgmt' value 'NONE'
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
    Feb 26 08:30:36 Sarvam NetworkManager: <info> Config: set interface ap_scan to 1
    Feb 26 08:30:36 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: disconnected -> scanning
    Feb 26 08:30:37 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: scanning -> associating
    Feb 26 08:30:38 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associating -> associated
    Feb 26 08:30:38 Sarvam NetworkManager: <info> (wlan0): supplicant connection state: associated -> completed
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'jaydoc'.
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
    Feb 26 08:30:38 Sarvam NetworkManager: <info> (wlan0): device state change: 5 -> 7 (reason 0)
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Beginning DHCP transaction (timeout in 45 seconds)
    Feb 26 08:30:38 Sarvam NetworkManager: <info> dhcpcd started with pid 2730
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) scheduled...
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) started...
    Feb 26 08:30:38 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP6 Configure Get) complete.
    Feb 26 08:30:38 Sarvam dhcpcd: version 5.1.5 starting
    Feb 26 08:30:38 Sarvam dhcpcd: wlan0: rebinding lease of 192.168.1.115
    Feb 26 08:30:38 Sarvam NetworkManager: <info> DHCP: device wlan0 state changed normal exit -> preinit
    Feb 26 08:30:48 Sarvam dhcpcd: wlan0: broadcasting for a lease
    Feb 26 08:31:23 Sarvam NetworkManager: <info> (wlan0): DHCP transaction took too long, stopping it.
    Feb 26 08:31:23 Sarvam dhcpcd: received SIGTERM, stopping
    Feb 26 08:31:23 Sarvam dhcpcd: wlan0: removing interface
    Feb 26 08:31:23 Sarvam NetworkManager: <info> (wlan0): canceled DHCP transaction, dhcp client pid 2730
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) scheduled...
    Feb 26 08:31:23 Sarvam NetworkManager: <WARN> nm_dhcp_manager_handle_event(): Received DHCP event from unexpected PID 2730 (expected 0)
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) started...
    Feb 26 08:31:23 Sarvam NetworkManager: <info> (wlan0): device state change: 7 -> 9 (reason 5)
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Activation (wlan0) failed for access point (jaydoc)
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Marking connection 'Auto jaydoc' invalid.
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Activation (wlan0) failed.
    Feb 26 08:31:23 Sarvam NetworkManager: <info> Activation (wlan0) Stage 4 of 5 (IP4 Configure Timeout) complete.
    So if its still a DHCP problem, it seems to be affecting only the wireless part. How can I make wireless use the same DHCP servers as the wired..? Or is there something else wrong here..?

  • Not able to start out of the box approval workflow programmatically

    We have a requirement to start an out of the box workflow from a .NET web service.
    We are using the StartWorfklow method:
    wfManager.StartWorkflow(item, association, association.AssociationData
    we are getting the below error message at the above line of code: Attempted to perform an unauthorized operation.. Data: System.Collections.ListDictionaryInternal
    Then, we tried:
    SPSecurity.RunWithElevatedPrivileges(delegate()
            wfManager.StartWorkflow(item, association, association.AssociationData,
    SPWorkflowRunOptions.Synchronous);
    Now, the workflow got canceled automatically with "Failed on Start" status. In the "Workflow History", it is showing 2 records with "was canceled by System Account." & "failed to start" in the description
    column.
    Please advise.

    Hi Zhengyu,
    1. I've already done that:
    a) when "SPSecurity.RunWithElevatedPrivileges(delegate()"
    is used, there are no errors showing up and code gets executed. However, the workflow failed to start.
    b) When I don't use elevated privileges, the code is showing an error (Attempted to perform an unauthorized operation.. Data: System.Collections.ListDictionaryInternal) when
    it tries to start the workflow (StartWorkflow method).
    2. The workflow starts with no issues through UI. I tried it using "System Account" and another account.
    3. I tried also "Collect Feedback" workflow template. Same results...
    You can find the code below:
    public
    stringStartItemWorkflow(stringsitePath,
    stringlibraryName,
    stringfileName)
    stringreturnVal =
    String.Empty;
    stringwfName =
    "VPApprovalWF";
    SPUserTokentoken = GetSecurityToken(sitePath);
    try
    using(Microsoft.SharePoint.SPSiteportalSite
    = newMicrosoft.SharePoint.SPSite(sitePath,
    token))
    using(SPWebportalWeb
    = portalSite.OpenWeb())
                        portalWeb.AllowUnsafeUpdates =
    true;
    SPListlist = portalWeb.Lists[libraryName];
    SPQueryfileQuery =
    newSPQuery();
                        fileQuery.Query =
    String.Format("<Where><Contains><FieldRef
    Name='FileLeafRef' /><Value Type=\"User\">{0}</Value></Contains></Where>", fileName);
                        fileQuery.ViewAttributes =
    "Scope='RecursiveAll'";
    SPListItemCollectionlistItemCol = list.GetItems(fileQuery);
    SPWorkflowManagerwfManager = portalSite.WorkflowManager;
    SPWorkflowAssociationCollectionassociationCollection
    = list.WorkflowAssociations;
    if(listItemCol.Count > 0)
    foreach(SPListItemitem
    inlistItemCol)
    if(associationCollection.Count > 0)
    foreach(SPWorkflowAssociationassociation
    inassociationCollection)
    if(association.Name == wfName)
                                            item.Update();
                                            association.AutoStartChange
    =
    true;
                                            association.AutoStartCreate
    =
    false;
                                            association.AssociationData
    =
    String.Empty;
                                            StartWF(wfManager,
    item, association);
                                            returnVal +=
    "Workflow Started";
    break;
    else
                                    returnVal +=
    "No workflows are attached to the library.";
    else
                            returnVal +=
    "A file with the name provided doesn't exist";
                        portalWeb.AllowUnsafeUpdates =
    false;
    catch(Exceptionex)
                returnVal +=
    "Workflow not started, reason: "+
    String.Format("Source:
    {0}. Stack Trace: {1}. Inner Exception:{2}. Message: {3}. Data: {4}", ex.Source, ex.StackTrace, ex.InnerException, ex.Message, ex.Data);
    returnreturnVal;
    SPUserTokenGetSecurityToken(stringsitePath)
    SPUserTokentoken =
    null;
    SPSecurity.RunWithElevatedPrivileges(delegate()
                Microsoft.SharePoint.
    SPSiteportalSite =
    newMicrosoft.SharePoint.SPSite(sitePath);
                token = portalSite.RootWeb.EnsureUser(
    "DOMAIN\\ADMIN-USER").UserToken;
                portalSite.Dispose();
    returntoken;
    privatestaticvoidStartWF(SPWorkflowManagerwfManager,
    SPListItemitem,
    SPWorkflowAssociationassociation)
    SPSecurity.RunWithElevatedPrivileges(delegate()
                wfManager.StartWorkflow(item, association, association.AssociationData,
    SPWorkflowRunOptions.Synchronous);
    Thank you all for your help.
    Regards,

  • Heavy hdd activity under high memory load, system unresponsive

    Hi there,
    don't know where to post this.
    On a system without SWAP and on zfs root on top of luks encryption when available memory becomes low, the desktop - X-Window Xfce becomes unresponsive.
    Sometimes this takes many minutes and it comes back, or I still can close an application with the hardly moving mouse, to free up some memory.
    The hdd-led does blink heavily.
    Sometimes the X-Window system dies.
    Is there something I can do about this, is this expected behaviour?
    On windows XP I did run whitout swap for quite a long time - years, and when available memory got low, usually just a programm died.
    That way I did like much more, than the system getting slow because of using the swap heavily.
    So what do I have?
    Laptop Lenovo X200
    Core2Duo P8600  @ 2.40GHz
    4GB RAM
    SSD
    no Swap
    LUKS cryptroot
    ZFS on top of /dev/mapper/cryptroot
    # uname -ra
    Linux machine1 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64 GNU/Linux
    # lscpu
    Architecture: x86_64
    CPU op-mode(s): 32-bit, 64-bit
    Byte Order: Little Endian
    CPU(s): 2
    On-line CPU(s) list: 0,1
    Thread(s) per core: 1
    Core(s) per socket: 2
    Socket(s): 1
    NUMA node(s): 1
    Vendor ID: GenuineIntel
    CPU family: 6
    Model: 23
    Model name: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz
    Stepping: 10
    CPU MHz: 800.000
    CPU max MHz: 2401.0000
    CPU min MHz: 800.0000
    BogoMIPS: 4790.58
    Virtualization: VT-x
    L1d cache: 32K
    L1i cache: 32K
    L2 cache: 3072K
    NUMA node0 CPU(s): 0,1
    # lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07)
    00:03.3 Serial controller: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection (rev 07)
    00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
    00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 IDE interface: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 2 port SATA Controller [IDE mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    03:00.0 Network controller: Intel Corporation Ultimate N WiFi Link 5300
    04:00.0 Memory controller: Intel Corporation Turbo Memory Controller (rev 11)
    # mount
    proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
    sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
    dev on /dev type devtmpfs (rw,nosuid,relatime,size=1967492k,nr_inodes=491873,mode=755)
    run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
    rpool/ROOT/rootfs on / type zfs (rw,relatime,xattr,noacl)
    securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
    tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
    devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
    tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
    cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)
    pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
    cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
    cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
    cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
    cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
    cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
    cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
    cgroup on /sys/fs/cgroup/net_cls type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls)
    systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
    mqueue on /dev/mqueue type mqueue (rw,relatime)
    debugfs on /sys/kernel/debug type debugfs (rw,relatime)
    hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
    tmpfs on /tmp type tmpfs (rw)
    binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
    configfs on /sys/kernel/config type configfs (rw,relatime)
    rpool/BACKUP on /BACKUP type zfs (rw,noatime,xattr,noacl)
    rpool/BACKUP/boot on /BACKUP/boot type zfs (rw,noatime,xattr,noacl)
    rpool/BACKUP/mail on /BACKUP/mail type zfs (rw,noatime,xattr,noacl)
    /dev/sda4 on /boot type ext4 (rw,relatime,data=ordered)
    rpool/HOME on /home type zfs (rw,noatime,xattr,noacl)
    rpool/ROOT/rootfs/OPT on /opt type zfs (rw,noatime,xattr,noacl)
    rpool/HOME/root on /root type zfs (rw,noatime,xattr,noacl)
    tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=394404k,mode=700,uid=1000,gid=1000)
    fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
    gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
    # free -h
    total used free shared buff/cache available
    Mem: 3.8G 1.8G 1.1G 108M 873M 1.5G
    Swap: 0B 0B 0B
    # zpool status
    pool: rpool
    state: ONLINE
    scan: scrub repaired 0 in 0h6m with 0 errors on Tue Mar 3 21:23:16 2015
    config:
    NAME STATE READ WRITE CKSUM
    rpool ONLINE 0 0 0
    cryptroot ONLINE 0 0 0
    errors: No known data errors
    # zpool list
    NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
    rpool 61G 25.7G 35.3G - 32% 42% 1.00x ONLINE -
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:29:42 0 0 0 0 0 0 0 0 0 757M 758M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:30:35 0 0 0 0 0 0 0 0 0 851M 853M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:31:44 0 0 0 0 0 0 0 0 0 743M 744M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:33:01 0 0 0 0 0 0 0 0 0 177M 172M
    # free -h
    total used free shared buff/cache available
    Mem: 3.8G 2.5G 137M 344M 1.1G 536M
    Swap: 0B 0B 0B
    that just to show that the zfs arc does resize up and down
    closing some applications
    # free -h
    total used free shared buff/cache available
    Mem: 3.8G 2.5G 137M 344M 1.1G 536M
    Swap: 0B 0B 0B
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:35:05 0 0 0 0 0 0 0 0 0 164M 164M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:36:06 0 0 0 0 0 0 0 0 0 164M 166M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:36:11 0 0 0 0 0 0 0 0 0 165M 166M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:36:14 0 0 0 0 0 0 0 0 0 167M 167M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:36:15 0 0 0 0 0 0 0 0 0 169M 169M
    # arcstat.py
    time read miss miss% dmis dm% pmis pm% mmis mm% arcsz c
    09:37:45 0 0 0 0 0 0 0 0 0 173M 178M
    # free -h
    total used free shared buff/cache available
    Mem: 3.8G 1.5G 1.4G 116M 878M 1.8G
    Swap: 0B 0B 0B
    and the system log
    Mar 08 07:10:50 machine1 systemd-timesyncd[1078]: Using NTP server 217.79.181.50:123 (0.de.pool.ntp.org).
    Mar 08 07:10:52 machine1 systemd[1314]: Time has been changed
    Mar 08 07:10:52 machine1 systemd[1]: Time has been changed
    Mar 08 07:10:52 machine1 systemd-timesyncd[1078]: interval/delta/delay/jitter/drift 32s/+1.379s/0.030s/0.520s/+25ppm
    Mar 08 07:11:24 machine1 systemd-timesyncd[1078]: interval/delta/delay/jitter/drift 64s/+0.006s/0.040s/0.520s/+25ppm
    Mar 08 07:12:28 machine1 systemd-timesyncd[1078]: interval/delta/delay/jitter/drift 128s/-0.008s/0.025s/0.520s/-5ppm
    Mar 08 07:14:36 machine1 systemd-timesyncd[1078]: interval/delta/delay/jitter/drift 256s/+0.009s/0.035s/0.520s/+11ppm
    Mar 08 07:18:53 machine1 systemd-timesyncd[1078]: interval/delta/delay/jitter/drift 512s/-0.001s/0.025s/0.520s/+10ppm
    Mar 08 07:23:57 machine1 acpid[1084]: client 1346[1000:1000] has disconnected
    Mar 08 07:23:58 machine1 systemd-logind[1109]: Suspend key pressed.
    Mar 08 07:23:58 machine1 systemd-logind[1109]: Suspending...
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> sleep requested (sleeping: no enabled: yes)
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> sleeping...
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> (enp0s25): device state change: unavailable -> unmanaged (reason 'sleeping') [20 10 37]
    Mar 08 07:23:58 machine1 logger[14283]: SleepButton pressed
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> (wls1): device state change: activated -> unmanaged (reason 'sleeping') [100 10 37]
    Mar 08 07:23:58 machine1 kernel: e1000e: enp0s25 NIC Link is Down
    Mar 08 07:23:58 machine1 kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> (wls1): deactivating device (reason 'sleeping') [37]
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> (wls1): canceled DHCP transaction, DHCP client pid 13916
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> (wls1): DHCPv4 state changed bound -> done
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> Removing DNS information from /usr/bin/resolvconf
    Mar 08 07:23:58 machine1 kernel: wls1: deauthenticating from a0:f3:c1:a9:0c:63 by local choice (Reason: 3=DEAUTH_LEAVING)
    Mar 08 07:23:58 machine1 kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mar 08 07:23:58 machine1 kernel: cfg80211: World regulatory domain updated:
    Mar 08 07:23:58 machine1 kernel: cfg80211: DFS Master region: unset
    Mar 08 07:23:58 machine1 kernel: cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: Calling CRDA for country: DE
    Mar 08 07:23:58 machine1 kernel: cfg80211: Regulatory domain changed to country: DE
    Mar 08 07:23:58 machine1 kernel: cfg80211: DFS Master region: ETSI
    Mar 08 07:23:58 machine1 kernel: cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5150000 KHz - 5250000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5250000 KHz - 5350000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (5470000 KHz - 5725000 KHz @ 160000 KHz), (N/A, 2698 mBm), (0 s)
    Mar 08 07:23:58 machine1 kernel: cfg80211: (57000000 KHz - 66000000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
    Mar 08 07:23:58 machine1 NetworkManager[1082]: <info> NetworkManager state is now ASLEEP
    Mar 08 07:23:58 machine1 kernel: IPv6: ADDRCONF(NETDEV_UP): wls1: link is not ready
    Mar 08 07:23:58 machine1 dbus[1092]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Mar 08 07:23:58 machine1 systemd[1]: Starting Network Manager Script Dispatcher Service...
    Mar 08 07:23:58 machine1 dbus[1092]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Mar 08 07:23:58 machine1 systemd[1]: Started Network Manager Script Dispatcher Service.
    Mar 08 07:23:58 machine1 systemd[1]: Starting Sleep.
    Mar 08 07:23:58 machine1 systemd[1]: Reached target Sleep.
    Mar 08 07:23:58 machine1 systemd[1]: Starting Suspend...
    Mar 08 07:23:58 machine1 systemd-sleep[14323]: Suspending system...
    Mar 08 07:23:58 machine1 /usr/bin/gpm[1110]: *** info [mice.c(1990)]:
    Mar 08 07:23:58 machine1 /usr/bin/gpm[1110]: imps2: Auto-detected intellimouse PS/2
    Mar 08 07:23:59 machine1 systemd-logind[1109]: Lid closed.
    Mar 08 07:23:59 machine1 logger[14334]: LID closed
    Mar 08 07:24:01 machine1 kernel: PM: Syncing filesystems ... done.
    Mar 08 07:24:01 machine1 kernel: PM: Preparing system for mem sleep
    Mar 08 07:28:21 machine1 kernel: Freezing user space processes ... (elapsed 0.002 seconds) done.
    Mar 08 07:28:21 machine1 kernel: Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
    Mar 08 07:28:21 machine1 kernel: PM: Entering mem sleep
    Mar 08 07:28:21 machine1 kernel: Suspending console(s) (use no_console_suspend to debug)
    Mar 08 07:28:21 machine1 kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Mar 08 07:28:21 machine1 kernel: sd 0:0:0:0: [sda] Stopping disk
    Mar 08 07:28:21 machine1 kernel: e1000e: EEE TX LPI TIMER: 00000000
    Mar 08 07:28:21 machine1 kernel: PM: suspend of devices complete after 595.345 msecs
    Mar 08 07:28:21 machine1 kernel: PM: late suspend of devices complete after 13.265 msecs
    Mar 08 07:28:21 machine1 kernel: ehci-pci 0000:00:1d.7: System wakeup enabled by ACPI
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1d.0: System wakeup enabled by ACPI
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1a.2: System wakeup enabled by ACPI
    Mar 08 07:28:21 machine1 kernel: ehci-pci 0000:00:1a.7: System wakeup enabled by ACPI
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1a.0: System wakeup enabled by ACPI
    Mar 08 07:28:21 machine1 kernel: PM: noirq suspend of devices complete after 13.370 msecs
    Mar 08 07:28:21 machine1 kernel: ACPI: Preparing to enter system sleep state S3
    Mar 08 07:28:21 machine1 kernel: PM: Saving platform NVS memory
    Mar 08 07:28:21 machine1 kernel: Disabling non-boot CPUs ...
    Mar 08 07:28:21 machine1 kernel: kvm: disabling virtualization on CPU1
    Mar 08 07:28:21 machine1 kernel: smpboot: CPU 1 is now offline
    Mar 08 07:28:21 machine1 kernel: ACPI: Low-level resume complete
    Mar 08 07:28:21 machine1 kernel: PM: Restoring platform NVS memory
    Mar 08 07:28:21 machine1 kernel: Enabling non-boot CPUs ...
    Mar 08 07:28:21 machine1 kernel: x86: Booting SMP configuration:
    Mar 08 07:28:21 machine1 kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
    Mar 08 07:28:21 machine1 kernel: Disabled fast string operations
    Mar 08 07:28:21 machine1 kernel: kvm: enabling virtualization on CPU1
    Mar 08 07:28:21 machine1 kernel: CPU1 is up
    Mar 08 07:28:21 machine1 kernel: ACPI: Waking up from system sleep state S3
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1a.0: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1a.2: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: ehci-pci 0000:00:1a.7: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: uhci_hcd 0000:00:1d.0: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: ehci-pci 0000:00:1d.7: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: PM: noirq resume of devices complete after 13.666 msecs
    Mar 08 07:28:21 machine1 kernel: PM: early resume of devices complete after 0.279 msecs
    Mar 08 07:28:21 machine1 kernel: mei_me 0000:00:03.0: irq 28 for MSI/MSI-X
    Mar 08 07:28:21 machine1 kernel: usb usb4: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: usb usb5: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: usb usb3: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: snd_hda_intel 0000:00:1b.0: irq 29 for MSI/MSI-X
    Mar 08 07:28:21 machine1 kernel: usb usb6: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: usb usb7: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: usb usb8: root hub lost power or was reset
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.0:pcie04: Timeout on hotplug command 0x1038 (issued 2840063 msec ago)
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.1:pcie04: Timeout on hotplug command 0x1038 (issued 2840063 msec ago)
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.2:pcie04: Timeout on hotplug command 0x1038 (issued 2840063 msec ago)
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.3:pcie04: Timeout on hotplug command 0x1038 (issued 2840063 msec ago)
    Mar 08 07:28:21 machine1 kernel: sd 0:0:0:0: [sda] Starting disk
    Mar 08 07:28:21 machine1 kernel: e1000e 0000:00:19.0: irq 32 for MSI/MSI-X
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.2:pcie04: Device 0000:04:00.0 already exists at 0000:04:00, cannot hot-add
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.2:pcie04: Cannot add device at 0000:04:00
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
    Mar 08 07:28:21 machine1 kernel: pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
    Mar 08 07:28:21 machine1 kernel: rtc_cmos 00:02: System wakeup disabled by ACPI
    Mar 08 07:28:21 machine1 kernel: usb 1-6: reset high-speed USB device number 3 using ehci-pci
    Mar 08 07:28:21 machine1 kernel: usb 4-2: reset full-speed USB device number 2 using uhci_hcd
    Mar 08 07:28:21 machine1 kernel: ata2: SATA link down (SStatus 0 SControl 300)
    Mar 08 07:28:21 machine1 kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 08 07:28:21 machine1 kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    Mar 08 07:28:21 machine1 kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Mar 08 07:28:21 machine1 kernel: ata1.00: ACPI cmd ef/03:45:00:00:00:a0 (SET FEATURES) filtered out
    Mar 08 07:28:21 machine1 kernel: ata1.00: ACPI cmd ef/03:0c:00:00:00:a0 (SET FEATURES) filtered out
    Mar 08 07:28:21 machine1 kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Mar 08 07:28:21 machine1 kernel: ata1.00: configured for UDMA/133
    Mar 08 07:28:21 machine1 kernel: tpm_tis 00:05: TPM is disabled/deactivated (0x6)
    Mar 08 07:28:21 machine1 kernel: PM: resume of devices complete after 1037.690 msecs
    Mar 08 07:28:21 machine1 kernel: PM: Finishing wakeup.
    Mar 08 07:28:21 machine1 kernel: Restarting tasks ...
    Mar 08 07:28:21 machine1 kernel: ACPI: \_SB_.PCI0.SATA.SCND.MSTR: docking
    Mar 08 07:28:21 machine1 kernel: ACPI: \_SB_.PCI0.SATA.SCND.MSTR: Unable to dock!
    Mar 08 07:28:21 machine1 kernel: done.
    Mar 08 07:28:21 machine1 systemd[1]: Time has been changed
    Mar 08 07:28:21 machine1 systemd-timesyncd[1078]: System time changed. Resyncing.
    Mar 08 07:28:21 machine1 systemd-timesyncd[1078]: Using NTP server 46.4.54.78:123 (0.de.pool.ntp.org).
    Mar 08 07:28:21 machine1 systemd-timesyncd[1078]: Using NTP server 129.143.2.23:123 (0.de.pool.ntp.org).
    Mar 08 07:28:21 machine1 systemd-timesyncd[1078]: Using NTP server 129.250.35.250:123 (0.de.pool.ntp.org).
    Mar 08 07:28:21 machine1 systemd-logind[1109]: Lid opened.
    Mar 08 07:28:21 machine1 systemd[1314]: Time has been changed
    Mar 08 07:28:21 machine1 systemd-sleep[14323]: System resumed.
    Mar 08 07:28:21 machine1 kernel: video LNXVIDEO:00: Restoring backlight state
    Mar 08 07:28:21 machine1 logger[14425]: LID opened
    Mar 08 07:28:21 machine1 logger[14429]: ACPI group/action undefined: processor / LNXCPU:00
    Mar 08 07:28:21 machine1 logger[14431]: ACPI group/action undefined: processor / LNXCPU:01
    Mar 08 07:28:21 machine1 systemd[1]: Starting Bluetooth.
    Mar 08 07:28:21 machine1 systemd[1]: Reached target Bluetooth.
    Mar 08 07:28:21 machine1 systemd[1]: Started Suspend.
    Mar 08 07:28:21 machine1 systemd[1]: Unit sleep.target is not needed anymore. Stopping.
    Mar 08 07:28:21 machine1 systemd[1]: Stopping Sleep.
    Mar 08 07:28:21 machine1 systemd[1]: Stopped target Sleep.
    Mar 08 07:28:21 machine1 systemd[1]: Starting Suspend.
    Mar 08 07:28:21 machine1 systemd[1]: Reached target Suspend.
    Mar 08 07:28:21 machine1 systemd[1]: Unit suspend.target is bound to inactive service. Stopping, too.
    Mar 08 07:28:21 machine1 systemd[1]: Stopping Suspend.
    Mar 08 07:28:21 machine1 systemd[1]: Stopped target Suspend.
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> wake requested (sleeping: yes enabled: yes)
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> waking up...
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (enp0s25): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Mar 08 07:28:21 machine1 systemd-logind[1109]: Operation finished.
    Mar 08 07:28:21 machine1 kernel: e1000e 0000:00:19.0: irq 32 for MSI/MSI-X
    Mar 08 07:28:21 machine1 kernel: e1000e 0000:00:19.0: irq 32 for MSI/MSI-X
    Mar 08 07:28:21 machine1 kernel: iwlwifi 0000:03:00.0: L1 Disabled - LTR Disabled
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (enp0s25): preparing device
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Mar 08 07:28:21 machine1 kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1): preparing device
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> NetworkManager state is now DISCONNECTED
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1) supports 5 scan SSIDs
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: starting -> ready
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: ready -> disconnected
    Mar 08 07:28:21 machine1 NetworkManager[1082]: <info> (wls1) supports 5 scan SSIDs
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Auto-activating connection 'WLAN-1'.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: disconnected -> inactive
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: starting connection 'WLAN-1'
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) scheduled...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) started...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> NetworkManager state is now CONNECTING
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) scheduled...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) complete.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) starting...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: prepare -> config (reason 'none') [40 50 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: (wifi) access point 'WLAN-1' has security, but secrets are required.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: config -> need-auth (reason 'none') [50 60 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) complete.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) scheduled...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) started...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: need-auth -> prepare (reason 'none') [60 40 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) scheduled...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 1 of 5 (Device Prepare) complete.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) starting...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: prepare -> config (reason 'none') [40 50 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: (wifi) connection 'WLAN-1' has security, and secrets exist. No new secrets needed.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Config: added 'ssid' value 'WLAN-1'
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Config: added 'scan_ssid' value '1'
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Config: added 'psk' value '<omitted>'
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 2 of 5 (Device Configure) complete.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Config: set interface ap_scan to 1
    Mar 08 07:28:24 machine1 kernel: wls1: authenticate with a0:f3:c1:a9:0c:63
    Mar 08 07:28:24 machine1 kernel: wls1: send auth to a0:f3:c1:a9:0c:63 (try 1/3)
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: inactive -> authenticating
    Mar 08 07:28:24 machine1 kernel: wls1: send auth to a0:f3:c1:a9:0c:63 (try 2/3)
    Mar 08 07:28:24 machine1 kernel: wls1: authenticated
    Mar 08 07:28:24 machine1 kernel: wls1: associate with a0:f3:c1:a9:0c:63 (try 1/3)
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: authenticating -> associating
    Mar 08 07:28:24 machine1 kernel: wls1: RX AssocResp from a0:f3:c1:a9:0c:63 (capab=0x431 status=0 aid=1)
    Mar 08 07:28:24 machine1 kernel: wls1: associated
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: associating -> associated
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: associated -> 4-way handshake
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): supplicant interface state: 4-way handshake -> completed
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'WLAN-1'.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 3 of 5 (IP Configure Start) scheduled.
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 3 of 5 (IP Configure Start) started...
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): device state change: config -> ip-config (reason 'none') [50 70 0]
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> Activation (wls1) Beginning DHCPv4 transaction (timeout in 45 seconds)
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> dhclient started with pid 14438
    Mar 08 07:28:24 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 3 of 5 (IP Configure Start) complete.
    Mar 08 07:28:24 machine1 dhclient[14438]: DHCPREQUEST on wls1 to 255.255.255.255 port 67
    Mar 08 07:28:26 machine1 acpid[1084]: client connected from 1346[1000:1000]
    Mar 08 07:28:26 machine1 acpid[1084]: 1 client rule loaded
    Mar 08 07:28:28 machine1 dhclient[14438]: DHCPREQUEST on wls1 to 255.255.255.255 port 67
    Mar 08 07:28:28 machine1 dhclient[14438]: DHCPACK from 192.168.1.254
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> address 192.168.1.16
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> plen 24 (255.255.255.0)
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> gateway 192.168.1.254
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> server identifier 192.168.1.254
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> lease time -1
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> nameserver '217.68.161.141'
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> nameserver '217.68.161.171'
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> (wls1): DHCPv4 state changed unknown -> bound
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 5 of 5 (IPv4 Commit) started...
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> (wls1): device state change: ip-config -> ip-check (reason 'none') [70 80 0]
    Mar 08 07:28:28 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 5 of 5 (IPv4 Commit) complete.
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> (wls1): device state change: ip-check -> secondaries (reason 'none') [80 90 0]
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> (wls1): device state change: secondaries -> activated (reason 'none') [90 100 0]
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> NetworkManager state is now CONNECTED_LOCAL
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> NetworkManager state is now CONNECTED_GLOBAL
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> Policy set 'WLAN-1' (wls1) as default for IPv4 routing and DNS.
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> Writing DNS information to /usr/bin/resolvconf
    Mar 08 07:28:29 machine1 dhclient[14438]: bound to 192.168.1.16 -- renewal in 2147483647 seconds.
    Mar 08 07:28:29 machine1 NetworkManager[1082]: <info> (wls1): Activation: successful, device activated.
    Mar 08 07:28:29 machine1 dbus[1092]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Mar 08 07:28:29 machine1 systemd[1]: Starting Network Manager Script Dispatcher Service...
    Mar 08 07:28:29 machine1 dbus[1092]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Mar 08 07:28:29 machine1 systemd[1]: Started Network Manager Script Dispatcher Service.
    Mar 08 07:28:56 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    Mar 08 07:28:56 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 4 of 5 (IPv6 Configure Timeout) started...
    Mar 08 07:28:56 machine1 NetworkManager[1082]: <info> (wls1): Activation: Stage 4 of 5 (IPv6 Configure Timeout) complete.
    Mar 08 08:22:27 machine1 systemd-journal[15220]: Permanent journal is using 41.2M (max allowed 4.0G, trying to leave 4.0G free of 34.3G available → current limit 4.0G).
    Mar 08 08:22:27 machine1 kernel: Core dump to |/usr/lib/systemd/systemd-coredump 6862 0 0 6 1425796589 systemd-journal pipe failed
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=killed, status=6/ABRT
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Flush Journal to Persistent Storage...
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Time has been changed
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service watchdog timeout (limit 1min)!
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service stop-sigabrt timed out. Terminating.
    Mar 08 08:22:27 machine1 kernel: INFO: task panel-20-dateti:1449 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: panel-20-dateti D 0000000000000000 0 1449 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff880092927cb8 0000000000000082 ffff880093e75080 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff880092927fd8 0000000000013640 ffff88007ce0d080 ffff880093e75080
    Mar 08 08:22:27 machine1 kernel: ffff880092927c18 ffffffff81192628 ffff880092857f00 00ff880092932c38
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81192628>] ? page_add_file_rmap+0x48/0x90
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ef7dc>] ? mntput_no_expire+0x2c/0x160
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dd8a8>] lock_rename+0xd8/0x100
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e0bf3>] SyS_renameat2+0x283/0x5f0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811b3719>] ? kmem_cache_free+0x199/0x1d0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e0f9e>] SyS_rename+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task xfce4-xkb-plugi:1452 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: xfce4-xkb-plugi D 0000000000000000 0 1452 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff880092967bd8 0000000000000086 ffff880095441e30 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff880092967fd8 0000000000013640 ffff880125e59e30 ffff880095441e30
    Mar 08 08:22:27 machine1 kernel: ffff880092967b38 ffffffff811e6d0a ffff880092967b38 0000000000000000
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e6d0a>] ? dput+0x2a/0x1c0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e8c9c>] ? __d_lookup+0xac/0x180
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dbbd4>] lookup_slow+0x34/0xc0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dcd02>] path_lookupat+0x6f2/0x850
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e8c9c>] ? __d_lookup+0xac/0x180
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df460>] ? getname_flags+0x30/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dd356>] filename_lookup.isra.27+0x26/0x80
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dfe93>] user_path_at_empty+0x63/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ef7dc>] ? mntput_no_expire+0x2c/0x160
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dff11>] user_path_at+0x11/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811d441a>] vfs_fstatat+0x6a/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811d449b>] vfs_stat+0x1b/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811d4a99>] SyS_newstat+0x29/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task panel-16-cpufre:1472 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: panel-16-cpufre D 0000000000000000 0 1472 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff8800913f7c18 0000000000000082 ffff880129d71e30 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff8800913f7fd8 0000000000013640 ffff880093e76eb0 ffff880129d71e30
    Mar 08 08:22:27 machine1 kernel: ffff880129d71e30 ffff8800913358e0 0000000000000001 0000000000000292
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e6d0a>] ? dput+0x2a/0x1c0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ddc0b>] do_last.isra.35+0x24b/0xea0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811de922>] path_openat+0xc2/0x6e0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81188b7e>] ? handle_mm_fault+0x8ce/0x1110
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81183124>] ? tlb_flush_mmu_free+0x34/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dffc9>] do_filp_open+0x49/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ed657>] ? __alloc_fd+0xa7/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce41e>] do_sys_open+0x14e/0x250
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce53e>] SyS_open+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task panel-17-cpugra:1478 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: panel-17-cpugra D 0000000000000000 0 1478 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff880090117c18 0000000000000086 ffff880129d70a10 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff880090117fd8 0000000000013640 ffff8800b6cb5080 ffff880129d70a10
    Mar 08 08:22:27 machine1 kernel: ffff880129d70a10 ffff880091335c60 0000000000000001 0000000000000292
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e6d0a>] ? dput+0x2a/0x1c0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ddc0b>] do_last.isra.35+0x24b/0xea0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811de922>] path_openat+0xc2/0x6e0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df460>] ? getname_flags+0x30/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81183124>] ? tlb_flush_mmu_free+0x34/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dffc9>] do_filp_open+0x49/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ed657>] ? __alloc_fd+0xa7/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce41e>] do_sys_open+0x14e/0x250
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce53e>] SyS_open+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task xfce4-sensors-p:1485 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: xfce4-sensors-p D 0000000000000000 0 1485 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff880129df7db8 0000000000000082 ffff880129d73250 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff880129df7fd8 0000000000013640 ffff8800b6cb5080 ffff880129d73250
    Mar 08 08:22:27 machine1 kernel: ffff880129d73250 ffffffff81186252 0000000000000161 ffff8800aac0c7a0
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81186252>] ? do_read_fault.isra.58+0x2a2/0x340
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ef7dc>] ? mntput_no_expire+0x2c/0x160
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ef934>] ? mntput+0x24/0x40
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dc70d>] ? path_lookupat+0xfd/0x850
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df9e6>] do_unlinkat+0x166/0x350
    Mar 08 08:22:27 machine1 kernel: [<ffffffff8118c349>] ? vma_rb_erase+0x129/0x260
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e0536>] SyS_unlink+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task panel-23-batter:1486 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: panel-23-batter D 0000000000000000 0 1486 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff88008f9d7c18 0000000000000086 ffff880090095080 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff88008f9d7fd8 0000000000013640 ffff8800b6cb5080 ffff880090095080
    Mar 08 08:22:27 machine1 kernel: ffff880090095080 ffff880091337160 0000000000000001 0000000000000292
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff810b29e8>] ? __wake_up+0x48/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e6d0a>] ? dput+0x2a/0x1c0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ddc0b>] do_last.isra.35+0x24b/0xea0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811662ce>] ? release_pages+0x20e/0x2b0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811de922>] path_openat+0xc2/0x6e0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df460>] ? getname_flags+0x30/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81183124>] ? tlb_flush_mmu_free+0x34/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81183d0d>] ? tlb_finish_mmu+0x4d/0x50
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dffc9>] do_filp_open+0x49/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ed657>] ? __alloc_fd+0xa7/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce41e>] do_sys_open+0x14e/0x250
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce53e>] SyS_open+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 kernel: INFO: task panel-26-netloa:1488 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: panel-26-netloa D 0000000000000000 0 1488 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff88008facbc18 0000000000000082 ffff880090091420 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff88008facbfd8 0000000000013640 ffff8800b6cb5080 ffff880090091420
    Mar 08 08:22:27 machine1 kernel: ffff880090091420 ffff880091337be0 0000000000000001 0000000000000292
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff810b29e8>] ? __wake_up+0x48/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e6d0a>] ? dput+0x2a/0x1c0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ddc0b>] do_last.isra.35+0x24b/0xea0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811de922>] path_openat+0xc2/0x6e0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df460>] ? getname_flags+0x30/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81183124>] ? tlb_flush_mmu_free+0x34/0x60
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dffc9>] do_filp_open+0x49/0xd0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ed657>] ? __alloc_fd+0xa7/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce41e>] do_sys_open+0x14e/0x250
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ce53e>] SyS_open+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service stop-sigterm timed out. Killing.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=killed, status=9/KILL
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Failed to reset devices.list on /system.slice/systemd-journald.service: Invalid argument
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=203/EXEC
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=203/EXEC
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=203/EXEC
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd-journald[14616]: File /var/log/journal/77dbe77418134ba68037e356ea1a09d5/system.journal corrupted or uncleanly shut down, renaming and replacing.
    Mar 08 08:22:27 machine1 kernel: INFO: task xfce4-sensors-p:1485 blocked for more than 120 seconds.
    Mar 08 08:22:27 machine1 kernel: Tainted: P O 3.18.6-1-ARCH #1
    Mar 08 08:22:27 machine1 kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Mar 08 08:22:27 machine1 kernel: xfce4-sensors-p D 0000000000000000 0 1485 1390 0x00000000
    Mar 08 08:22:27 machine1 kernel: ffff880129df7cb8 0000000000000082 ffff880129d73250 0000000000013640
    Mar 08 08:22:27 machine1 kernel: ffff880129df7fd8 0000000000013640 ffff8800b6cb5080 ffff880129d73250
    Mar 08 08:22:27 machine1 kernel: 0000000000000000 0000000000000000 0000000290099440 ffffffff811df460
    Mar 08 08:22:27 machine1 kernel: Call Trace:
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811df460>] ? getname_flags+0x30/0x130
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811da682>] ? path_init+0x222/0x450
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811ef7dc>] ? mntput_no_expire+0x2c/0x160
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551599>] schedule+0x29/0x70
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81551a16>] schedule_preempt_disabled+0x16/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff81553155>] __mutex_lock_slowpath+0xd5/0x140
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815531db>] mutex_lock+0x1b/0x30
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811dd8a8>] lock_rename+0xd8/0x100
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e0bf3>] SyS_renameat2+0x283/0x5f0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811b3719>] ? kmem_cache_free+0x199/0x1d0
    Mar 08 08:22:27 machine1 kernel: [<ffffffff811e0f9e>] SyS_rename+0x1e/0x20
    Mar 08 08:22:27 machine1 kernel: [<ffffffff815556e9>] system_call_fastpath+0x12/0x17
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service watchdog timeout (limit 1min)!
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=dumped, status=6/ABRT
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    Mar 08 08:22:27 machine1 systemd[1]: Job systemd-journal-flush.service/start failed with result 'dependency'.
    Mar 08 08:22:27 machine1 systemd[1]: Unit systemd-journald.service entered failed state.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service failed.
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service has no holdoff time, scheduling restart.
    Mar 08 08:22:27 machine1 systemd[1]: Stopping Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: Listening on Journal Audit Socket.
    Mar 08 08:22:27 machine1 systemd[1]: Starting Journal Service...
    Mar 08 08:22:27 machine1 systemd[1]: systemd-journald.service: main process exited, code=exited, status=127/n/a
    Mar 08 08:22:27 machine1 systemd[1]: Failed to start Journal Service.
    Mar 08 08:22:27 machine1 syst

    Thanks a lot for the many responses.
    So the first and most easy for me would be to just add swap. Or some more ram.
    But still I'm new to arch linux. And better I learn now already, than later, when there might be really bad situations.
    The linux-ck package I tried. But there I'm somehow lost how do I integrate the zfs?
    I have the following packages regarding zfs:
    zfs-git 0.6.3_r170_gd958324f_3.18.6_1-1
    zfs-utils-git 0.6.3_r170_gd958324f_3.18.6_1-1
    these should be from the following source:
    [demz-repo-core]
    SigLevel = Required DatabaseOptional TrustedOnly
    Server = http://demizerone.com/$repo/$arch
    And these updates are running well. That got updated already several times.
    I did install just the linux-ck package.
    with this repository:
    [repo-ck]
    Server = http://repo-ck.com/$arch
    But there, I don't get the zfs support into the initramfs?
    OK, the log looks like this:
    >>> Updating module dependencies. Please wait ...
    >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'default'
    -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck.img
    ==> Starting build: 3.19.1-1-ck
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [autodetect]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    -> Running build hook: [keyboard]
    -> Running build hook: [encrypt]
    -> Running build hook: [zfs]
    ==> ERROR: module not found: `zavl'
    ==> ERROR: module not found: `znvpair'
    ==> ERROR: module not found: `zunicode'
    ==> ERROR: module not found: `zcommon'
    ==> ERROR: module not found: `zfs'
    ==> ERROR: module not found: `zpios'
    ==> ERROR: module not found: `spl'
    ==> ERROR: module not found: `splat'
    -> Running build hook: [filesystems]
    -> Running build hook: [fsck]
    -> Running build hook: [shutdown]
    ==> ERROR: module not found: `zfs'
    ==> Generating module dependencies
    ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-ck.img
    ==> WARNING: errors were encountered during the build. The image may not be complete.
    ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'fallback'
    -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck-fallback.img -S autodetect
    ==> Starting build: 3.19.1-1-ck
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    ==> WARNING: Possibly missing firmware for module: wd719x
    ==> WARNING: Possibly missing firmware for module: aic94xx
    -> Running build hook: [keyboard]
    -> Running build hook: [encrypt]
    -> Running build hook: [zfs]
    ==> ERROR: module not found: `zavl'
    ==> ERROR: module not found: `znvpair'
    ==> ERROR: module not found: `zunicode'
    ==> ERROR: module not found: `zcommon'
    ==> ERROR: module not found: `zfs'
    ==> ERROR: module not found: `zpios'
    ==> ERROR: module not found: `spl'
    ==> ERROR: module not found: `splat'
    -> Running build hook: [filesystems]
    -> Running build hook: [fsck]
    -> Running build hook: [shutdown]
    ==> ERROR: module not found: `zfs'
    ==> Generating module dependencies
    ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-ck-fallback.img
    ==> WARNING: errors were encountered during the build. The image may not be complete.
    ( 95/162) upgrading linux-ck-core2-headers [----------------------] 0%
    ( 95/162) upgrading linux-ck-core2-headers [----------------------] 0%
    ( 95/162) upgrading linux-ck-core2-headers [----------------------] 0%
    ( 95/162) upgrading linux-ck-core2-headers [###-------------------] 14%
    ( 95/162) upgrading linux-ck-core2-headers [###-------------------] 15%
    ( 95/162) upgrading linux-ck-core2-headers [###-------------------] 16%
    ( 95/162) upgrading linux-ck-core2-headers [######----------------] 29%
    ( 95/162) upgrading linux-ck-core2-headers [#########-------------] 42%
    ( 95/162) upgrading linux-ck-core2-headers [###########-----------] 53%
    ( 95/162) upgrading linux-ck-core2-headers [##############--------] 66%
    ( 95/162) upgrading linux-ck-core2-headers [################------] 75%
    ( 95/162) upgrading linux-ck-core2-headers [###################---] 88%
    ( 95/162) upgrading linux-ck-core2-headers [####################--] 95%
    ( 95/162) upgrading linux-ck-core2-headers [######################] 100%
    Well, back to the described behaviour:
    It finally it did kill the x-Window-System, when it ran out of memory, I did run the update from there. It was compiling palemoon.
    If I read it right from the log, that was 18:17, well some hours later, that does not really matter. The system was still alive but the whole X-Window System with the running compilation session therein was gone.
    So there is no question that it was really low on memory.
    After that, I did the update just from the console, no X-Window running at all.
    Here is part of the log of free RAM. I have another log of the arcstat, the ram zfs was using. I'm not sure, if I get them time-syncronized.
    It's all only in my spare time, there are other things to do as well.
    total used free shared buff/cache available
    Mem 3.800 1.200 887M 1.200 1.700 911
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.400 726M 1.200 1.700 751
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.500 585M 1.200 1.700 610
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.600 471M 1.200 1.700 496
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.700 405M 1.200 1.700 430
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.700 333M 1.200 1.700 357
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.500 627M 1.200 1.700 652
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.500 537M 1.200 1.700 562
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.600 487M 1.200 1.700 512
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.000 1.100 1.200 1.700 1100
    Swap 0B 0B 0B
    total used free shared buff/cache available
    Mem 3.800 1.100 1.000 1.200 1.700 1000
    Swap 0B 0B 0B
    OK, that for now.
    Thanks a lot.
    edit:
    Maybe I should add, this was just a different situation of running low on memory.
    There was a webbrowser open, well with quite many tabs. using a lot of memory.
    And that update with pacaur, that did invoke a compilation of the palemoon webbrowser - based on firefox.
    But for this, I would have been happy, with this open webbrowser getting killed, the system being resposive. Or other tasks getting killed, the system reacting on user input.
    I think for being on use as desktop system, it should still respond to keypresses or mousemovements.
    Don't really know if there are other considerations for server use. But not beeing able to free some ram by killing some processes, don't really know if that is better on server or desktop.
    Last edited by whitesnow (2015-03-16 18:47:55)

  • NullPointerException was thrown while extracting a value from an instance

    Dear all,
    We have got a null point exception during commit call. According to the stack trace shown below, it seems that it is a problem due to instance variable accessor. As we know toplink use reflection to access the instance variable value. I am curious whether the exception we got is related to any class-loader setting. Thanks a lot.
    =================
    Stack Trace:
    Exception [TOPLINK-69] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle
    .toplink.exceptions.DescriptorException
    Exception Description: A NullPointerException was thrown while extracting a valu
    e from the instance variable [versionID] in the object [com.oocl.csc.frm.pom.tes
    t.model.Company].
    Internal Exception: java.lang.NullPointerException
    Mapping: oracle.toplink.mappings.DirectToFieldMapping[versionID-->COMPANY.VERSIO
    NID]
    Descriptor: Descriptor(com.oocl.csc.frm.pom.test.model.Company --> [DatabaseTabl
    e(COMPANY)])
    at oracle.toplink.exceptions.DescriptorException.nullPointerWhileGetting
    ValueThruInstanceVariableAccessor(DescriptorException.java:1022)
    at oracle.toplink.internal.descriptors.InstanceVariableAttributeAccessor
    .getAttributeValueFromObject(InstanceVariableAttributeAccessor.java:68)
    at oracle.toplink.mappings.DatabaseMapping.getAttributeValueFromObject(D
    atabaseMapping.java:304)
    at oracle.toplink.mappings.DirectToFieldMapping.iterate(DirectToFieldMap
    ping.java:355)
    at oracle.toplink.internal.descriptors.ObjectBuilder.iterate(ObjectBuild
    er.java:1438)
    at oracle.toplink.internal.descriptors.DescriptorIterator.iterateReferen
    ceObjects(DescriptorIterator.java:258)
    at oracle.toplink.internal.descriptors.DescriptorIterator.startIteration
    On(DescriptorIterator.java:407)
    at oracle.toplink.publicinterface.UnitOfWork.discoverUnregisteredNewObje
    cts(UnitOfWork.java:1368)
    at oracle.toplink.publicinterface.UnitOfWork.discoverAllUnregisteredNewO
    bjects(UnitOfWork.java:1290)
    at oracle.toplink.publicinterface.UnitOfWork.assignSequenceNumbers(UnitO
    fWork.java:326)
    at oracle.toplink.publicinterface.UnitOfWork.collectAndPrepareObjectsFor
    Commit(UnitOfWork.java:664)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeS
    et(UnitOfWork.java:1130)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOf
    Work.java:956)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:771)
    ====================
    ====================
    Mapping Description:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <project>
    <project-name>POM-TEST</project-name>
    <login>
    <database-login>
    <platform>oracle.toplink.oraclespecific.Oracle9Platform</platform>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    <connection-url>jdbc:oracle:thin:@sjcngdb2:1521:cdrfrmdv</connection-ur
    l>
    <user-name>pomowner</user-name>
    <password>BB742416276274A47F360CCDD2711570</password>
    <uses-native-sequencing>false</uses-native-sequencing>
    <sequence-preallocation-size>50</sequence-preallocation-size>
    <sequence-table>SEQUENCE</sequence-table>
    <sequence-name-field>SEQ_NAME</sequence-name-field>
    <sequence-counter-field>SEQ_COUNT</sequence-counter-field>
    <should-bind-all-parameters>false</should-bind-all-parameters>
    <should-cache-all-statements>false</should-cache-all-statements>
    <uses-byte-array-binding>true</uses-byte-array-binding>
    <uses-string-binding>false</uses-string-binding>
    <uses-streams-for-binding>false</uses-streams-for-binding>
    <should-force-field-names-to-upper-case>false</should-force-field-names
    -to-upper-case>
    <should-optimize-data-conversion>true</should-optimize-data-conversion>
    <should-trim-strings>true</should-trim-strings>
    <uses-batch-writing>false</uses-batch-writing>
    <uses-jdbc-batch-writing>true</uses-jdbc-batch-writing>
    <uses-external-connection-pooling>false</uses-external-connection-pooli
    ng>
    <uses-external-transaction-controller>false</uses-external-transaction-
    controller>
    <type>oracle.toplink.sessions.DatabaseLogin</type>
    </database-login>
    </login>
    <java-class>com.oocl.csc.frm.pom.test.model.Company</java-class>
    <tables>
    <table>COMPANY</table>
    </tables>
    <primary-key-fields>
    <field>COMPANY.COMPANY_KEY</field>
    </primary-key-fields>
    <descriptor-type-value>Normal</descriptor-type-value>
    <identity-map-class>oracle.toplink.internal.identitymaps.SoftCacheWeakI
    dentityMap</identity-map-class>
    <remote-identity-map-class>oracle.toplink.internal.identitymaps.SoftCac
    heWeakIdentityMap</remote-identity-map-class>
    <identity-map-size>100</identity-map-size>
    <remote-identity-map-size>100</remote-identity-map-size>
    <should-always-refresh-cache>false</should-always-refresh-cache>
    <should-always-refresh-cache-on-remote>false</should-always-refresh-cac
    he-on-remote>
    <should-only-refresh-cache-if-newer-version>false</should-only-refresh-
    cache-if-newer-version>
    <should-disable-cache-hits>false</should-disable-cache-hits>
    <should-disable-cache-hits-on-remote>false</should-disable-cache-hits-o
    n-remote>
    <alias>Company</alias>
    <copy-policy>
    <descriptor-copy-policy>
    <type>oracle.toplink.internal.descriptors.CopyPolicy</type>
    </descriptor-copy-policy>
    </copy-policy>
    <instantiation-policy>
    <descriptor-instantiation-policy>
    <type>oracle.toplink.internal.descriptors.InstantiationPolicy</ty
    pe>
    </descriptor-instantiation-policy>
    </instantiation-policy>
    <query-manager>
    <descriptor-query-manager>
    <existence-check>Check cache</existence-check>
    </descriptor-query-manager>
    </query-manager>
    <event-manager>
    <descriptor-event-manager empty-aggregate="true"/>
    </event-manager>
    <mappings>
    <database-mapping>
    <attribute-name>companyKey</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.COMPANY_KEY</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>contact</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.oocl.csc.frm.pom.test.model.Contact</referen
    ce-class>
    <is-private-owned>false</is-private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <indirection-policy>
    <mapping-indirection-policy>
    <type>oracle.toplink.internal.indirection.NoIndirectionPoli
    cy</type>
    </mapping-indirection-policy>
    </indirection-policy>
    <uses-joining>false</uses-joining>
    <foreign-key-fields>
    <field>COMPANY.CONTACT_OID</field>
    </foreign-key-fields>
    <source-to-target-key-field-associations>
    <association>
    <association-key>COMPANY.CONTACT_OID</association-key>
    <association-value>CONTACT.POID</association-value>
    </association>
    </source-to-target-key-field-associations>
    <type>oracle.toplink.mappings.OneToOneMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>createdBy</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.CREATED_BY</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>creationClientID</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.CREATION_CLIENTID</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>creationTime</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.CREATION_TIME</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>employeeList</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.oocl.csc.frm.pom.test.model.Person</referenc
    e-class>
    <is-private-owned>false</is-private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <indirection-policy>
    <mapping-indirection-policy>
    <type>oracle.toplink.internal.indirection.NoIndirectionPoli
    cy</type>
    </mapping-indirection-policy>
    </indirection-policy>
    <container-policy>
    <mapping-container-policy>
    <container-class>com.oocl.csc.frm.pom.impl.FWPersistentArra
    yList</container-class>
    <type>oracle.toplink.internal.queryframework.ListContainerP
    olicy</type>
    </mapping-container-policy>
    </container-policy>
    <relation-table>EMPLOYEMENT</relation-table>
    <source-key-fields>
    <field>COMPANY.COMPANY_KEY</field>
    </source-key-fields>
    <source-relation-key-fields>
    <field>EMPLOYEMENT.EMPLOYER_KEY</field>
    </source-relation-key-fields>
    <target-key-fields>
    <field>PERSON.POID</field>
    </target-key-fields>
    <target-relation-key-fields>
    <field>EMPLOYEMENT.EMPLOYEE_ID</field>
    </target-relation-key-fields>
    <type>oracle.toplink.mappings.ManyToManyMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>lastUpdateClientID</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.LAST_UPDATE_CLIENTID</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>lastUpdatedBy</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.LAST_UPDATED_BY</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>lastUpdateTime</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.LAST_UPDATE_TIME</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>name</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.NAME</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>partner</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.oocl.csc.frm.pom.test.model.Company</referen
    ce-class>
    <is-private-owned>false</is-private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <indirection-policy>
    <mapping-indirection-policy>
    <type>oracle.toplink.internal.indirection.NoIndirectionPoli
    cy</type>
    </mapping-indirection-policy>
    </indirection-policy>
    <uses-joining>false</uses-joining>
    <foreign-key-fields>
    <field>COMPANY.PARTNER</field>
    </foreign-key-fields>
    <source-to-target-key-field-associations>
    <association>
    <association-key>COMPANY.PARTNER</association-key>
    <association-value>COMPANY.COMPANY_KEY</association-value>
    </association>
    </source-to-target-key-field-associations>
    <type>oracle.toplink.mappings.OneToOneMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>persistentCtxt</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.oocl.csc.frm.pom.impl.FWPOMPersistentContext
    </reference-class>
    <is-null-allowed>false</is-null-allowed>
    <aggregate-to-source-field-name-associations>
    <association>
    <association-key>OWNERID</association-key>
    <association-value>COMPANY.OWNERID</association-value>
    </association>
    <association>
    <association-key>ROOTID</association-key>
    <association-value>COMPANY.ROOTID</association-value>
    </association>
    </aggregate-to-source-field-name-associations>
    <type>oracle.toplink.mappings.AggregateObjectMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>poid</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.POID</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>version</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.VERSION</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>versionID</attribute-name>
    <read-only>false</read-only>
    <field-name>COMPANY.VERSIONID</field-name>
    <type>oracle.toplink.mappings.DirectToFieldMapping</type>
    </database-mapping>
    </mappings>
    <type>oracle.toplink.publicinterface.Descriptor</type>
    </descriptor>
    </descriptors>
    </project>
    ====================
    ====================
    Session Creation Method:
    SessionBroker broker = (SessionBroker) manager.getSession(brokerName, Thread.currentThread().getContextClassLoader());
    broker.getLogin().getPlatform().getConversionManager().setLoader(Thread.currentThread().getContextClassLoader());
    ====================
    ===================
    Class Hierarchy:
    Object extends> ..xxx.. extends> FWObject extends> Company
    The problematic attribute -- versionID -- is defined at "FWObject" level.
    ===================
    ===================
    Environment Configuration:
    Application Server version: 10.1.2
    TopLink version : 9.0.4.5
    TopLink classpath: specified at container level
    FWObject classpath: specified at container level
    Company classpath: specified at application level
    ===================
    Thanks and regards,
    William

    Dear All,
    We have loaded the toplink.jar to container level instead of application level. Don't know whether it is a possible source of error. Moreover, what is the purpose of loading antlr.jar? What is this jar for?
    Thanks and regards,
    William

  • Problem with wpa_supplicant unstable

    Hello, I have some problems using wpa_supplicant. I didn't really noticed since when, because my router wasn't working for some time, but I suspect it was the upgrade to the kernel 2.6.32.
    Anyway, my connection is too unstable, very slow most of times, but sometimes fast(between 0k/s to 1500k/s), and drop after a minute.
    At the beginning, the connection is obtained slower than usual.
    And after around a minute(sometimes more), I have in wpa_supplicant logs this message:
    RTM_NEWLINK: operstate=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b19 len=16
    Received 799 bytes of scan results (2 BSSes)
    New scan results available
    Selecting BSS from priority group 1
    Try to find WPA-enabled AP
    0: 00:18:39:32:c5:81 ssid='linksys' wpa_ie_len=26 rsn_ie_len=24 caps=0x11
    selected based on RSN IE
    selected WPA AP 00:18:39:32:c5:81 ssid='linksys'
    Already associated with the selected AP.
    In general, when I got this message after the connection(somtimes it's after the second time), the internet doesn't work anymore, even if the interface is still there, and iwconfig and iwlist scan shows the right information. There's no message in the logs, no error, no nothing. And I have to kill wpa_supplicant to reconnect.
    I wonder if anyone have the same problem, or knows why I have this "wireless event".
    My configuration is a Linux64, atheros card(DLink DWA547), using WPA2 security
    In wpa_supplicant.conf:
    network={
            ssid="linksys"
            proto=RSN
            psk=xxxxxxx
            priority=1
    Here's the log of the connection
    Initializing interface 'ath0' conf '/etc/wpa_supplicant.conf' driver 'default' 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='/var/run/wpa_supplicant'
    eapol_version=1
    ap_scan=1
    fast_reauth=0
    Line: 509 - start of a new network block
    ssid - hexdump_ascii(len=7):
    6c 69 6e 6b 73 79 73 linksys
    proto: 0x2
    PSK - hexdump(len=32): [REMOVED]
    priority=1 (0x1)
    Priority group 1
    id=0 ssid='linksys'
    Initializing interface (2) 'ath0'
    Interface ath0 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
    WEXT: Operstate: linkmode=1, operstate=5
    Own MAC address: 00:1c:f0:5b:d8:0a
    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): f7 e2 2f 2e e3 9d 51 47 9a e6 b8 17 a9 14 0e 90
    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
    Added interface ath0
    RTM_NEWLINK: operstate=0 ifi_flags=0x1002 ()
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Ignore event for foreign ifindex 3
    Ignore event for foreign ifindex 3
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b06 len=12
    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 440 bytes of scan results (1 BSSes)
    New scan results available
    Selecting BSS from priority group 1
    Try to find WPA-enabled AP
    0: 00:18:39:32:c5:81 ssid='linksys' wpa_ie_len=26 rsn_ie_len=24 caps=0x11
    selected based on RSN IE
    selected WPA AP 00:18:39:32:c5:81 ssid='linksys'
    Trying to associate with 00:18:39:32:c5:81 (SSID='linksys' freq=2462 MHz)
    Cancelling scan request
    WPA: clearing own WPA/RSN IE
    Automatic auth_alg selection: 0x1
    RSN: using IEEE 802.11i/D9.0
    WPA: Selected cipher suites: group 8 pairwise 24 key_mgmt 2 proto 2
    WPA: set AP WPA IE - hexdump(len=28): dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 04 00 50 f2 02 01 00 00 50 f2 02
    WPA: set AP RSN IE - hexdump(len=26): 30 18 01 00 00 0f ac 02 02 00 00 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00
    WPA: using GTK TKIP
    WPA: using PTK CCMP
    WPA: using KEY_MGMT WPA-PSK
    WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
    No keys have been configured - skip key clearing
    wpa_driver_wext_set_drop_unencrypted
    State: SCANNING -> ASSOCIATING
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    WEXT: Operstate: linkmode=-1, operstate=5
    wpa_driver_wext_associate
    wpa_driver_wext_set_psk
    Setting authentication timeout: 10 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - EAP fail=0
    EAPOL: External notification - portControl=Auto
    RSN: Ignored PMKID candidate without preauth flag
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b06 len=12
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b04 len=16
    EAPOL: disable timer tick
    RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b19 len=16
    Received 799 bytes of scan results (2 BSSes)
    New scan results available
    Selecting BSS from priority group 1
    Try to find WPA-enabled AP
    0: 00:18:39:32:c5:81 ssid='linksys' wpa_ie_len=26 rsn_ie_len=24 caps=0x11
    selected based on RSN IE
    selected WPA AP 00:18:39:32:c5:81 ssid='linksys'
    Already associated with the selected AP.
    RSN: Ignored PMKID candidate without preauth flag
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'ath0' added
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:18:39:32:c5:81
    State: ASSOCIATING -> ASSOCIATED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    WEXT: Operstate: linkmode=-1, operstate=5
    Associated to a new BSS: BSSID=00:18:39:32:c5:81
    No keys have been configured - skip key clearing
    Associated with 00:18:39:32:c5:81
    WPA: Association event - clear replay counter
    WPA: Clear old PTK
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - portEnabled=1
    EAPOL: SUPP_PAE entering state CONNECTING
    EAPOL: enable timer tick
    EAPOL: SUPP_BE entering state IDLE
    Setting authentication timeout: 10 sec 0 usec
    Cancelling scan request
    RX EAPOL from 00:18:39:32:c5:81
    RX EAPOL - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Setting authentication timeout: 10 sec 0 usec
    IEEE 802.1X RX: version=2 type=3 length=95
    EAPOL-Key type=2
    key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
    key_length=16 key_data_length=0
    replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
    key_nonce - hexdump(len=32): 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51
    key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    WPA: RX EAPOL-Key - hexdump(len=99): 02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00 01 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    State: ASSOCIATED -> 4WAY_HANDSHAKE
    WPA: RX message 1 of 4-Way Handshake from 00:18:39:32:c5:81 (ver=2)
    RSN: msg 1/4 key data - hexdump(len=0):
    WPA: Renewed SNonce - hexdump(len=32): 69 01 18 59 3a c2 52 d7 26 3c db 92 51 7e 4b 97 d3 3e 0a a7 cf 32 9c 82 58 2f 8a eb 3d b6 6a af
    WPA: PTK derivation - A1=00:1c:f0:5b:d8:0a A2=00:18:39:32:c5:81
    WPA: PMK - hexdump(len=32): [REMOVED]
    WPA: PTK - hexdump(len=48): [REMOVED]
    WPA: WPA IE for msg 2/4 - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
    WPA: Sending EAPOL-Key 2/4
    WPA: TX EAPOL-Key - hexdump(len=121): 01 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00 01 69 01 18 59 3a c2 52 d7 26 3c db 92 51 7e 4b 97 d3 3e 0a a7 cf 32 9c 82 58 2f 8a eb 3d b6 6a af 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 a1 cc 03 76 20 64 f4 a5 77 2a b9 59 3d 52 d9 00 16 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
    RX EAPOL from 00:18:39:32:c5:81
    RX EAPOL - hexdump(len=203): 02 03 00 c7 02 13 ca 00 10 00 00 00 00 00 00 00 02 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 41 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 30 dc 3f 93 b3 15 ac 51 70 cb 6c c6 19 1c 79 00 68 c0 46 a1 2c f7 e0 e6 9b b6 b0 25 b1 7f 9b ac cc de 1f a4 ab 28 29 22 82 16 bd 12 4e 0d 12 c1 54 d4 58 9c 2d cc f1 f2 c2 f3 81 b7 0b f4 92 c2 69 73 31 d5 5b d6 7f 35 d1 40 1a 71 4d dc 58 b9 43 e7 69 d7 25 25 48 da ad 5c 2f 70 96 32 f2 24 ba 2f b6 9c 97 dc 34 f6 e4 37 4a 3d 41 ad 00 7c 6d 46 07 9f b6 c3 3f 9c a9
    IEEE 802.1X RX: version=2 type=3 length=199
    EAPOL-Key type=2
    key_info 0x13ca (ver=2 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
    key_length=16 key_data_length=104
    replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
    key_nonce - hexdump(len=32): 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51
    key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    key_rsc - hexdump(len=8): 41 02 00 00 00 00 00 00
    key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
    key_mic - hexdump(len=16): 14 30 dc 3f 93 b3 15 ac 51 70 cb 6c c6 19 1c 79
    WPA: RX EAPOL-Key - hexdump(len=203): 02 03 00 c7 02 13 ca 00 10 00 00 00 00 00 00 00 02 86 e5 80 cf 87 fc 5f 82 84 78 23 70 57 61 ae 6b da 1d 82 cc 29 0d a0 1c ea 55 f2 7d 30 4e 5f 51 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 41 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 30 dc 3f 93 b3 15 ac 51 70 cb 6c c6 19 1c 79 00 68 c0 46 a1 2c f7 e0 e6 9b b6 b0 25 b1 7f 9b ac cc de 1f a4 ab 28 29 22 82 16 bd 12 4e 0d 12 c1 54 d4 58 9c 2d cc f1 f2 c2 f3 81 b7 0b f4 92 c2 69 73 31 d5 5b d6 7f 35 d1 40 1a 71 4d dc 58 b9 43 e7 69 d7 25 25 48 da ad 5c 2f 70 96 32 f2 24 ba 2f b6 9c 97 dc 34 f6 e4 37 4a 3d 41 ad 00 7c 6d 46 07 9f b6 c3 3f 9c a9
    RSN: encrypted key data - hexdump(len=104): c0 46 a1 2c f7 e0 e6 9b b6 b0 25 b1 7f 9b ac cc de 1f a4 ab 28 29 22 82 16 bd 12 4e 0d 12 c1 54 d4 58 9c 2d cc f1 f2 c2 f3 81 b7 0b f4 92 c2 69 73 31 d5 5b d6 7f 35 d1 40 1a 71 4d dc 58 b9 43 e7 69 d7 25 25 48 da ad 5c 2f 70 96 32 f2 24 ba 2f b6 9c 97 dc 34 f6 e4 37 4a 3d 41 ad 00 7c 6d 46 07 9f b6 c3 3f 9c a9
    WPA: decrypted EAPOL-Key key data - hexdump(len=96): [REMOVED]
    State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
    WPA: RX message 3 of 4-Way Handshake from 00:18:39:32:c5:81 (ver=2)
    WPA: IE KeyData - hexdump(len=96): 30 18 01 00 00 0f ac 02 02 00 00 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 04 00 50 f2 02 01 00 00 50 f2 02 dd 26 00 0f ac 01 02 00 61 5d c5 e9 0c 67 2d ad 05 07 6d 9d 42 5a 0a 52 ff 0b 0f 1e 05 63 1a 6c 57 53 c0 54 2b 20 2e 44 dd 00
    WPA: Sending EAPOL-Key 4/4
    WPA: TX EAPOL-Key - hexdump(len=99): 01 03 00 5f 02 03 0a 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 77 12 f7 83 4a fc 6a 7d 57 b3 2d 50 cf e7 5f 9d 00 00
    WPA: Installing PTK to the driver.
    wpa_driver_wext_set_key: alg=3 key_idx=0 set_tx=1 seq_len=6 key_len=16
    EAPOL: External notification - portValid=1
    State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
    RSN: received GTK in pairwise handshake - hexdump(len=34): [REMOVED]
    WPA: Group Key - hexdump(len=32): [REMOVED]
    WPA: Installing GTK to the driver (keyidx=2 tx=0 len=32).
    WPA: RSC - hexdump(len=6): 41 02 00 00 00 00
    wpa_driver_wext_set_key: alg=2 key_idx=2 set_tx=0 seq_len=6 key_len=32
    WPA: Key negotiation completed with 00:18:39:32:c5:81 [PTK=CCMP GTK=TKIP]
    Cancelling authentication timeout
    State: GROUP_HANDSHAKE -> COMPLETED
    CTRL-EVENT-CONNECTED - Connection to 00:18:39:32:c5:81 completed (auth) [id=0 id_str=]
    wpa_driver_wext_set_operstate: operstate 0->1 (UP)
    WEXT: Operstate: linkmode=-1, operstate=6
    EAPOL: External notification - portValid=1
    EAPOL: External notification - EAP success=1
    EAPOL: SUPP_PAE entering state AUTHENTICATING
    EAPOL: SUPP_BE entering state SUCCESS
    EAP: EAP entering state DISABLED
    EAPOL: SUPP_PAE entering state AUTHENTICATED
    EAPOL: SUP
    Last edited by ondo (2010-03-16 22:09:08)

    Not solved, but my workaround was to downgrade to kernel 2.6.31+madwifi0.9.4096. Apparently there was nothing special to the suspicious message from the logs, as it was already there and it still works.

Maybe you are looking for