public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
From: xiaochuan-xu <xiaochuan-xu@cqu.edu.cn>
To: dedekind@infradead.org
Cc: linux-mtd <linux-mtd@lists.infradead.org>
Subject: Re: [PATCH 4/4] UBI WL-Subsys: Improvement in prot tree
Date: Tue, 16 Dec 2008 10:33:08 +0800	[thread overview]
Message-ID: <429394196.23259@cqu.edu.cn> (raw)
Message-ID: <1229394788.2691.14.camel@localhost.localdomain> (raw)
In-Reply-To: <1229356809.4911.57.camel@sauron>


On Mon, 2008-12-15 at 18:00 +0200, Artem Bityutskiy wrote:
> Amended and pushed to ubi-2.6.git tree.
Thanks!

These two sentences should switch in the 'ubi_wl_get_peb()' function:

-	prot_queue_add(ubi, e);
 	dbg_wl("PEB %d EC %d", e->pnum, e->ec);
+	prot_queue_add(ubi, e);

"get" message should print before "add to prot-queue",
which is more descriptive IMO.


>From 83811c383bf70039aae53e1bbc7311899ea4abcd Mon Sep 17 00:00:00 2001
From: Xiaochuan-Xu <xiaochuan-xu@cqu.edu.cn>
Date: Tue, 16 Dec 2008 10:10:20 +0800
Subject: [PATCH] several comments amendment

Signed-off-by: Xiaochuan-Xu <xiaochuan-xu@cqu.edu.cn>
---
 drivers/mtd/ubi/wl.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c
index d50060f..4fe3f25 100644
--- a/drivers/mtd/ubi/wl.c
+++ b/drivers/mtd/ubi/wl.c
@@ -56,7 +56,7 @@
  * As it was said, for the UBI sub-system all physical eraseblocks are either
  * "free" or "used". Free eraseblock are kept in the @wl->free RB-tree, while
  * used eraseblocks are kept in @wl->used or @wl->scrub RB-trees, or in
- * (temporarily) in the @wl->pq queue.
+ * (temporarily) the @wl->pq queue.
  *
  * When the WL sub-system returns a physical eraseblock, the physical
  * eraseblock is protected from being moved for some "time". For this reason,
@@ -143,7 +143,6 @@
  * struct ubi_work - UBI work description data structure.
  * @list: a link in the list of pending works
  * @func: worker function
- * @priv: private data of the worker function
  * @e: physical eraseblock to erase
  * @torture: if the physical eraseblock has to be tortured
  *
@@ -455,8 +454,8 @@ retry:
 	 * be protected from being moved for some time.
 	 */
 	rb_erase(&e->u.rb, &ubi->free);
-	prot_queue_add(ubi, e);
 	dbg_wl("PEB %d EC %d", e->pnum, e->ec);
+	prot_queue_add(ubi, e);
 	spin_unlock(&ubi->wl_lock);
 	return e->pnum;
 }
@@ -1223,7 +1222,7 @@ int ubi_wl_flush(struct ubi_device *ubi)
 	int err;
 
 	/*
-	 * Erase while the pending works queue is not empty, but not more then
+	 * Erase while the pending works queue is not empty, but not more than
 	 * the number of currently pending works.
 	 */
 	dbg_wl("flush (%d pending works)", ubi->works_count);
-- 
1.5.3.2



-- 
Yours sincerely
xiaochuan-xu(cqu.edu.cn)

  parent reply	other threads:[~2008-12-16  2:34 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1228823163.2753.18.camel@localhost.localdomain>
2008-12-09 11:46 ` [PATCH 4/4] UBI WL-Subsys: Improvement in prot tree xiaochuan-xu
2008-12-09 13:03 ` Artem Bityutskiy
     [not found]   ` <1228884752.3225.80.camel@localhost.localdomain>
2008-12-10  4:52     ` xiaochuan-xu
2008-12-10  8:44     ` Artem Bityutskiy
     [not found]       ` <1228914665.3655.31.camel@localhost.localdomain>
2008-12-10 13:11         ` xiaochuan-xu
2008-12-10 13:35         ` Artem Bityutskiy
     [not found]       ` <1228913251.3655.10.camel@localhost.localdomain>
     [not found]         ` <1228931859.13686.350.camel@sauron>
     [not found]           ` <1228981865.2702.9.camel@localhost.localdomain>
     [not found]             ` <1229022841.13686.384.camel@sauron>
     [not found]               ` <1229332169.5306.1.camel@localhost.localdomain>
     [not found]                 ` <1229332781.13686.447.camel@sauron>
     [not found]                   ` <1229343610.2687.52.camel@localhost.localdomain>
     [not found]                     ` <1229343746.4911.2.camel@sauron>
     [not found]                       ` <1229347894.2687.56.camel@localhost.localdomain>
     [not found]                         ` <1229356809.4911.57.camel@sauron>
     [not found]                           ` <1229394788.2691.14.camel@localhost.localdomain>
2008-12-16  2:33                             ` xiaochuan-xu [this message]
     [not found]                           ` <1229395691.2691.18.camel@localhost.localdomain>
2008-12-16  2:48                             ` xiaochuan-xu
2008-12-16  6:36                             ` Artem Bityutskiy

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=429394196.23259@cqu.edu.cn \
    --to=xiaochuan-xu@cqu.edu.cn \
    --cc=dedekind@infradead.org \
    --cc=linux-mtd@lists.infradead.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