search for: netconsole

Displaying 20 results from an estimated 177 matches for "netconsole".

2009 Jul 17
8
Tools to take a kernel crash dump.
Hello Everyone, We have noticed that one of our servers xen Dom0 is restarting idiopathically. Atleast, we are not able to analyze the cause. I have checked the logs but couldn''t find anything relating to it. Are there any tools such as kdump (which doesn''t seem to work on xenified kernels) for catching the kernel crash snapshot. Regards, Sree Harsha Totakura Member, Open
2010 Feb 03
0
pvops netconsole
Hi, Is netconsole supposed to work under pvops? When I try to enable it I get the following: Initialising Xen virtual ethernet driver. blkfront: xvda1: barriers enabled netconsole: local port 11111 netconsole: local IP 10.20.40.2 netconsole: interface eth1 netconsole: remote port 9514 netconsole: remote IP 10.20.50...
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
...2 files changed, 16 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-config-logging b/scripts/ovirt-config-logging index 233df67..e296ac4 100755 --- a/scripts/ovirt-config-logging +++ b/scripts/ovirt-config-logging @@ -174,6 +174,13 @@ function prompt_user { done } +function ovirt_netconsole { + augtool <<EOF +set /files/etc/sysconfig/netconsole/SYSLOGADDR $OVIRT_NETCONSOLE_SERVER +set /files/etc/sysconfig/netconsole/SYSLOGPORT $OVIRT_NETCONSOLE_PORT +EOF + ovirt_store_config /etc/sysconfig/netconsole +} # AUTO for auto-install if [ "$1" = "AUTO" ]; th...
2007 Nov 16
1
Netconsole capability in ramdisk
...SSH on such devices and start SSH automatically when the system boots so people can login. This works pretty well but sometimes a device stops to boot for no good reason. This is usually really hard to debug since we don't have any logs at all. For kernel messages, I could probably activate netconsole in the kernel. Even this is a bit tricky since we often cannot change the kernel cmd line but I could probably use klibc in the ramdisk to setup the network and then configure a dynamic netconsole. My big concern is with userland messages, though. I want to see what the ramdisk is doing, ideally...
2012 Jul 27
1
[Bridge] [PATCH 4/7] bridge: call NETDEV_RELEASE notifier in br_del_if()
When a bridge interface deletes its underlying ports, it should notify netconsole too, like what bonding interface does. Cc: "David S. Miller" <davem at davemloft.net> Signed-off-by: Cong Wang <amwang at redhat.com> --- net/bridge/br_if.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index...
2010 May 26
1
Failover testing problem and a heartbeat question
We have a setup with 15 hosts fibre attached via a switch to a common SAN. Each host has a single fibre port, the SAN has two controllers each with two ports. The SAN is exposing four OCFS2 v1.4.2 volumes. While performing a failover test, we observed 8 hosts fence and 2 reboot _without_ fencing. The OCFS2 FAQ recommends a default disk heartbeat of 31 - 61 loops for multipath io users. Our initial
2008 Feb 29
1
[PATCH] VIRTIO NET: Enable netpoll interface for netconsole logging
Add a new poll_controller handler that the netpoll interface needs. This enables netconsole logging from a kvm guest over the virtio net interface. Signed-off-by: Amit Shah <amitshah at gmx.net> --- drivers/net/virtio_net.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index fdc2367..3f3d334...
2006 Apr 27
0
Netconsole - how do I tell id a driver offers polling?
Appologies in advance if there is an obvious answer to this. I'm experimenting with netconsole. When I try to insmod the netconsole module it complains that eth0 doesn't support polling. Any idea where I can find a list of supported NICs? How can I workout if a NIC driver supports polling? Many thanks Daveh
2008 Feb 29
1
[PATCH] VIRTIO NET: Enable netpoll interface for netconsole logging
Add a new poll_controller handler that the netpoll interface needs. This enables netconsole logging from a kvm guest over the virtio net interface. Signed-off-by: Amit Shah <amitshah at gmx.net> --- drivers/net/virtio_net.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index fdc2367..3f3d334...
2010 Jan 18
1
Getting Closer (was: Fencing options)
One more follow on, The combination of kernel.panic=60 and kernel.printk=7 4 1 7 seems to have netted the culrptit: E01-netconsole.log:Jan 18 09:45:10 E01 (10,0):o2hb_write_timeout:137 ERROR: Heartbeat write timeout to device dm-12 after 60000 milliseconds E01-netconsole.log:Jan 18 09:45:10 E01 (10,0):o2hb_stop_all_regions:1517 ERROR: stopping heartbeat on all active regions. E01-netconsole.log:Jan 18 09:45:10 E01 ocfs2 is ver...
2012 Jan 12
9
Re: [PATCH] add netconsole support for xen-netfront
On Wed, Jan 11, 2012 at 04:52:36PM +0800, Zhenzhong Duan wrote: > add polling interface to xen-netfront device to support netconsole > Ian, any thoughts on the spinlock changes? > Signed-off-by: Tina.Yang <tina.yang@oracle.com> > Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> > Cc: Jeremy Fitzhardinge <jeremy@goop.org> > Signed-off-by: Zhenzhong.Duan <zhenzhong.duan@oracle.com> >...
2009 Mar 26
1
netconsole for pxelinux
Hi, I'm in the position that a network console would occasionally be very useful for me to control pxelinux. Has the possibility of adding it (next to VGA and serial) been ever discussed? I understand that it may sound somewhat contorted, but it could also serve instead of a TFTP PUT for extracting hardware info, for example... How hard would it be to add (considering gPXE as well)? --
2012 Sep 13
1
[PATCH] drm/nouveau: POST the card before GPIO initialization
...: Marcin Slusarz <marcin.slusarz at gmail.com> --- Let me tell you little story about this patch... It took me ~week to figure it out. 1) I bisected it to "drm/nouveau/gpio: port gpio to subdev interfaces", but looking at this commit I couldn't spot anything (who would...). 2) Netconsole hanged immediately on boot (I found the commit which broke netconsole and it turned out to be already known broken with patch fixing it waiting for pull). 3) Even with netconsole working, completely nothing reached netconsole across S/R - I had to add no_console_suspend on kernel command line to se...
2012 Mar 12
4
"Hard" hangs on several Intel(-chipset) boards
Hey! I''m deploying a vanilla Xen 4.1.2 installation at a hosting provider, and I''m experiencing hard hangs (i.e., the system is unresponsive to keystrokes, network is off, I/O to disk is stopped) on several of their available server packages, all based on Intel i7 CPUs and related chipsets. The failure does not seem related to a specific Xen-version (I''ve
2010 Oct 15
2
Kernel panic (asterisk 1.8.0-rc3, dahdi-linux-2.4)
...he first call normally gets through. If I start the second or third call and sometimes when I terminate the first call, the system panics (Oops text on console). After solving some difficulties (the relevant part of the Oops text scrolls out of the monitor, no serial interface), I get the text via netconsole. It seems to me, that the panic occurred in oslec (function "oslec_update"). But maybe I am wrong with this. In the oslec code there is a patch to enable MMX. After switching this off, the problem disappeared. AFAIK the cpu supports mmx. Where should I address this issue to? Is it a know...
2011 Sep 02
11
[Bug 40572] New: Nouveau drm causes failure to resume from suspend with any kernel newer than 2.6.36
https://bugs.freedesktop.org/show_bug.cgi?id=40572 Summary: Nouveau drm causes failure to resume from suspend with any kernel newer than 2.6.36 Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component:
2012 Jul 25
9
Regression in kernel 3.5 as Dom0 regarding PCI Passthrough?!
...that i have no full stacktrace, all i have is a "screenshot" which i uploaded here: http://imageshack.us/photo/my-images/52/img20120724235921.jpg/ With 3.4 both issues were not there - everything worked perfectly. Tell me which debugging info you need, i may be able to re-install my netconsole to get the full stacktrace (but i had not much luck with netconsole regarding kernel panics - rarely this info gets sent before the "panic"...) Greetings Tobias
2013 Sep 17
8
[Bug 69465] New: Kernel freeze with NVA3 kernel 3.11.1 / PGRAPH][0000:01:00.0] PGRAPH TLB flush idle timeout fail
...Reporter: gorilla.maguila at gmail.com Hardware: x86-64 (AMD64) Status: NEW Version: unspecified Component: Driver/nouveau Product: xorg Created attachment 85974 --> https://bugs.freedesktop.org/attachment.cgi?id=85974&action=edit netconsole.log Kernel freezes randomly under normal usage. Pressing the reset button is required. The hangs occurs randomly, sometimes browsing with chrome, sometimes opening konsole, sometimes using eclipse. As nothing works after kernel hang, attached is the dmesg output via netconsole. I'm running...
2006 Jul 31
1
x86_64 reproducible server PANIC with latest kernel
...use it has some fixes, but the result is the same as with 2.6.9-34.0.2-largesmp . The panic is not triggered by memory overcommitment, when the crash occurs, there is still 8GB free memory and the swap space is untouched. This is the start of the dmesg output which I could capture from a "netconsole": NMI Watchdog detected LOCKUP, CPU=6, registers: CPU 6 Modules linked in: vmnet(U) vmmon(U) netconsole netdump ppdev nfs nfsd exportfs lockd nfs_acl md5 ipv6 parport_pc lp parport autofs4 w83627hf i2c_sensor i2c_isa i2c_dev i2c_core sunrpc ipt_REJECT ipt_state ip_conntrack iptable_filter...
2011 Dec 05
3
xen 4.0.1/w 2.6.32 swapper: page allocation failure
hi xen 4.0.1 w/2.6.32.41 Last week dom0 experienced an hard crash and box need to be restarted manually (despite kernel.panic=20). Serial console was not setup, only netconsole. No relevant entries through netconsole, but analyzing logs I see some crashes twenty minutes before fatal hang. Dec 2 01:29:39 xenhost-rack1 kernel: [4437064.011963] Call Trace: Dec 2 01:29:39 xenhost-rack1 kernel: [4437064.011964] <IRQ> [<ffffffff810e5f8e>] __alloc_pages_nodemask...