LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   "Killed" message (https://www.linuxquestions.org/questions/linux-newbie-8/killed-message-538978/)

Adversus 03-20-2007 06:15 AM

"Killed" message
 
Hi,

I'm still relatively new to all but the more superficial aspects to Linux so i chose this section for my post.

My problem (hydra is a fortran77 program):

[sgvalcke@tarf rundir]$ ./hydra_zmet
Killed

It is not simply a matter of having a huge array somewhere in the program, because I am always able to run hydra a number of times. Then (after i've run it say 20 times) i start getting the "killed" message (it appears immediately, program is terminated), and have to reboot ( :/ )in order to be able to run hydra again.

I'm not sure if the following information is helpful here, I post it anyway:

[sgvalcke@tarf rundir]$ free -m
total used free shared buffers cached
Mem: 497 437 60 0 6 185
-/+ buffers/cache: 245 252
Swap: 1023 167 856

I'm not sure what to think of the large amount of used memory, as the only app I'm running atm is firefox. I've been reading about RAM, swap, ... on this forum where the general message is: Linux loads your RAM in an intelligent manner, when it is needed for some app that app gets all the memory it needs. But why then can't i run my program anymore?

some further information:

[sgvalcke@tarf rundir]$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 4087
virtual memory (kbytes, -v) unlimited


I would really appreciate any help on this (I must be doing something wrong somewhere :)), rebooting my pc now and then just isn't working for me.

Cheers,

Adversus

hacker supreme 03-20-2007 06:24 AM

maybe it has a memory leak?
Does it allocate memory anywhere?
If it does then you may want to check that it returns it before exiting.

I'm not sure if this is the case with FORTRAN becuase i only have C and C++ experience.

Adversus 03-20-2007 08:08 AM

Hmmm, I always thought my problem was a Linux "feature", but it could be possible that it is the program itself which is causing the problems.

As as far as i know allocating in fortran was introduced in fortran 90 so there should not be any -explicit- allocating done anywhere in the (entirele written in fortran 77, but for a small piece of code in c used to swap bytes between little and big endian) code. And even for explicit allocating in fortran 90 it seems that allocated memory is automatically freed when the program terminates.

I'll google around a bit, if this is indeed a programming issue i guess I've come to the wrong place with my question :) (any help solving it or tracing the problem would still be appreciated :))

GrapefruiTgirl 03-20-2007 08:28 AM

I don't have very much experience with C/C++, and even less with Fortran, but thought I'd offer an idea maybe as a test:
Load up all sorts of stuff into memory first, and have all kinds of stuff occupying memory. Then try your program. If it runs FAR LESS times before 'killed' than it otherwise would with nothing else running, THEN try it starting frssh with absolutely NOTHING else running. If it now runs MANY more times, I guess it would be a fair assumption that excessive memory consumption/lack of free memory is preventing it from running any further.
If this was helpful even in the very least, I'm happy ;)
Best of luck!

timmeke 03-20-2007 09:11 AM

"Killed" message implies that the program gets a signal (SIGTERM, SIGHUP, SIGKILL, etc), doesn't handle/ignore it, and exits (which is the default reaction). To find out which signal is causing the problem, start off by echo'ing the command's return code:
Code:

./hydra_zmet #=> yields "killed" message
echo $?      #run this directly after the "killed" message

Unfortunately, this signal can come from many places, including you (ie if you close the terminal window the program is associated with or the shell it runs in), the kernel (ie if the program tries to access another program's memory), etc. But at least the return code should tell us which type of signal was sent (which should be > 128).

To see if it's really the amount of memory in use that's giving you trouble, try running "top" (or "top -n1" if you want to post it's output here on the forum) and check if any swapping process is running all the time. When memory becomes scarce, the system should start swapping (=putting parts of memory on the hard disk), which'll significantly decrease overall system performance.
But frankly, I doubt that memory usage is the problem.

Adversus 03-22-2007 03:57 AM

Sorry that it took so long to reply, i've had to run a lot of short instances of the program yesterday to get the killed message again, it's finally here now :p

doing the echo thing gives 137 as a result.

timmeke 03-22-2007 04:08 AM

137 = 128 + 9, so signal 9 was sent. Signal 9 is usually the SIGKILL, or hard kill, signal, which cannot be caught or ignored by the program.

However, I have never seen the system actually issue a SIGKILL on it's own, so it must either come from your program or from a call to the "kill" utility.

Assuming you're not actually killing them, the question becomes: does the program kill itself, ie when too many instances of the program are already running?

If you were issuing "kill" commands, then the "Killed" messages may come from that (please note that they may be shown with a slight delay after you issue the kill command). Or maybe some other user with root access is killing off your processes?

Adversus 03-22-2007 04:56 AM

Quote:

Assuming you're not actually killing them
I think that is a safe assumption, my schizophrenia has not been that bad lately ;)

I just tried out what was suggested earlier in this thread: filling my memory and then trying to run, I immediately received "killed". apparently from the moment I have more than 290M memory in buffers the program won't run anymore.

That means my problem, which I attributed to Linux, was probably caused by me: start an instance of the program at say 270M in buffers, then i open up 2 instances of emacs, when the running hydra_zmet terminates and i want to start up another one i get a "killed" message because my 2 newly opened emacses push my memory usage over the threshold.

I should've known that Linux wasn't to be blamed , silly me :) And thanks for taking the trouble of looking into my problem.

