aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ubifs
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2010-08-04 06:50:51 -0400
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2010-08-30 03:19:06 -0400
commite3408ad4cbed6ec6990efad4c2ef0856bcd3c712 (patch)
treefb36a77d65fc077337968f53539d26544910792e /fs/ubifs
parentefe1881f5482f94f5e5e6cb74bf3ea72f2b5b9ce (diff)
UBIFS: fix assertion warning
This patch fixes the following false assertion warning: UBIFS assert failed in data_nodes_cmp at 130 (pid 15107) The assertion was wrong because it did not take into account that the node can be an xentry. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r--fs/ubifs/gc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ubifs/gc.c b/fs/ubifs/gc.c
index ee4b05de4d48..98b2c3c8725a 100644
--- a/fs/ubifs/gc.c
+++ b/fs/ubifs/gc.c
@@ -178,7 +178,8 @@ int nondata_nodes_cmp(void *priv, struct list_head *a, struct list_head *b)
178 if (typeb == UBIFS_INO_KEY) 178 if (typeb == UBIFS_INO_KEY)
179 return 1; 179 return 1;
180 180
181 ubifs_assert(typea == UBIFS_DENT_KEY && typeb == UBIFS_DENT_KEY); 181 ubifs_assert(typea == UBIFS_DENT_KEY || typea == UBIFS_XENT_KEY);
182 ubifs_assert(typeb == UBIFS_DENT_KEY || typeb == UBIFS_XENT_KEY);
182 inuma = key_inum(c, &sa->key); 183 inuma = key_inum(c, &sa->key);
183 inumb = key_inum(c, &sb->key); 184 inumb = key_inum(c, &sb->key);
184 185