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
2014-01-25 23:58:19 -05:00
2016-02-11 23:15:12 -05:00
2015-04-02 23:47:42 -04:00
2015-10-17 16:16:04 -04:00
2016-01-27 20:35:55 +08:00
2016-01-27 20:35:55 +08:00
2015-10-03 10:49:27 -04:00
2016-04-12 20:01:35 -07:00
2016-04-23 22:50:07 -04:00
2016-01-27 20:35:55 +08:00
2016-03-09 23:49:05 -05:00
2015-10-17 22:57:06 -04:00
2016-04-24 00:56:08 -04:00
2016-04-25 23:22:35 -04:00
2016-04-27 01:11:21 -04:00
2015-09-23 12:46:17 -04:00
2016-05-05 22:43:04 -04:00
2016-04-27 01:11:21 -04:00
2015-04-26 17:22:07 -07:00
2015-04-02 23:47:42 -04:00
2016-04-30 00:49:54 -04:00
2016-03-09 22:54:00 -05:00
2016-04-27 01:11:21 -04:00
2016-04-25 23:22:35 -04:00
2016-05-05 10:52:38 -04:00
2015-09-24 13:27:47 +02:00
2015-09-23 12:44:17 -04:00
2016-05-05 19:46:19 -04:00
2016-03-13 17:18:12 -04:00
2016-03-09 23:49:05 -05:00
2016-04-27 01:11:21 -04:00
2016-04-24 00:56:08 -04:00
2016-05-05 11:10:15 -04:00
2016-05-05 22:09:49 -04:00
2016-04-07 17:22:20 -07:00
2016-04-27 01:11:21 -04:00
2016-04-25 23:22:35 -04:00
2016-04-04 10:41:08 -07:00
2015-11-26 15:52:24 -05:00
2015-12-07 14:28:03 -05:00
2015-12-13 19:46:12 -05:00
2015-12-13 19:46:12 -05:00
2015-12-13 19:46:12 -05:00
2016-03-22 16:13:15 -04:00
2016-02-22 22:35:22 -05:00