timmeke 03-22-2007 05:22 AM

So, instead of swapping memory when it becomes scarce, it just kills off your new processes?
I don't think this is normal/expected behaviour. Is your swapper process running? And could you look
for some settings on virtual memory?

Adversus 03-22-2007 05:43 AM

Quote:

Originally Posted by timmeke
So, instead of swapping memory when it becomes scarce, it just kills off your new processes?
I don't think this is normal/expected behaviour.

If u put it that way it does seem a little drastic.

Quote:

Is your swapper process running?
This is where my Linux-newbieness kicks in i'm afraid. The only reference to swap I found with ps aux is:

Code:

root        49  0.0  0.0    0    0 ?        SW  Mar20  0:04 [kswapd0]
Code:

And could you look for some settings on virtual memory?
I could if i knew where to look :) I don't know if this is helpful:

Code:

[sgvalcke@tarf sgvalcke]$ ulimit -a
core file size        (blocks, -c) 0
data seg size        (kbytes, -d) unlimited
file size            (blocks, -f) unlimited
max locked memory    (kbytes, -l) 32
max memory size      (kbytes, -m) unlimited
open files                    (-n) 1024
pipe size          (512 bytes, -p) 8
stack size            (kbytes, -s) 10240
cpu time            (seconds, -t) unlimited
max user processes            (-u) 4087
virtual memory        (kbytes, -v) unlimited

or this? (I've started about 18 instances of emacs, ./hydra_zmet gives "killed" now.):

Code:

[sgvalcke@tarf sgvalcke]$ vmstat -a -S M
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
 r  b  swpd  free  inact active  si  so    bi    bo  in    cs us sy id wa
 2  0      7      8    47    402    0    0    15    12  124  100 51  2 47  0


timmeke 03-22-2007 05:58 AM

Quote:

max memory size (kbytes, -m) unlimited
seems to suggest that swapping is used. Do you have a separate swap partition? And if so, how big is it? If you don't, then how much free space is left on your hard disk?

7 MB has been swapped, but no swapping (si & so) is being done. I'm no expert in this, but 7 MB of virtual memory does seem too little to me.

Adversus 03-22-2007 07:27 AM

Code:

[sgvalcke@tarf sgvalcke]$ df -a -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/hda2            112G  54G  52G  51% /
none                    0    0    0  -  /proc
none                    0    0    0  -  /sys
none                    0    0    0  -  /dev/pts
usbfs                    0    0    0  -  /proc/bus/usb
/dev/hda1              97M  35M  58M  38% /boot
none                  249M    0  249M  0% /dev/shm
none                    0    0    0  -  /proc/sys/fs/binfmt_misc
sunrpc                  0    0    0  -  /var/lib/nfs/rpc_pipefs

Doesn't seem like I have a separate swap partition..

Code:

[sgvalcke@tarf sgvalcke]$ free -m
            total      used      free    shared    buffers    cached
Mem:          497        492          5          0          8        71
-/+ buffers/cache:        412        85
Swap:        1023        27        996

There seems to be 1G of swap mem available. Initiating more apps causes the swap used to go up, there must be something preventing that from happening when trying to run hydra_zmet.

Emerson 03-22-2007 10:08 AM

Linux kernel kills processes in its own when resources become low. And not all types of memory usage are swappable.

Adversus 03-22-2007 11:17 AM

Quote:

Originally Posted by Emerson
Linux kernel kills processes in its own when resources become low. And not all types of memory usage are swappable.

That settles it then i guess :)

when i get "killed" again i just have to close a few instances of emacs and i should be fine :p

wpn146 03-23-2007 11:58 AM

Is "hydra" an old compiled binary using 16 bit opcodes? If so, you may need to recompile it using a 32 bit compiler.

