From: Andrew Morton <akpm@osdl.org>
To: Grzegorz Kulewski <kangur@polcom.net>
Cc: linux-kernel@vger.kernel.org, kernel@kolivas.org
Subject: Re: Slow swapon for big (12GB) swap
Date: Mon, 10 Apr 2006 02:54:19 -0700 [thread overview]
Message-ID: <20060410025419.65456ca9.akpm@osdl.org> (raw)
In-Reply-To: <Pine.LNX.4.63.0604101218380.31989@alpha.polcom.net>
Grzegorz Kulewski <kangur@polcom.net> wrote:
>
> On Mon, 10 Apr 2006, Andrew Morton wrote:
> > Grzegorz Kulewski <kangur@polcom.net> wrote:
> >>
> >> I am using big swap here (as a backing for potentially huge tmpfs). And I
> >> wonder why swapon on such big (like 12GB) swap takes about 7 minutes
> >> (continuous disk IO).
> >
> > It's a bit quicker here:
> >
> > vmm:/usr/src/25# mkswap /dev/hda6
> > Setting up swapspace version 1, size = 54031826 kB
> > vmm:/usr/src/25# time swapon /dev/hda6
> > swapon /dev/hda6 0.00s user 0.04s system 74% cpu 0.054 total
> >
> >
> >> Is this expected?
> >
> > Nope.
> >
> >> Why it is like that?
> >
> > Are you using a swapfile or a swap partition?
>
> Swap file.
>
>
> > If it's a swapfile then perhaps the filesystem is being inefficient in its
> > bmap() function. Which filesystem is it?
>
> Ext3.
>
OK. A 12G file is around 3000 indirect blocks. At 10 milliseconds each
I'd expect it to take 30-odd seconds. A 14G swapfile here takes 20 second
for swapon.
Maybe your disks are slow, or the fs is already quite full+fragmented.
I guess the only thing I can suggest is that you force the swapfile to put
its indirect blocks close together. You can do that by writing one byte
at each 4MB interval:
creat(swapfile);
for (i = 0; i < swapfile_size / 4MB; i++)
pwrite(fd, "\0", 1, i * 4MB);
then fill in all the holes:
dd if=/dev/zero of=swapfile bs=4MB count=swapfile_size/4MB conv=notrunc
rather kludgy, and hopefully ext3 reservations won't defeat it.
next prev parent reply other threads:[~2006-04-10 10:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-04-09 11:45 Grzegorz Kulewski
2006-04-10 7:34 ` Helge Hafting
2006-04-10 10:17 ` Grzegorz Kulewski
2006-04-11 11:30 ` Jan Engelhardt
2006-04-11 11:46 ` linux-os (Dick Johnson)
2006-04-10 7:40 ` Andrew Morton
2006-04-10 9:44 ` Antonio Vargas
2006-04-10 10:25 ` Grzegorz Kulewski
2006-04-10 9:54 ` Andrew Morton [this message]
2006-04-10 11:45 ` Grzegorz Kulewski
2006-04-10 10:27 ` Con Kolivas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060410025419.65456ca9.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=kangur@polcom.net \
--cc=kernel@kolivas.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome