Nicolai Stange 816cd71b0c ext4: remove unmeetable inconsisteny check from ext4_find_extent()
ext4_find_extent(), stripped down to the parts relevant to this patch,
reads as

  ppos = 0;
  i = depth;
  while (i) {
    --i;
    ++ppos;
    if (unlikely(ppos > depth)) {
      ...
      ret = -EFSCORRUPTED;
      goto err;
    }
  }

Due to the loop's bounds, the condition ppos > depth can never be met.

Remove this dead code.

Signed-off-by: Nicolai Stange <nicstange@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
2016-05-05 22:43:04 -04:00
..
2015-04-02 23:47:42 -04:00
2015-04-02 23:47:42 -04:00
2016-01-27 20:35:55 +08:00
2016-01-27 20:35:55 +08:00
2016-01-27 20:35:55 +08:00
2015-04-02 23:47:42 -04:00
2016-03-09 23:49:05 -05:00
2016-05-05 11:10:15 -04:00
2016-05-05 22:09:49 -04:00
2016-02-22 22:35:22 -05:00