Adversus 03-25-2007 07:51 AM

It isn't :)

i had to do some programming in hydra so it has been compiled a lot of times on my pc :)

syg00 03-25-2007 08:20 AM

When you get the task killed, what does "dmesg" show.

Adversus 03-26-2007 02:59 AM

Do you want me to paste the entire output? :)

i checked and there is no reference to "hydra" in the output of dmesg.

syg00 03-26-2007 04:55 AM

Nothing from a fella called OOM ???

Adversus 03-26-2007 08:33 AM

Filled my memory, ran hydra, got killed message, ran dmesg, this is the output:


Code:

>On node 0 totalpages: 130784
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 126688 pages, LIFO batch:16
  HighMem zone: 0 pages, LIFO batch:1
ACPI: RSDP (v000 VIAK8                                ) @ 0x00000000000f6d50
ACPI: RSDT (v001 VIAK8  AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x000000001fee3000
ACPI: FADT (v001 VIAK8  AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x000000001fee3040
ACPI: MADT (v001 VIAK8  AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x000000001fee7b40
ACPI: DSDT (v001 VIAK8  AWRDACPI 0x00001000 MSFT 0x0100000e) @ 0x0000000000000000
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:5 APIC version 16
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1 15:5 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
Checking aperture...
CPU 0: aperture @ e8000000 size 128 MB
CPU 1: aperture @ e8000000 size 128 MB
Built 2 zonelists
Kernel command line: ro root=LABEL=/ rhgb quiet console=tty0
Initializing CPU#0
PID hash table entries: 2048 (order: 11, 65536 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 1804.155 MHz processor.
Console: colour VGA+ 80x25
Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
Memory: 509164k/523136k available (2056k kernel code, 0k reserved, 1484k data, 180k init)
Calibrating delay loop... 3538.94 BogoMIPS (lpj=1769472)
Security Scaffold v1.0.0 initialized
SELinux:  Initializing.
SELinux:  Starting in permissive mode
There is already a security framework initialized, register_security failed.
selinux_register_security:  Registering secondary module capability
Capability LSM initialized as secondary
Mount-cache hash table entries: 256 (order: 0, 4096 bytes)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
Using local APIC NMI watchdog using perfctr0
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU0: AMD Opteron(tm) Processor 244 stepping 0a
per-CPU timeslice cutoff: 1023.58 usecs.
task migration cache decay timeout: 2 msecs.
Booting processor 1/1 rip 6000 rsp 10001895f58
Initializing CPU#1
Calibrating delay loop... 3604.48 BogoMIPS (lpj=1802240)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
AMD Opteron(tm) Processor 244 stepping 0a
Total of 2 processors activated (7143.42 BogoMIPS).
Using local APIC timer interrupts.
Detected 12.528 MHz APIC timer.
checking TSC synchronization across 2 CPUs: passed.
time.c: Using PIT/TSC based timekeeping.
Brought up 2 CPUs
checking if image is initramfs...it isn't (no cpio magic); looks like an initrd
NET: Registered protocol family 16
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20040816
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12) *5
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 6 7 10 11 12) *0, disabled.
ACPI: PCI Interrupt Link [ALKA] (IRQs 20) *0, disabled.
ACPI: PCI Interrupt Link [ALKB] (IRQs 21) *0, disabled.
ACPI: PCI Interrupt Link [ALKC] (IRQs 22) *0, disabled.
ACPI: PCI Interrupt Link [ALKD] (IRQs 23) *0, disabled.
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Using ACPI for IRQ routing
ACPI: PCI interrupt 0000:00:0b.0[A] -> GSI 16 (level, low) -> IRQ 169
ACPI: PCI Interrupt Link [ALKA] BIOS reported IRQ 0, using IRQ 20
ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20
ACPI: PCI interrupt 0000:00:0f.0[B] -> GSI 20 (level, low) -> IRQ 177
ACPI: PCI interrupt 0000:00:0f.1[A] -> GSI 20 (level, low) -> IRQ 177
ACPI: PCI Interrupt Link [ALKB] BIOS reported IRQ 0, using IRQ 21
ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 21
ACPI: PCI interrupt 0000:00:10.0[A] -> GSI 21 (level, low) -> IRQ 185
ACPI: PCI interrupt 0000:00:10.1[A] -> GSI 21 (level, low) -> IRQ 185
ACPI: PCI interrupt 0000:00:10.2[B] -> GSI 21 (level, low) -> IRQ 185
ACPI: PCI interrupt 0000:00:10.4[C] -> GSI 21 (level, low) -> IRQ 185
ACPI: PCI Interrupt Link [ALKC] BIOS reported IRQ 0, using IRQ 22
ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22
ACPI: PCI interrupt 0000:00:11.5[C] -> GSI 22 (level, low) -> IRQ 193
ACPI: PCI interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 169
agpgart: Detected AGP bridge 0
agpgart: Maximum main memory to use for agp memory: 438M
agpgart: AGP aperture is 128M @ 0xe8000000
PCI-DMA: Disabling IOMMU.
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
audit: initializing netlink socket (disabled)
audit(1174401817.316:0): initialized
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
SELinux:  Registering netfilter hooks
Initializing Cryptographic API
ksign: Installing public key data
Loading keyring
- Added public key 1D9CBAD01AC07F87
- User ID: Red Hat, Inc. (Kernel Module GPG key)
PCI: Via IRQ fixup for 0000:00:10.0, from 10 to 9
PCI: Via IRQ fixup for 0000:00:10.1, from 10 to 9
PCI: Via IRQ fixup for 0000:00:10.2, from 11 to 9
PCI: Via IRQ fixup for 0000:00:11.5, from 5 to 1
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
vesafb: probe of vesafb0 failed with error -6
ACPI: Fan [FAN] (on)
ACPI: Processor [CPU0] (supports C1)
ACPI: Processor [CPU1] (supports C1)
ACPI: Thermal Zone [THRM] (60 C)
Real Time Clock Driver v1.12
Linux agpgart interface v0.100 (c) Dave Jones
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing enabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
divert: not allocating divert_blk for non-ethernet device lo
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
VP_IDE: IDE controller at PCI slot 0000:00:0f.1
ACPI: PCI interrupt 0000:00:0f.1[A] -> GSI 20 (level, low) -> IRQ 177
VP_IDE: chipset revision 6
VP_IDE: not 100% native mode: will probe irqs later
VP_IDE: VIA vt8237 (rev 00) IDE UDMA133 controller on pci0000:00:0f.1
    ide0: BM-DMA at 0xd800-0xd807, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xd808-0xd80f, BIOS settings: hdc:DMA, hdd:pio
Probing IDE interface ide0...
hda: Maxtor 6Y120P0, ATA DISK drive
Using cfq io scheduler
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: LITE-ON DVD SOHD-167T, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
Probing IDE interface ide2...
ide2: Wait for ready failed before probe !
Probing IDE interface ide3...
ide3: Wait for ready failed before probe !
Probing IDE interface ide4...
ide4: Wait for ready failed before probe !
Probing IDE interface ide5...
ide5: Wait for ready failed before probe !
hda: max request size: 128KiB
hda: 240121728 sectors (122942 MB) w/7936KiB Cache, CHS=65535/16/63, UDMA(133)
hda: cache flushes supported
 hda: hda1 hda2 hda3
hdc: ATAPI 48X DVD-ROM drive, 512kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
ide-floppy driver 0.99.newide
usbcore: registered new driver hiddev
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: PS/2 Logitech Mouse on isa0060/serio1
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 2048 buckets, 32Kbytes
TCP: Hash tables configured (established 16384 bind 16384)
Initializing IPsec netlink socket
NET: Registered protocol family 1
NET: Registered protocol family 17
powernow-k8: Found 2 AMD Athlon 64 / Opteron processors (version 1.00.09b)
powernow-k8: MP systems not supported by PSB BIOS structure
powernow-k8: MP systems not supported by PSB BIOS structure
ACPI: (supports S0 S1 S4 S5)
ACPI wakeup devices:
PCI0 USB0 USB1 USB2 USB4 AC97 UAR1 UAR2
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
RAMDISK: Compressed image found at block 0
VFS: Mounted root (ext2 filesystem).
SCSI subsystem initialized
libata version 1.02 loaded.
sata_via version 0.20
ACPI: PCI interrupt 0000:00:0f.0[B] -> GSI 20 (level, low) -> IRQ 177
sata_via(0000:00:0f.0): routed to hard irq line 11
ata1: SATA max UDMA/133 cmd 0xC000 ctl 0xC402 bmdma 0xD000 irq 177
ata2: SATA max UDMA/133 cmd 0xC800 ctl 0xCC02 bmdma 0xD008 irq 177
ata1: no device found (phy stat 00000000)
scsi0 : sata_via
ata2: no device found (phy stat 00000000)
scsi1 : sata_via
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
Freeing unused kernel memory: 180k freed
SELinux:  Disabled at runtime.
SELinux:  Unregistering netfilter hooks
NET: Registered protocol family 10
Disabled Privacy Extensions on device ffffffff80421e40(lo)
IPv6 over IPv4 tunneling driver
divert: not allocating divert_blk for non-ethernet device sit0
ACPI: Power Button (FF) [PWRF]
ACPI: PCI interrupt 0000:00:10.4[C] -> GSI 21 (level, low) -> IRQ 185
ehci_hcd 0000:00:10.4: EHCI Host Controller
ehci_hcd 0000:00:10.4: irq 185, pci mem ffffff0000026000
ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:10.4: USB 2.0 enabled, EHCI 1.00, driver 2004-May-10
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
USB Universal Host Controller Interface driver v2.2
ACPI: PCI interrupt 0000:00:10.0[A] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.0: UHCI Host Controller
uhci_hcd 0000:00:10.0: irq 185, io base 000000000000dc00
uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:10.1[A] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.1: UHCI Host Controller
uhci_hcd 0000:00:10.1: irq 185, io base 000000000000e000
uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:10.2[B] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.2: UHCI Host Controller
uhci_hcd 0000:00:10.2: irq 185, io base 000000000000e400
uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
EXT3 FS on hda2, internal journal
device-mapper: 4.1.0-ioctl (2003-12-10) initialised: dm@uk.sistina.com
cdrom: open failed.
Adding 1048312k swap on /dev/hda3.  Priority:-1 extents:1
kjournald starting.  Commit interval 5 seconds
EXT3 FS on hda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE]
parport0: irq 7 detected
inserting floppy driver for 2.6.9-1.6_FC2smp
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
tg3.c:v3.10 (September 14, 2004)
ACPI: PCI interrupt 0000:00:0b.0[A] -> GSI 16 (level, low) -> IRQ 169
divert: allocating divert_blk for eth0
eth0: Tigon3 [partno(BCM95705A50) rev 3003 PHY(5705)] (PCI:33MHz:32-bit) 10/100/1000BaseT Ethernet 00:0c:76:ad:85:24
eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[0] TSOcap[1]
divert: freeing divert_blk for eth0
ip_tables: (C) 2000-2002 Netfilter core team
ip_conntrack version 2.1 (2043 buckets, 16344 max) - 456 bytes per conntrack
tg3.c:v3.10 (September 14, 2004)
ACPI: PCI interrupt 0000:00:0b.0[A] -> GSI 16 (level, low) -> IRQ 169
divert: allocating divert_blk for eth0
eth0: Tigon3 [partno(BCM95705A50) rev 3003 PHY(5705)] (PCI:33MHz:32-bit) 10/100/1000BaseT Ethernet 00:0c:76:ad:85:24
eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[0] TSOcap[1]
tg3: eth0: Link is up at 100 Mbps, full duplex.
tg3: eth0: Flow control is on for TX and on for RX.
Linux Kernel Card Services
  options:  [pci] [cardbus] [pm]
parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE]
parport0: irq 7 detected
lp0: using parport0 (polling).
lp0: console ready
eth0: no IPv6 routers present
via82xx: Assuming DXS channels with 48k fixed sample rate.
        Please try dxs_support=1 or dxs_support=4 option
        and report if it works on your machine.
