looks ok.
> > Btw, do you see something swap-related in dmesg? Like:
>
> In dmesg I see only this, but some problem with signanture is in syslog
> (at the end of this mail)
>
> $ dmesg | grep swap
> Starting kswapd
> Adding Swap: 594364k swap-space (priority -1)
>
> > How did you initialized the swap partition? Recent kernels support both
> > v1 and v2 swaps, which is can be set for mkswap using -v0 (-v1).
> > Actually i mean did you initialized it at all? 8)
>
> I just created a partition with fdisk /dev/hda6, done "mkswap /dev/hda6" put
May i assume you did swapoff before?
> the information to /etc/fstab and turned it on with "swapon -a". TOP shows
> Swap: 594364K av, 0K used, 594364K free
>
> syslog logs these kinds of kernel messages (those I guess are important):
>
> Sep 29 22:04:19 shunka kernel: swap_free: Bad swap offset entry 1b3d0000
> ...
> Sep 29 22:04:19 shunka kernel: swap_free: Bad swap offset entry 1b3d0000
> ...
> Sep 10 10:03:28 shunka2 kernel: swap_dup: Bad swap file entry 00000022
You change hostname inbetween or this is just a typo?
> Sep 4 21:30:40 shunka kernel: Unable to find swap-space signature //
> !!!!!!!!
Wow. Any of the errors above prevents swap partition from being used.
How did you manage to see anything in /proc/swaps?
I suggest you do:
swapoff /dev/hda6
badblocks /dev/hda6
Alternatively, you can try
dd if=/dev/zero of=/dev/hda6; mkswap /dev/hda6
Look for "SWAP-SPACE" (old swap) or "SWAPSPACE2" (the new one).
Just to make sure you've initialized the partition properly.
Than turn it on: swapon /dev/hda6; tail /var/log/syslog
> Oct 26 19:25:29 shunka kernel: <1>Unable to handle kernel paging request at
> virtual address 2064656e
Oops, you've sent, is pretty useless without decoding. Read
Documentation/oops-tracing.txt from the kernel source tree.
-alex
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/