diff options
author | Qu Wenruo <[email protected]> | 2019-10-23 21:57:26 +0800 |
---|---|---|
committer | David Sterba <[email protected]> | 2019-11-18 17:51:48 +0100 |
commit | 2d974619a77f106f3d1341686dea95c0eaad601f (patch) | |
tree | 784cf29f785c8c27d0f498658d479b5363bcb1a0 /scripts/gdb/linux/modules.py | |
parent | 153a6d299956983de890ffaf429e5904503eb94c (diff) |
btrfs: volumes: Use more straightforward way to calculate map length
The old code goes:
offset = logical - em->start;
length = min_t(u64, em->len - offset, length);
Where @length calculation is dependent on offset, it can take reader
several more seconds to find it's just the same code as:
offset = logical - em->start;
length = min_t(u64, em->start + em->len - logical, length);
Use above code to make the length calculate independent from other
variable, thus slightly increase the readability.
Reviewed-by: Johannes Thumshirn <[email protected]>
Reviewed-by: Josef Bacik <[email protected]>
Signed-off-by: Qu Wenruo <[email protected]>
Reviewed-by: David Sterba <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'scripts/gdb/linux/modules.py')
0 files changed, 0 insertions, 0 deletions