ACPI: PCI interrupt 0000:00:11.5[C] -> GSI 22 (level, low) -> IRQ 193
PCI: Setting latency timer of device 0000:00:11.5 to 64


syg00 03-27-2007 06:50 AM

That's it ???.
Well, it ain't the OOM (Out Of Memory) killer that's getting involved.
Dunno what's happening.

Adversus 03-27-2007 09:03 AM

That's it I'm afraid..

When i get "killed" now i just close some stuff (the 4 desktop thingie does not improve tidyness :p) and everything's fine.

timmeke 03-27-2007 09:39 AM

Just an idea, but have you checked the files in /var/log for any warning messages?

Adversus 03-27-2007 09:50 AM

I had not. Loaded up mem, ran HYDRA, got "killed" (a few times to make sure), then:

Quote:

[root@tarf sgvalcke]# grep -i "hydra" /var/log/*
/var/log/messages.2:Mar 14 14:39:01 localhost kernel: hydra_zmet[2747]: segfault at 0000000000001d4e rip 0000000000426014 rsp 0000007fbffff320 error 6
/var/log/messages.2:Mar 14 14:48:52 localhost kernel: hydra_zmet[3031]: segfault at 0000000000000016 rip 0000000031a7fd40 rsp 0000007fbffff248 error 6
2 old segfaults popped up, nothing special..


All times are GMT -5. The time now is 07:18 PM.