lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 7 Nov 2013 09:36:57 +0100
From:	Oskar Andero <oskar.andero@...ymobile.com>
To:	Ulf Hansson <ulf.hansson@...aro.org>
CC:	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	linux-mmc <linux-mmc@...r.kernel.org>,
	Chris Ball <cjb@...top.org>,
	"Svensson, Lars 1" <Lars1.Svensson@...ymobile.com>
Subject: Re: [PATCH 1/1] MMC: Detect execution mode errors after r/w command

Hi Ulf,

On 18:50 Tue 22 Oct     , Ulf Hansson wrote:
> > And this is after the patch has been applied:
> >               KB  reclen   write rewrite    read    reread
> >            51200       4     251     990     3280     3244
> >            51200       8     460    1545     4460     4463
> >            51200      16     878    2633     7023     7028
> >            51200      32    1380    4394     9802     9832
> >            51200      64    2457    6216    12314    12314
> >            51200     128    3667    7894    14087    14088
> >            51200     256    6422    5916    15085    15086
> >            51200     512    5536   10994    12571    15659
> >            51200    1024    9112    9499    16203    16205
> >            51200    2048   10197   10502    16363    16368
> >            51200    4096   10524   10238     8850    16309
> >            51200    8192    9615   10456    16528    16529
> >            51200   16384   10553   10428    16803    16803
> 
> Hi Oskar,
> 
> The numbers were not that impressing from the beginning, so that could
> be why you don't see any impact.
> What kind of card are you using, eMMC/SD? In what speed mode are the
> card operating in?

The test was run on an Beagleboard with sdcard. I will try to find another board with
eMMC support and rerun the tests.

> >> > +       /*
> >> > +        * Try to get card status which indicates the card state after
> >> > +        * command execution. If the first attempt fails, we can't be
> >> > +        * sure the returned status is for the r/w command.
> >> > +        */
> >> > +       for (retries = 2; retries >= 0; retries--) {
> >> > +               err = get_card_status(card, &status, 0);
> >> > +               if (!err)
> >> > +                       break;
> >> > +
> >> > +               status_valid = false;
> >> > +               pr_err("%s: error %d sending status command, %sing\n",
> >> > +                      req->rq_disk->disk_name, err,
> >> > +                      retries ? "retry" : "abort");
> >> > +       }
> >>
> >> Do we have to issue a CMD13 (get_card_status), even if we are using
> >> the open-ended transmission sequence? In other words, could we make
> >> use of the response from CMD12 (stop transmission) instead?
> >
> > That's probably a good idea. Do you know of a way to check if CMD12 has been
> > sent or not?
> 
> Have a look for "mmc_host_cmd23", which gets translated into
> "MMC_BLK_CMD23" for the mmc block layer. This will give you some hints
> of were to look.

Thanks! We will revise the patch according to your comments.

-Oskar
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