[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1346656863.3061.11.camel@sauron.fi.intel.com>
Date: Mon, 03 Sep 2012 10:21:03 +0300
From: Artem Bityutskiy <dedekind1@...il.com>
To: Huang Shijie <shijie8@...il.com>
Cc: dwmw2@...radead.org, linux-mtd@...ts.infradead.org,
linux-kernel@...r.kernel.org, shmulik.ladkani@...il.com
Subject: Re: [PATCH 2/3] mtd: cmdlinepart: sort the unsorted partitions
On Sun, 2012-08-26 at 13:21 -0400, Huang Shijie wrote:
> +/* There are only several partitions, so the Bubble sort is enough. */
> +static inline void sort_partitons(struct mtd_partition *parts, int num_parts)
> +{
> + int i, j;
> +
> + if (num_parts < 2)
> + return;
Not necessary, the for loop should work for this case.
> +
> + if (parts[0].offset == OFFSET_CONTINUOUS)
> + return;
Hmm, I guess the sorting function should not have this check. You
probably can just sort normally these ones, they will be the last ones.
And then we can do a separate pass where we check for overlapping
partitions and multiple OFFSET_CONTINUOUS.
> +
> + /* sort by the offset */
> + for (i = 0; i < num_parts - 1; i++) {
> + for (j = 1; j < num_parts - i; j++) {
> + if (parts[j - 1].offset > parts[j].offset) {
> + struct mtd_partition tmp;
> +
> + tmp = parts[j - 1];
> + parts[j - 1] = parts[j];
> + parts[j] = tmp;
> + }
> + }
> + }
> + return;
> +}
--
Best Regards,
Artem Bityutskiy
Download attachment "signature.asc" of type "application/pgp-signature" (837 bytes)
Powered by blists - more mailing lists