* [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb
@ 2014-06-24 3:46 hujianyang
2014-07-01 1:19 ` hujianyang
2014-07-01 14:32 ` Artem Bityutskiy
0 siblings, 2 replies; 3+ messages in thread
From: hujianyang @ 2014-06-24 3:46 UTC (permalink / raw)
To: Artem Bityutskiy; +Cc: linux-mtd
We set @ecc in ubifs_scan_leb only if leb_read returns EBADMSG and
do not use it any more. This patch removes this variable and adds
comments about EBADMSG handling.
Signed-off-by: hujianyang <hujianyang@huawei.com>
---
fs/ubifs/scan.c | 7 +++++--
fs/ubifs/ubifs.h | 2 --
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/fs/ubifs/scan.c b/fs/ubifs/scan.c
index 58aa05d..5468836 100644
--- a/fs/ubifs/scan.c
+++ b/fs/ubifs/scan.c
@@ -157,8 +157,11 @@ struct ubifs_scan_leb *ubifs_start_scan(const struct ubifs_info *c, int lnum,
return ERR_PTR(err);
}
- if (err == -EBADMSG)
- sleb->ecc = 1;
+ /*
+ * If err == -EBADMSG, we scan this leb first because we
+ * can detect corruptions by checking NODEs and return an
+ * error if it is really corruptted.
+ */
return sleb;
}
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h
index c1f71fe..977a01b 100644
--- a/fs/ubifs/ubifs.h
+++ b/fs/ubifs/ubifs.h
@@ -314,7 +314,6 @@ struct ubifs_scan_node {
* @nodes_cnt: number of nodes scanned
* @nodes: list of struct ubifs_scan_node
* @endpt: end point (and therefore the start of empty space)
- * @ecc: read returned -EBADMSG
* @buf: buffer containing entire LEB scanned
*/
struct ubifs_scan_leb {
@@ -322,7 +321,6 @@ struct ubifs_scan_leb {
int nodes_cnt;
struct list_head nodes;
int endpt;
- int ecc;
void *buf;
};
--
1.8.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb
2014-06-24 3:46 [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb hujianyang
@ 2014-07-01 1:19 ` hujianyang
2014-07-01 14:32 ` Artem Bityutskiy
1 sibling, 0 replies; 3+ messages in thread
From: hujianyang @ 2014-07-01 1:19 UTC (permalink / raw)
To: Artem Bityutskiy; +Cc: linux-mtd
ping?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb
2014-06-24 3:46 [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb hujianyang
2014-07-01 1:19 ` hujianyang
@ 2014-07-01 14:32 ` Artem Bityutskiy
1 sibling, 0 replies; 3+ messages in thread
From: Artem Bityutskiy @ 2014-07-01 14:32 UTC (permalink / raw)
To: hujianyang; +Cc: linux-mtd
On Tue, 2014-06-24 at 11:46 +0800, hujianyang wrote:
> We set @ecc in ubifs_scan_leb only if leb_read returns EBADMSG and
> do not use it any more. This patch removes this variable and adds
> comments about EBADMSG handling.
Pushed to linux-ubifs.git, thanks!
--
Best Regards,
Artem Bityutskiy
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-01 14:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-24 3:46 [PATCH] UBIFS: Remove useless @ecc in struct ubifs_scan_leb hujianyang
2014-07-01 1:19 ` hujianyang
2014-07-01 14:32 ` Artem Bityutskiy
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.