diff options
Diffstat (limited to 'fs/reiserfs/lbalance.c')
-rw-r--r-- | fs/reiserfs/lbalance.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/fs/reiserfs/lbalance.c b/fs/reiserfs/lbalance.c index 41bdd8c75887..381339b432e7 100644 --- a/fs/reiserfs/lbalance.c +++ b/fs/reiserfs/lbalance.c | |||
@@ -1288,12 +1288,16 @@ void leaf_paste_entries(struct buffer_info *bi, | |||
1288 | prev = (i != 0) ? deh_location(&(deh[i - 1])) : 0; | 1288 | prev = (i != 0) ? deh_location(&(deh[i - 1])) : 0; |
1289 | 1289 | ||
1290 | if (prev && prev <= deh_location(&(deh[i]))) | 1290 | if (prev && prev <= deh_location(&(deh[i]))) |
1291 | reiserfs_warning(NULL, | 1291 | reiserfs_warning(NULL, "vs-10240", |
1292 | "vs-10240: leaf_paste_entries: directory item (%h) corrupted (prev %a, cur(%d) %a)", | 1292 | "directory item (%h) " |
1293 | "corrupted (prev %a, " | ||
1294 | "cur(%d) %a)", | ||
1293 | ih, deh + i - 1, i, deh + i); | 1295 | ih, deh + i - 1, i, deh + i); |
1294 | if (next && next >= deh_location(&(deh[i]))) | 1296 | if (next && next >= deh_location(&(deh[i]))) |
1295 | reiserfs_warning(NULL, | 1297 | reiserfs_warning(NULL, "vs-10250", |
1296 | "vs-10250: leaf_paste_entries: directory item (%h) corrupted (cur(%d) %a, next %a)", | 1298 | "directory item (%h) " |
1299 | "corrupted (cur(%d) %a, " | ||
1300 | "next %a)", | ||
1297 | ih, i, deh + i, deh + i + 1); | 1301 | ih, i, deh + i, deh + i + 1); |
1298 | } | 1302 | } |
1299 | } | 1303 | } |