Detecting links in a JEditorPane

Hello!
I'm using a small JEditorPane (220px by 100px) to display simple HTML pages. The contents of the pane can be scrolled using the standard scroll bar. What I'd like to be able to do is to detect if any links are currently visible in the pane. So, if I'm scrolling through a page and a link comes in to view in the JEditorPane, I'd like my app to detect that a link is visible.
Any ideas would be greatly appreciated!
Matt

Hi Matt
You can find all the links available on any html page. below is the code.
Document baseDocument = textPane.getDocument();
if (baseDocument instanceof DefaultStyledDocument) {
DefaultStyledDocument hdoc = (DefaultStyledDocument) baseDocument;
HTMLDocument.Iterator htmlDocumentIterator= null;
AttributeSet tagAttributeSet=null;
Enumeration enum= null;
htmlDocumentIterator = ((HTMLDocument)hdoc).getIterator(HTML.Tag.A);
while(htmlDocumentIterator.isValid()){
tagAttributeSet = htmlDocumentIterator.getAttributes();
enum = tagAttributeSet.getAttributeNames();
     while(enum.hasMoreElements()){
     Object obj = enum.nextElement();
htmlDocumentIterator.next();
Even i was struglling with the same problem. But now my problem is how to identify a link when ever amouse is positioned over a link. I was able to achieve with j2sdk1.4 but since i want it to be done by using j2sdk1.3 . Since in 1.3 HyperlinkEvent doesn't return element object. Now what i need to do is i need to generate the offset position using mouse movement . Please let me know if you or anyone knows about it. its urgent

Similar Messages

  • Does FabricPath relies only on IS-IS hello exchange to detect link failures or does it implement BFD (Bidirectional Forwarding Detection)?

    I'm trying to understand if FabricPath relies only on IS-IS hello exchange to detect link failures or if it implements BFD (Bidirectional Forwarding Detection) to reduce the failure detection time. I noticed n RFC to introduce BFD in TRILL signed by a person from Cisco, so I was wondering if they adopted that in FP.
    Thanks.

    So.. it doesn't wait for a certain time after which if no hellos are received the link is considered down. It react as soon as a port down notification is received... right?
    So what if aggregated links are used? How does it behave?

  • How can detect link statius througth MII..?

    Hi
    I am trying to detect link status througth MII
    but I don't know how can access it.
    Thanks..
    Song

    javigomez88 wrote:
    I know that Brother has an app that works with its wireless printers, even if they are not airprint. My printer isn't wireless, is a wireless print server attached to the printer what is able to make this printer wireless. Could this app be a solution or only would work with the wireless Brother printers?
    The Apps usually only work with wireless printers, though if its free, there is no harm in trying, and see if it gets picked up, but its doubtful, as the print server would need to transmit in the same protocol the Brother Print App is expecting from the supported wireless printers. 

  • Detect linked files in Illustrator CS

    Is it possible to script the detection of linked files in Illustrator CS and above and actually get the linked file name to check and see if it is in the same directory for relinking?

    Hi. I am also experiencing this very annoying problem. Currently using version CS2, but this problem dates back to version 9.  I check the box to link a tif file, not embed it, in Illustrator. All is well until I save and reopen the file. Suddenly the file is embedded. No other changes have been made to the folders or anything else. It just embeds itself and cannot be linked again.
    So far, I conclude that something in the file itself has corrupted, because it is not possible to place a new file and have it link correctly again. So if I anticipate more changes, I create a new file.
    Notice the upper left corner of the top toolbar. If you click on a file that has embedded itself, the file will be identified as "Group" instead of "linked file."
    I've tried all kinds of things, like trying to ungroup it, trying to release a clipping mask, and so forth, to see what went wrong. Have not figured it out.

  • Eth1 not detecting link, despite NIC link light

    hello
    i have just added a new NIC to the server. when restarting the computer i see the link lights are on and green. When checking with the ifconfig the eth is shown but when checking with the ethtool it shows the link is off. i changed the cable the gbic but still the link is down.
    the interface is connected P2P to another computer so the ip and route is not relevant, i just want to see the link on
    i googled this problem and saw that i am not the only one who has it but there where no solutions. there was a very similar problem that was posted here but the solution was not entered.
    i hope there is a software or connection problem here and not a NIC problem
    thanks
    here are the enviroment params
    Ethernet controller: Intel Corporation 82599EB 10-Gigabit Network Connection
    ethtool eth4
    Settings for eth4:
        Supported ports: [ FIBRE ]
        Supported link modes:   10000baseT/Full
        Supports auto-negotiation: No
        Advertised link modes:  10000baseT/Full
        Advertised pause frame use: No
        Advertised auto-negotiation: No
        Speed: Unknown!
        Duplex: Unknown! (255)
        Port: Other
        PHYAD: 0
        Transceiver: external
        Auto-negotiation: off
        Supports Wake-on: d
        Wake-on: d
        Current message level: 0x00000007 (7)
                       drv probe link
        Link detected: no
    ifconfig eth4
    eth4      Link encap:Ethernet  HWaddr 00:1B:21:00:00:01 
              inet addr:1.1.1.1  Bcast:1.1.1.255  Mask:255.255.255.0
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

    i have downloaded the new ixgbe driver so i dont think changing the kernel will help
    ethtool -i eth4
    driver: ixgbe
    version: 3.7.21-NAPI
    firmware-version: 0x18f60001
    bus-info: 0000:07:00.1
    supports-statistics: yes
    supports-test: yes
    supports-eeprom-access: yes
    supports-register-dump: yes

  • How to detect links in text automatically

    I'm working on Twitter client app and I want the URLs or links in the statuses behaves like a link.  I saw AIR apps like TweetDeck, DestroyTwitter and Twhirl which they show links as links though.

    I've found a way at http://bit.ly/9OKEUl using regular expressions I'll test it now and hope it works.
    Here is the way:
    You could replace the URLs in your text for actual links using the following regex:
    str = str.replace(/((https?|ftp|telnet|file):((\/\/)|(\\\\))+[\w\d:#@%\/;$()~_?\+-=\\\.&]*)/g, "<u><a href='$1'>$1</a></u>");
    Then set the htmlText on a Label or Text component and listen for it's link event:
    <mx:Text htmlText="{str}" link="linkHandler(event)"/>
    Then open the URL on the handler:
    public function linkHandler(event:TextEvent):void {
        navigateToURL(new URLRequest(event.text), '_blank');
    from Stackoverflow.com

  • Safari cannot detect link

    I have been sent a link to a document formatted as a pdf-file.  When it steer the mouse-pointer over the link, nothing happens.  When I steer the mouse-pointer a little below the link, the pointing-hand image flickers on and off at such speed that it cannot be used.
    The website-manager insists that he can get the link to work, using Safari with plug-ins enabled.  I cannot.
    I have looked at MacintoshHD/Libarary/Internet plug-ins, and can see nothing there that mentions pdf.  What I see is as follows:
    file://localhost/Library/Internet%20Plug-Ins/DivXBrowserPlugin.plugin/
    file://localhost/Library/Internet%20Plug-Ins/ebldetect.bundle/
    file://localhost/Library/Internet%20Plug-Ins/Flash%20Player.plugin/
    file://localhost/Library/Internet%20Plug-Ins/flashplayer.xpt
    file://localhost/Library/Internet%20Plug-Ins/Flip4Mac%20WMV%20Plugin.plugin/
    file://localhost/Library/Internet%20Plug-Ins/Flip4Mac%20WMV%20Plugin.webplugin/
    file://localhost/Library/Internet%20Plug-Ins/iPhotoPhotocast.plugin/
    file://localhost/Library/Internet%20Plug-Ins/JavaAppletPlugin.plugin/
    file://localhost/Library/Internet%20Plug-Ins/npdivx.xpt
    file://localhost/Library/Internet%20Plug-Ins/nsIQTScriptablePlugin.xpt
    file://localhost/Library/Internet%20Plug-Ins/Quartz%20Composer.webplugin/
    file://localhost/Library/Internet%20Plug-Ins/QuickTime%20Plugin.plugin/
    file://localhost/Library/Internet%20Plug-Ins/Silverlight.plugin/
    Can any kind person help ?

    Here is the page: 
    https://kiosk.iristickets.co.uk/printathome/ticket/pdf/2411723722/DMptzfoKuOYee2 ca/tickets.pdf.
    If you scroll down, you will come to the blue-printed link that-is-not-quite-a-link.
    Thank you for helping me.

  • I can't add simple HTML link to HTMLDocument in jEditorPane

    h5. How to construct a link to make it work?
    HTMLDocument doc = (HTMLDocument) jEditorPane.getDocument();
    String link = dialogSlownikEkranow.getLink();
    SimpleAttributeSet tag = new SimpleAttributeSet();
    SimpleAttributeSet attrs = new SimpleAttributeSet();
    tag.addAttribute(HTML.Tag.A, attrs);
    attrs.addAttribute(HTML.Attribute.HREF, link);
    +try {+
    + doc.insertString(jEditorPane.getCaretPosition(), "some link", tag);+
    +} catch (BadLocationException e1) {+
    + e1.printStackTrace();+
    +}+
    h5. As a result I get
    <+a href="\mw\client\cd\plytacd.html"><p></a>+
    h5. but I require something like
    <+a href="\mw\client\cd\plytacd.html">some link</a>+

    Hi,
    nirgal wrote:
    h5. How to construct a link to make it work?
    HTMLDocument doc = (HTMLDocument) jEditorPane.getDocument();
    SimpleAttributeSet tag = new SimpleAttributeSet();
    SimpleAttributeSet attrs = new SimpleAttributeSet();
    tag.addAttribute(HTML.Tag.A, attrs);
    attrs.addAttribute(HTML.Attribute.HREF, link);
    I don't believe that SimpleAttributeSet is right for HTMLDocument. In your code, you regard a HTML.Tag as a AttributeSet. Apparently this is not the absolute truth. May be I'm wrong, then one may correct me.
    My suggest�on is to use string concatenation to make the HTML for the link and then use HTMLEditorKit.read to put this HTML into the HTMLDocument on caret position.
    import java.awt.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.text.*;
    public class JEditorPaneSample {
      private static void createAndShowGUI() {
        JFrame frame = new JFrame("FrameDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JEditorPane jeditorpane = new JEditorPane();
        jeditorpane.setContentType("text/html");
        jeditorpane.setText("<p>Hello World</p>");
    //insert a link on caret position
    String link = "mw/client/cd/plytacd.html";
    String htmlstring = "<a href=\"";
    htmlstring += link + "\">";
    htmlstring += "some link" + "</a>";
    try {
      jeditorpane.getEditorKit().read(new StringReader(htmlstring), jeditorpane.getDocument(), jeditorpane.getCaretPosition());
    } catch (BadLocationException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
        System.out.println(jeditorpane.getText());
        frame.getContentPane().add(jeditorpane, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
      public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
          public void run() {
            createAndShowGUI();
    }greetings
    Axel

  • Action links in JEditorPane like in Eclipse Editor

    Hi! I'm desperately looking for help on this topic:
    How to display a sort of link in a JEditorPane whose action is not to open a browser page but to display something in another JEditorPane?
    I think it must be the same type of action as in Eclipse Editor, where you can control-click on a function name and instantly see its declaration.
    Any ideas?
    Thanks!

    Problem is I need to pass the values of the prompts on the dashboard so that the analysis I navigate to is automatically filtered. This happens automatically with action links.
    For Example:
    Dashboard prompt: Category: Open
    Narrative Report
    # of Items 4
    Clicking on 4 should navigate to a list report that shows the 4 # of items
    Category Item
    Open Item1
    Open Item2
    Open Item3
    Open Item4

  • Alerts for metro ethernet link

    Hi,
    Kindly let me know " How to enable alerts for metro ethernet link"
    Thanks..

    Hello Gureshi,
    they are probably referring to OAM, CFM and other mechanisms to detect link or service failure in metro ethernet scenarios
    see
    http://www.cisco.com/en/US/docs/switches/metro/me3400e/software/release/12.2_52_se/configuration/guide/swoam.html
    Hope to help
    Giuseppe

  • JEditorPane.setPage(URL url), then I want to clean up HTML, how?

    According to http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4695909
    the problem with the inconsistent ArrayIndexOutOfBoundsException that
    I have been getting whenever I would go to a particular URL to put
    into JEditorPane using setPage() - this may also be due to JEditorPane
    containing HTML which contains a <META> tag and/or <!-- comment tag --
    . I created a class SimpleHTMLRenderableEditorPane which extendsJEditorPane, based upon code I found in the aformentioned bug link
    which should auto-strip out "bad tags":
    * SimpleHTMLRenderableEditorPane.java
    * Created on March 13, 2007, 3:39 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package com.ppowell.tools.ObjectTools.SwingTools;
    import javax.swing.JEditorPane;
    * A safer version of {@link javax.swing.JEditorPane}
    * @author Phil Powell
    * @version JDK 1.6.0
    public class SimpleHTMLRenderableEditorPane extends JEditorPane {
        //--------------------------- --* CONSTRUCTORS *--
        // <editor-fold defaultstate="collapsed" desc=" Constructors
    ">
        /** Creates a new instance of SimpleHTMLRenderableEditorPane */
        public SimpleHTMLRenderableEditorPane() {
            super();
        // </editor-fold>
        //----------------------- --* GETTER/SETTER METHODS *--
        // <editor-fold defaultstate="collapsed" desc=" Getter/Setter
    Methods ">
         * Overloaded to fix HTML rendering bug Bug ID: 4695909.
         * @param text
        public void setText(String text) {
            // Workaround for bug Bug ID: 4695909 in java 1.4
            // JEditorPane does not handle the META tag in the html HEAD
            if (isJava14() && "text/
    html".equalsIgnoreCase(getContentType())) {
                text = stripMetaTag(text);
            super.setText(text);
        // </editor-fold>
        //--------------------------- --* OTHER METHODS *--
        // <editor-fold defaultstate="collapsed" desc=" Methods ">
         * Clean HTML to remove things like <script>, <style>, <object>,
    <embed>, and <!-- -->
         * Based upon <a href="http://bugs.sun.com/bugdatabase/view_bug.do?
    bug_id=4695909">bug report</a>
        public void cleanHTML() {
            try {
                String html = getText();
                if (html != null && !html.equals("")) {
                    String[] patternArray = {
                        "<script[^>]*>[^<]*(</script>)?",
                        "<style[^>]*>[^<]*(</style>)?>",
                        "<object[^>]*>[^<]*(</object>)?>",
                        "<embed[^>]*>[^<]*(</embed>)?>",
                        "<!\\-\\-.*\\-\\->"
                    for (int i = 0; i < patternArray.length; i++) {
                        html = html.replaceAll(patternArray, "");
    setText(html);
    } catch (Exception e) {} // DO NOTHING
    * Determine if java version is 1.4.
    * @return true if java version is 1.4.x....
    private boolean isJava14() {
    String version = System.getProperty("java.version");
    return version.startsWith("1.4");
    * Workaround for Bug ID: 4695909 in java 1.4, fixed in 1.5
    * JEditorPane fails to display HTML BODY when META
    * tag included in HEAD section.
    * <html>
    * <head>
    * <META http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    * </head>
    * <body>
    * @param text html to strip.
    * @return same HTML text w/o the META tag.
    private String stripMetaTag(String text) {
    // String used for searching, comparison and indexing
    String textUpperCase = text.toUpperCase();
    int indexHead = textUpperCase.indexOf("<META ");
    int indexMeta = textUpperCase.indexOf("<META ");
    int indexBody = textUpperCase.indexOf("<BODY ");
    // Not found or meta not inside the head nothing to strip...
    if (indexMeta == -1 || indexMeta > indexHead && indexMeta <
    indexBody) {
    return text;
    // Find end of meta tag text.
    int indexHeadEnd = textUpperCase.indexOf(">", indexMeta);
    // Strip meta tag text
    return text.substring(0, indexMeta-1) +
    text.substring(indexHeadEnd+1);
    // </editor-fold>
    However, upon running the following line:
    SimpleBrowser.this.browser.cleanHTML();I spawn the following exception:
    Exception in thread "Thread-2" java.lang.RuntimeException: Must insert
    new content into body element-
            at javax.swing.text.html.HTMLDocument
    $HTMLReader.generateEndsSpecsForMidInsert(HTMLDocument.java:1961)
            at javax.swing.text.html.HTMLDocument
    $HTMLReader.<init>(HTMLDocument.java:1908)
            at javax.swing.text.html.HTMLDocument
    $HTMLReader.<init>(HTMLDocument.java:1782)
            at javax.swing.text.html.HTMLDocument
    $HTMLReader.<init>(HTMLDocument.java:1777)
            at
    javax.swing.text.html.HTMLDocument.getReader(HTMLDocument.java:137)
            at javax.swing.text.html.HTMLEditorKit.read(HTMLEditorKit.java:
    228)
            at javax.swing.JEditorPane.read(JEditorPane.java:556)
            at javax.swing.JEditorPane$PageLoader.run(JEditorPane.java:
    647)What should I do at this point?
    Thanks
    Phil

    Transfer all purchases from the iPad to iTunes on your computer, backup the iPad and then sync one last time.
    Then go to Settings>General>Reset>Erase all content and Settings to completely erase the iPad.
    Connect the new iPad to your computer and launch iTunes, restore from the backup of the old iPad and then sync with iTunes. You should be prompted to restore from the backup when you connect the new iPad to your computer's iTunes, but you can select it on your own as well.
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup
    http://support.apple.com/kb/HT1766

  • Cisco Prime Infrastructure 2.1 not send email alert when link down

    Hello everyone
     I use PI to monitor 1 switch and 1 firewall . When a link up/down on switch , PI immediately sends an email alert .
    But when a link up/down on FW , PI not send any email alert . PI knows link up/down on a FW is a critical alarm ( it's show up on "Alarm Browser") , but not send email.
    I enable all SNMP trap on FW , i tested that event on SolarWinds and it immediately sends an email alert . So there is no problem about FW config

    Causes of Errdisable
    This feature was first implemented to handle special collision situations in which the switch detected excessive or late collisions on a port. Excessive collisions occur when a frame is dropped because the switch encounters 16 collisions in a row. Late collisions occur after every device on the wire should have recognized that the wire was in use. Possible causes of these types of errors include:
    A cable that is out of specification (either too long, the wrong type, or defective)
    A bad network interface card (NIC) card (with physical problems or driver problems)
    A port duplex misconfiguration
    A port duplex misconfiguration is a common cause of the errors because of failures to negotiate the speed and duplex properly between two directly connected devices (for example, a NIC that connects to a switch). Only half-duplex connections should ever have collisions in a LAN. Because of the carrier sense multiple access (CSMA) nature of Ethernet, collisions are normal for half duplex, as long as the collisions do not exceed a small percentage of traffic.
    There are various reasons for the interface to go into errdisable. The reason can be:
    Duplex mismatch
    Port channel misconfiguration
    BPDU guard violation
    UniDirectional Link Detection (UDLD) condition
    Late-collision detection
    Link-flap detection
    Security violation
    Port Aggregation Protocol (PAgP) flap
    Layer 2 Tunneling Protocol (L2TP) guard
    DHCP snooping rate-limit
    Incorrect GBIC / Small Form-Factor Pluggable (SFP) module or cable
    Address Resolution Protocol (ARP) inspection
    Inline power
    Note: Error-disable detection is enabled for all of these reasons by default. In order to disable error-disable detection, use the no errdisable detect cause command. The show errdisable detect command displays the error-disable detection status.

  • In Pages 5, Maverick, How do I stop automatic conversation of URLs to hyperlinks and seeing them underlined

    There used to be a preference setting in Pages.  Now it seems gone in Pages 5.   So how do I stop automatic conversation of URLs to hyperlinks and seeing them underlined in text.  Sometimes I want it, but not always.

    The preference setting to turn off links is gone. When you enter content that triggers link detection, a link character style gets applied. Right-click on the link, choose Edit Link from the menu, and then Remove.
    To prevent Pages from automatically detecting links, visit Edit > Substitutions > and deselect Smart Links.

  • SLES 10 SP3 Crash and reboot

    I'm using SLES 10 SP3 for all my transaction servers and database servers. This Morning (7.40 West Indonesian Time) I found my database server just restarted (from /var/log/messages).
    I'm confused, because kernel crash message in /var/log/messages related to NFS and Samba.
    Here is sample of my syslog message :
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: server not responding
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: No response for cmd 50 mid 47258
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: server not responding
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: server not responding
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: Send error in SETFSUnixInfo = -11
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: No response for cmd 50 mid 47259
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: Send error in SETFSUnixInfo = -11
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: No response for cmd 50 mid 47260
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: Send error in SETFSUnixInfo = -11
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: No response for cmd 50 mid 47257
    Oct 22 07:07:11 cygnus kernel: CIFS VFS: Send error in SETFSUnixInfo = -11
    Oct 22 07:07:12 cygnus kernel: martian source 255.255.255.255 from 10.100.249.2, on dev vlan50
    Oct 22 07:07:12 cygnus kernel: ll header: ff:ff:ff:ff:ff:ff:00:0c:42:ea:50:a2:08:00
    Oct 22 07:07:15 cygnus kernel: CIFS VFS: No response for cmd 162 mid 47256
    Oct 22 07:07:15 cygnus kernel: scheduling while atomic: cmahostd/0xffff8001/5937
    Oct 22 07:07:15 cygnus kernel:
    Oct 22 07:07:15 cygnus kernel: Call Trace: <ffffffff802eea75>{__sched_text_start+125}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884c6dad>{:cifs:wait_for_response+182} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884c76a9>{:cifs:SendReceive2+1237} <ffffffff884cd9b2>{:cifs:CIFS_SessSetup+1405}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b923e>{:cifs:cifs_setup_session+300} <ffffffff8013d754>{del_timer_sync+12}
    Oct 22 07:07:15 cygnus kernel: <ffffffff801db45c>{find_nls+41} <ffffffff884aec3e>{:cifs:smb_init+457}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}<1 >Unable to handle kernel paging request at 00000000bd022aa0 RIP:
    Oct 22 07:07:15 cygnus kernel: <ffffffff8012cb5b>{try_to_wake_up+53}
    Oct 22 07:07:15 cygnus kernel: PGD 0
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+460} <0>Oops: 0000 [1] SMP
    Oct 22 07:07:15 cygnus kernel:
    Oct 22 07:07:15 cygnus kernel: <0>last sysfs file: /devices/pci0000:00/0000:00:1c.2/0000:04:00.1/irq
    Oct 22 07:07:15 cygnus kernel: CPU 2
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563}Modules linked in: ipt_MASQUERADE nls_cp850 smbfs<ffffffff8014892e>{autoremove_wake_function+0 } ip6t_REJECT ipt_REJECT ipt_LOG xt_limit xt_state ip6table_mangle
    Oct 22 07:07:15 cygnus kernel: iptable_mangle ip6table_filter ip6_tables binfmt_misc st sr_mod ide_disk ide_cd cdrom joydev xt_tcpudp<ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnix Info+96} ipt_multiport iptable_nat ip_nat ip_conntrack nfnetlink iptable_filter ip_tables x_tables fuse ntfs<ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+45 8} usb_storage ide_core af_packet nls_utf8 cifs
    Oct 22 07:07:15 cygnus kernel: softdog mptctl mptbase sg vboxpci vboxnetadp vboxnetflt hpilo vboxdrv bnx2i scsi_transport_iscsi cnic 8021q<ffffffff884baa90>{:cifs:reset_cifs_unix_caps +460} bonding ipv6 dock button battery ac apparmor loop usbhid uhci_hcd ehci_hcd usbcore bnx2 ext3 jbd scsi_dh_alua scsi_dh_hp_sw scsi_dh_rdac scsi_dh_emc dm_round_robin dm_multipath scsi_dh dm_snapshot edd dm_mod fan thermal processor cciss sd_mod scsi_mod
    Oct 22 07:07:15 cygnus kernel: Pid: 9619, comm: cifsd Tainted: GF U 2.6.16.60-0.54.5-smp #1
    Oct 22 07:07:15 cygnus kernel: RIP: 0010:[<ffffffff8012cb5b>] <ffffffff8012cb5b>{try_to_wake_up+53}
    Oct 22 07:07:15 cygnus kernel: RSP: 0018:ffff810536e7ddd8 EFLAGS: 00010096
    Oct 22 07:07:15 cygnus kernel: RAX: 0000000027986310 RBX: ffffffff8042f700 RCX: 0000000000000092
    Oct 22 07:07:15 cygnus kernel: RDX: 0000000000000000 RSI: 000000000000000f RDI: ffff8108ab48e7d0
    Oct 22 07:07:15 cygnus kernel: RBP: ffff810536e7de58 R08: 0000000000001ae0 R09: 000000000000fa53
    Oct 22 07:07:15 cygnus kernel: R10: 0000000000007d29 R11: ffff81080ac8fdc0 R12: ffff8108ab48e7d0
    Oct 22 07:07:15 cygnus kernel: R13: ffffffff8042f700 R14: 000000000000000f R15: ffff8106759f6000
    Oct 22 07:07:15 cygnus kernel: FS: 0000000000000000(0000) GS:ffff8108ff57eec0(0000) knlGS:0000000000000000
    Oct 22 07:07:15 cygnus kernel: CS: 0010 DS: 0018 ES: 0018 CR0: 000000008005003b
    Oct 22 07:07:15 cygnus kernel: CR2: 00000000bd022aa0 CR3: 0000000077d95000 CR4: 00000000000006e0
    Oct 22 07:07:15 cygnus kernel: Process cifsd (pid: 9619, threadinfo ffff810536e7c000, task ffff810138cf5080)
    Oct 22 07:07:15 cygnus kernel: Stack: 00000000000000d0 000000004959e140 0000000000000061 ffffffff80164839
    Oct 22 07:07:15 cygnus kernel: 0000000000000002 000000028012c2eb ffff8106759f613e 0000000000000000
    Oct 22 07:07:15 cygnus kernel: 0000000000000004 0000000000000296
    Oct 22 07:07:15 cygnus kernel: Call Trace: <ffffffff80164839>{mempool_alloc+49}<ffffffff884ae ca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0}<fff fffff884bdaa4>{:cifs:cifs_demultiplex_thread+2137}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884bd24b>{:cifs:cifs_demultiplex_thread+0 }<ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff80148525>{keventd_create_kthread+0} <ffffffff801487ed>{kthread+236}<ffffffff884baa90>{ :cifs:reset_cifs_unix_caps+460}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8010bea6>{child_rip+8} <ffffffff80148525>{keventd_create_kthread+0}
    Oct 22 07:07:15 cygnus kernel:
    Oct 22 07:07:15 cygnus kernel: <ffffffff80148701>{kthread+0} <ffffffff8010be9e>{child_rip+0}<ffffffff884aeca8>{ :cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: Code: 48 8b 04 c5 20
    Oct 22 07:07:15 cygnus kernel: 12 3f 80 4c 03 68 08 4c 89 ef e8 54 43 1c 00
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96}< 1>RIP
    Oct 22 07:07:15 cygnus kernel: <ffffffff8012cb5b>{try_to_wake_up+53} RSP <ffff810536e7ddd8>
    Oct 22 07:07:15 cygnus kernel: CR2: 00000000bd022aa0
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 } <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0} <ffffffff884aeca8>{:cifs:smb_init+563}
    Oct 22 07:07:15 cygnus kernel: <ffffffff8014892e>{autoremove_wake_function+0} <ffffffff884b02f8>{:cifs:CIFSSMBSetFSUnixInfo+96 }
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b0642>{:cifs:CIFSSMBQFSUnixInfo+458} <ffffffff884baa90>{:cifs:reset_cifs_unix_caps+46 0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884aeca8>{:cifs:smb_init+563} <ffffffff8014892e>{autoremove_wake_function+0}
    Oct 22 07:07:15 cygnus kernel: <ffffffff884b00eb>{:cifs:CIFSSMBQFSPosixInfo+96} <ffffffff884ae48a>{:cifs:cifs_statfs+155}
    Oct 22 07:07:15 cygnus kernel: <ffffffff80186044>{vfs_statfs+108} <ffffffff801afc98>{compat_sys_statfs+63}
    Oct 22 07:07:15 cygnus kernel: <ffffffff801fbc97>{_atomic_dec_and_lock+51} <ffffffff8019d4cc>{dput+64}
    Oct 22 07:07:15 cygnus kernel: <ffffffff801865ec>{sys_close+143} <ffffffff80122d2c>{sysenter_do_call+27}
    Oct 22 07:07:15 cygnus kernel: <1>Unable to handle kernel paging request at 00000000bd022aa0 RIP:
    Oct 22 07:07:15 cygnus kernel: <ffffffff802ef4c9>{__sched_text_start+2769}
    Oct 22 07:07:15 cygnus kernel: PGD 77268f067 PUD 0
    Oct 22 07:07:15 cygnus kernel: Oops: 0000 [2] SMP
    Oct 22 07:07:15 cygnus kernel: last sysfs file: /devices/pci0000:00/0000:00:1c.2/0000:04:00.1/irq
    Oct 22 07:07:15 cygnus kernel: CPU 6
    Oct 22 07:07:15 cygnus kernel: Modules linked in: ipt_MASQUERADE nls_cp850 smbfs ip6t_REJECT ipt_REJECT ipt_LOG xt_limit xt_state ip6table_mangle iptable_mangle ip6table_filter ip6_tables binfmt_misc st sr_mod ide_disk ide_cd cdrom joydev xt_tcpudp ipt_multiport iptable_nat ip_nat ip_conntrack nfnetlink iptable_filter ip_tables x_tables fuse ntfs usb_storage ide_core af_packet nls_utf8 cifs softdog mptctl mptbase sg vboxpci vboxnetadp vboxnetflt hpilo vboxdrv bnx2i scsi_transport_iscsi cnic 8021q bonding ipv6 dock button battery ac apparmor loop usbhid uhci_hcd ehci_hcd usbcore bnx2 ext3 jbd scsi_dh_alua scsi_dh_hp_sw scsi_dh_rdac scsi_dh_emc dm_round_robin dm_multipath scsi_dh dm_snapshot edd dm_mod fan thermal processor cciss sd_mod scsi_mod
    Oct 22 07:07:15 cygnus kernel: Pid: 5937, comm: cmahostd Tainted: GF U 2.6.16.60-0.54.5-smp #1
    Oct 22 07:07:15 cygnus kernel: RIP: 0010:[<ffffffff802ef4c9>] <ffffffff802ef4c9>{__sched_text_start+2769}
    Oct 22 07:07:15 cygnus kernel: RSP: 0018:ffff8107726ac4d8 EFLAGS: 00210083
    Oct 22 07:07:15 cygnus kernel: RAX: ffff8107726ac000 RBX: ffff8108ab48e7d0 RCX: ffff8108ab48e7d0
    Oct 22 07:07:15 cygnus kernel: RDX: 0000000027986310 RSI: 0000000000000000 RDI: ffff81000107d800
    Oct 22 07:07:15 cygnus kernel: RBP: ffff8107726ac598 R08: ffff8108aebc8000 R09: 0000000000000001
    Oct 22 07:07:15 cygnus kernel: R10: 0000000000200286 R11: 0000000000000000 R12: ffff8108ab48e7d0
    Oct 22 07:07:15 cygnus kernel: R13: 00000000000009c4 R14: ffff8108ab48e808 R15: 0000000000000000
    Oct 22 07:07:15 cygnus kernel: FS: 0000000000000000(0000) GS:ffff8108ff62dbc0(0063) knlGS:00000000f7d838c0
    Oct 22 07:07:15 cygnus kernel: CS: 0010 DS: 002b ES: 002b CR0: 000000008005003b
    Oct 22 07:07:15 cygnus kernel: CR2: 00000000bd022aa0 CR3: 000000077268d000 CR4: 00000000000006e0
    Oct 22 07:40:15 cygnus syslog-ng[5044]: syslog-ng version 1.6.8 starting
    Oct 22 07:40:15 cygnus auditd[5194]: Init complete, auditd 1.2.9 listening for events
    Oct 22 07:40:15 cygnus bnx2i-daemon[5264]: bnx2id daemon started.
    Oct 22 07:40:15 cygnus rcpowersaved: CPU frequency scaling is not supported by your processor.
    Oct 22 07:40:15 cygnus rcpowersaved: enter 'CPUFREQ_ENABLED=no' in /etc/powersave/cpufreq to avoid this warning.
    Oct 22 07:40:15 cygnus rcpowersaved: Cannot load cpufreq governors - No cpufreq driver available
    Oct 22 07:40:16 cygnus sshd[5389]: Server listening on 0.0.0.0 port 22.
    Oct 22 07:40:16 cygnus rcpowersaved: s2ram does not know your machine. See 's2ram -i' for details. (127)
    Oct 22 07:40:16 cygnus rcpowersaved: Use SUSPEND2RAM_FORCE=yes to override this detection.
    Oct 22 07:40:16 cygnus [powersave-set_disk_settings][5454]: WARNING: could not retrieve list of disks from HAL:
    Oct 22 07:40:16 cygnus vcagentd: Type: 4 - Event ID: 1073741884
    Oct 22 07:40:18 cygnus modprobe: FATAL: Error running install command for binfmt_misc
    Oct 22 07:40:18 cygnus ntpd[5527]: ntpd [email protected] Sat Sep 5 11:15:41 UTC 2009 (1)
    Oct 22 07:40:18 cygnus ntpd[5539]: precision = 1.000 usec
    Oct 22 07:40:18 cygnus ntpd[5539]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #0 wildcard, 0.0.0.0#123 Disabled
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #1 lo, 127.0.0.1#123 Enabled
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #2 lo, 127.0.0.2#123 Enabled
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #3 bond0, 192.168.5.73#123 Disabled
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #4 vlan40, 192.168.3.2#123 Disabled
    Oct 22 07:40:18 cygnus ntpd[5539]: Listening on interface #5 vlan50, 172.0.0.5#123 Disabled
    Oct 22 07:40:18 cygnus ntpd[5539]: kernel time sync status 0040
    Oct 22 07:40:18 cygnus ntpd[5539]: frequency initialized 12.181 PPM from /var/lib/ntp/drift/ntp.drift
    Oct 22 07:40:18 cygnus /usr/sbin/cron[5564]: (CRON) STARTUP (V5.0)
    Oct 22 07:40:20 cygnus kernel: klogd 1.4.1, log source = /proc/kmsg started.
    Oct 22 07:40:20 cygnus syslog-ng[5044]: Changing permissions on special file /dev/xconsole
    Oct 22 07:40:20 cygnus syslog-ng[5044]: Changing permissions on special file /dev/tty10
    Oct 22 07:40:20 cygnus kernel: JBD: barrier-based sync failed on dm-3 - disabling barriers
    Oct 22 07:40:20 cygnus kernel: AppArmor: AppArmor initialized
    Oct 22 07:40:20 cygnus kernel: audit(1413938407.210:2): info="AppArmor initialized" pid=3465
    Oct 22 07:40:20 cygnus kernel: IA-32 Microcode Update Driver: v1.14 <[email protected]>
    Oct 22 07:40:20 cygnus kernel: ACPI: Power Button (FF) [PWRF]
    Oct 22 07:40:20 cygnus kernel: IA-32 Microcode Update Driver v1.14 unregistered
    Oct 22 07:40:20 cygnus kernel: No dock devices found.
    Oct 22 07:40:20 cygnus kernel: floppy0: no floppy controllers found
    Oct 22 07:40:20 cygnus kernel: Ethernet Channel Bonding Driver: v3.2.5 (March 21, 2008)
    Oct 22 07:40:20 cygnus kernel: bonding: Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.
    Oct 22 07:40:20 cygnus kernel: bonding: bond0: setting mode to active-backup (1).
    Oct 22 07:40:20 cygnus kernel: bonding: bond0: Setting MII monitoring interval to 100.
    Oct 22 07:40:20 cygnus kernel: bnx2: eth0: using MSI
    Oct 22 07:40:20 cygnus kernel: bonding: bond0: enslaving eth0 as a backup interface with a down link.
    Oct 22 07:40:20 cygnus kernel: bnx2: eth2: using MSI
    Oct 22 07:40:20 cygnus kernel: bonding: bond0: enslaving eth2 as a backup interface with a down link.
    Oct 22 07:40:20 cygnus kernel: bonding: bond1 is being created...
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: setting mode to balance-tlb (5).
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: Setting MII monitoring interval to 100.
    Oct 22 07:40:20 cygnus kernel: bnx2: eth1: using MSI
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: enslaving eth1 as an active interface with a down link.
    Oct 22 07:40:20 cygnus kernel: bnx2: eth3: using MSI
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: enslaving eth3 as an active interface with a down link.
    Oct 22 07:40:20 cygnus kernel: 802.1Q VLAN Support v1.8 Ben Greear <[email protected]>
    Oct 22 07:40:20 cygnus kernel: All bugs added by David S. Miller <[email protected]>
    Oct 22 07:40:20 cygnus kernel: vlan40: add 01:00:5e:00:00:01 mcast address to master interface
    Oct 22 07:40:20 cygnus kernel: vlan50: add 01:00:5e:00:00:01 mcast address to master interface
    Oct 22 07:40:20 cygnus kernel: cnic: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: Broadcom NetXtreme II CNIC Driver cnic v1.9.13b (Dec 16, 2009)
    Oct 22 07:40:20 cygnus kernel: cnic: Added CNIC device: eth0
    Oct 22 07:40:20 cygnus kernel: cnic: Added CNIC device: eth1
    Oct 22 07:40:20 cygnus kernel: cnic: Added CNIC device: eth2
    Oct 22 07:40:20 cygnus kernel: cnic: Added CNIC device: eth3
    Oct 22 07:40:20 cygnus kernel: Loading iSCSI transport class v2.0-724.
    Oct 22 07:40:20 cygnus kernel: bnx2i: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: bnx2i: no version for "cnic_register_driver" found: kernel tainted.
    Oct 22 07:40:20 cygnus kernel: Broadcom NetXtreme II iSCSI Driver bnx2i v1.8.12g (Apr 12, 2010)
    Oct 22 07:40:20 cygnus kernel: iscsi: registered transport (bcm570x-040001)
    Oct 22 07:40:20 cygnus kernel: bnx2i: netif=eth3, iscsi=bcm570x-040001
    Oct 22 07:40:20 cygnus kernel: bnx2i [04:00.01]: ISCSI_INIT passed
    Oct 22 07:40:20 cygnus kernel: iscsi: registered transport (bcm570x-040000)
    Oct 22 07:40:20 cygnus kernel: bnx2i: netif=eth2, iscsi=bcm570x-040000
    Oct 22 07:40:20 cygnus kernel: bnx2i [04:00.00]: ISCSI_INIT passed
    Oct 22 07:40:20 cygnus kernel: iscsi: registered transport (bcm570x-030001)
    Oct 22 07:40:20 cygnus kernel: bnx2i: netif=eth1, iscsi=bcm570x-030001
    Oct 22 07:40:20 cygnus kernel: bnx2i [03:00.01]: ISCSI_INIT passed
    Oct 22 07:40:20 cygnus kernel: audit(1413938415.718:3): audit_pid=5194 old=0 by auid=4294967295
    Oct 22 07:40:20 cygnus kernel: iscsi: registered transport (bcm570x-030000)
    Oct 22 07:40:20 cygnus kernel: bnx2i: netif=eth0, iscsi=bcm570x-030000
    Oct 22 07:40:20 cygnus kernel: bnx2i [03:00.00]: ISCSI_INIT passed
    Oct 22 07:40:20 cygnus kernel: vboxdrv: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: vboxdrv: Found 8 processor cores.
    Oct 22 07:40:20 cygnus kernel: VBoxDrv: dbg - g_abExecMemory=ffffffff88256380
    Oct 22 07:40:20 cygnus kernel: vboxdrv: fAsync=0 offMin=0x8f6 offMax=0x10ce8
    Oct 22 07:40:20 cygnus kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    Oct 22 07:40:20 cygnus kernel: vboxdrv: Successfully loaded version 4.1.8 (interface 0x00190000).
    Oct 22 07:40:20 cygnus kernel: hpilo: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: ACPI: PCI Interrupt 0000:02:00.2[B] -> GSI 17 (level, low) -> IRQ 138
    Oct 22 07:40:20 cygnus kernel: PCI: Setting latency timer of device 0000:02:00.2 to 64
    Oct 22 07:40:20 cygnus kernel: vboxnetflt: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: vboxnetadp: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: vboxpci: module not supported by Novell, setting U taint flag.
    Oct 22 07:40:20 cygnus kernel: vboxpci: pci-stub module not available, cannot detach PCI devices
    Oct 22 07:40:20 cygnus kernel: vboxpci: IOMMU not found (not compiled)
    Oct 22 07:40:20 cygnus kernel: bnx2: eth3 NIC Copper Link is Up, 1000 Mbps full duplex
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: link status definitely up for interface eth3.
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: making interface eth3 the new active one.
    Oct 22 07:40:20 cygnus kernel: bonding: bond1: first active interface up!
    Oct 22 07:40:27 cygnus kernel: bnx2: eth0 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:27 cygnus kernel: bonding: bond0: link status definitely up for interface eth0.
    Oct 22 07:40:27 cygnus kernel: bonding: bond0: making interface eth0 the new active one.
    Oct 22 07:40:27 cygnus kernel: bonding: bond0: first active interface up!
    Oct 22 07:40:30 cygnus kernel: bnx2: eth1 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:30 cygnus kernel: bonding: bond1: link status definitely up for interface eth1.
    Oct 22 07:40:32 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:32 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Oct 22 07:40:32 cygnus kernel: bnx2: eth2 NIC Copper Link is Down
    Oct 22 07:40:32 cygnus kernel: bonding: bond0: link status definitely down for interface eth2, disabling it
    Oct 22 07:40:34 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:34 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Oct 22 07:40:35 cygnus kernel: bnx2: eth2 NIC Copper Link is Down
    Oct 22 07:40:35 cygnus kernel: bonding: bond0: link status definitely down for interface eth2, disabling it
    Oct 22 07:40:35 cygnus hpasmlited[5722]: hpDeferSPDThread: Starting thread to collect DIMM SPD Data.
    Oct 22 07:40:36 cygnus kernel: Fusion MPT base driver 3.04.07_suse
    Oct 22 07:40:36 cygnus kernel: Copyright (c) 1999-2008 LSI Corporation
    Oct 22 07:40:36 cygnus kernel: Fusion MPT misc device (ioctl) driver 3.04.07_suse
    Oct 22 07:40:36 cygnus kernel: mptctl: Registered with Fusion MPT base driver
    Oct 22 07:40:36 cygnus kernel: mptctl: /dev/mptctl @ (major,minor=10,220)
    Oct 22 07:40:36 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:36 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Oct 22 07:40:37 cygnus kernel: bnx2: eth2 NIC Copper Link is Down
    Oct 22 07:40:37 cygnus kernel: bonding: bond0: link status definitely down for interface eth2, disabling it
    Oct 22 07:40:39 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:39 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Oct 22 07:40:39 cygnus kernel: ipmi message handler version 38.2
    Oct 22 07:40:39 cygnus kernel: IPMI Watchdog: driver initialized
    Oct 22 07:40:39 cygnus hpasrd[7367]: Starting with poll 1 and timeout 600.
    Oct 22 07:40:39 cygnus hpasrd[7367]: Setting the watchdog timer.
    Oct 22 07:40:39 cygnus kernel: Software Watchdog Timer: 0.07 initialized. soft_noboot=0 soft_margin=60 sec (nowayout= 0)
    Oct 22 07:40:39 cygnus hpasrd[7367]: Preferred watchdog driver not found.
    Oct 22 07:40:39 cygnus hpasrd[7367]: Found iLO memory at 0xf1ff0000.
    Oct 22 07:40:39 cygnus hpasrd[7367]: Successfully mapped device.
    Oct 22 07:40:39 cygnus kernel: bnx2: eth2 NIC Copper Link is Down
    Oct 22 07:40:39 cygnus kernel: bonding: bond0: link status definitely down for interface eth2, disabling it
    Oct 22 07:40:41 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 100 Mbps full duplex
    Oct 22 07:40:41 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Oct 22 07:40:42 cygnus kernel: bnx2: eth2 NIC Copper Link is Down
    Oct 22 07:40:42 cygnus kernel: bonding: bond0: link status definitely down for interface eth2, disabling it
    Oct 22 07:40:43 cygnus kernel: bnx2: eth2 NIC Copper Link is Up, 10 Mbps full duplex
    Oct 22 07:40:43 cygnus kernel: bonding: bond0: link status definitely up for interface eth2.
    Please help me to find root cause off this problem. Is there another log that i should be checking?
    Regards

    On 22/10/2014 04:56, syahrianto wrote:
    > I'm using SLES 10 SP3 for all my transaction servers and database
    > servers.
    These forums are for Novell's Open Enterprise Server (OES) product which
    is an add-on for SUSE Linux Enterprise Server.
    If you are using "regular" SLES then you should repost in one of SUSE's
    Forums for SLES @
    https://forums.suse.com/forumdisplay...erprise-Server
    HTH.
    Simon
    Novell Knowledge Partner
    If you find this post helpful and are logged into the web interface,
    please show your appreciation and click on the star below. Thanks.

  • Lenovo Flex 10 touchscreen stops working after 1 hour of use.

    Just bought a new Lenovo Flex 10 from a retail and it works perfectly except that after an hour of use the touchscreen stops working, the computer still works ok, but only with the mousepad. The notebook came with Windows 8.1, and I haven't installed any program on it. I need an urgent response please, since i've been looking for days in the community and other support pages, and still can't get a satisfactory answer and the period to get the a refund are about to expire.
    Thanks in advance.

    hi riglesias,
    Welcome to the Lenovo Forums.
    Once the Touchscreen stops responding, can you check the following:
    1. Open System Properties and see if the Touch functionality is still there 
      - Link to picture (Touchscreen feature is not detected)
      - Link to picture (Touchscreen feature is detected)
    If the Touchscreen feature is detected, proceed to Step 2.
    2. Press the Windows key‌ +R, type devmgmt.msc and press Enter. On the Device Manager, navigate to the Human Interface Devices section and uninstall anything that says HID-compliant device (this is the driver that controls the touchscreen). When finished, reboot the system and observe.
    3. If the Touchscreen is still not working, hold the Shift Key and hit the restart button inside Windows and you should be able to see the image below then try to tap on the screen to test and observe. I
    If the touch capability is still not functioning, I recommend you contact lenovo for service.
      - Link to picture
      - Support phone list
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for