All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: Wolfram Sang <w.sang@pengutronix.de>
Cc: Shawn Guo <shawn.guo@freescale.com>,
	linux-mmc@vger.kernel.org, cjb@laptop.org,
	linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3] mmc: mxs-mmc: add mmc host driver for i.MX23/28
Date: Tue, 22 Feb 2011 17:15:07 +0100	[thread overview]
Message-ID: <201102221715.07480.arnd@arndb.de> (raw)
In-Reply-To: <20110222103349.GA2755@pengutronix.de>

On Tuesday 22 February 2011, Wolfram Sang wrote:
> # mount -t vfat /dev/mmcblk0p1 /mnt
> # dd if=/mnt/test.dat of=/tmp/a bs=1024
> # umount /mnt
> # ./dd --version
> dd (coreutils) 8.5

In general, you should try to rule out file system, garbage collection,
partitioning and cache effects.

With coreutils dd, a good command is

dd if=/dev/zero of=/dev/mmcblk0 bs=64K count=64 seek=256 oflag=direct

* Always write multiples of 4 MB to avoid garbage collection
* smaller block sizes may be faster, so writing 64 times 64K may
  be better than writing 4 MB once, depending on the card
* don't write to the FAT area, so start writing at 16 MB into the
  device.
* use direct I/O to bypass the page cache.
* read from /dev/zero instead of a disk file to avoid measuring the
  wrong thing

	Arnd

WARNING: multiple messages have this Message-ID (diff)
From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3] mmc: mxs-mmc: add mmc host driver for i.MX23/28
Date: Tue, 22 Feb 2011 17:15:07 +0100	[thread overview]
Message-ID: <201102221715.07480.arnd@arndb.de> (raw)
In-Reply-To: <20110222103349.GA2755@pengutronix.de>

On Tuesday 22 February 2011, Wolfram Sang wrote:
> # mount -t vfat /dev/mmcblk0p1 /mnt
> # dd if=/mnt/test.dat of=/tmp/a bs=1024
> # umount /mnt
> # ./dd --version
> dd (coreutils) 8.5

In general, you should try to rule out file system, garbage collection,
partitioning and cache effects.

With coreutils dd, a good command is

dd if=/dev/zero of=/dev/mmcblk0 bs=64K count=64 seek=256 oflag=direct

* Always write multiples of 4 MB to avoid garbage collection
* smaller block sizes may be faster, so writing 64 times 64K may
  be better than writing 4 MB once, depending on the card
* don't write to the FAT area, so start writing at 16 MB into the
  device.
* use direct I/O to bypass the page cache.
* read from /dev/zero instead of a disk file to avoid measuring the
  wrong thing

	Arnd

  parent reply	other threads:[~2011-02-22 16:15 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-21 10:35 [PATCH v3] mmc: mxs-mmc: add mmc host driver for i.MX23/28 Shawn Guo
2011-02-21 10:35 ` Shawn Guo
2011-02-21 17:40 ` Wolfram Sang
2011-02-21 17:40   ` Wolfram Sang
2011-02-22  8:09   ` Shawn Guo
2011-02-22  8:09     ` Shawn Guo
2011-02-24 13:48     ` Shawn Guo
2011-02-24 13:48       ` Shawn Guo
2011-02-22  8:52   ` Shawn Guo
2011-02-22  8:52     ` Shawn Guo
2011-02-22 10:33     ` Wolfram Sang
2011-02-22 10:33       ` Wolfram Sang
2011-02-22 11:50       ` Shawn Guo
2011-02-22 11:50         ` Shawn Guo
2011-02-22 11:57         ` Wolfram Sang
2011-02-22 11:57           ` Wolfram Sang
2011-02-22 16:15       ` Arnd Bergmann [this message]
2011-02-22 16:15         ` Arnd Bergmann
2011-02-22 16:36         ` Wolfram Sang
2011-02-22 16:36           ` Wolfram Sang
2011-02-22 15:26 ` Chris Ball
2011-02-22 15:26   ` Chris Ball

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=201102221715.07480.arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=cjb@laptop.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=shawn.guo@freescale.com \
    --cc=w.sang@pengutronix.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.