mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
Btrfs: cleanup 'start' subtraction from try uncompressed inline extent
Was added in:
c8b978188c
"Btrfs: Add zlib compression support"
Survive to near time (from 08.10.2008).
Because 'start' checked for zero before branch, so it's safe to remove
that subtraction.
Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Reviewed-by: Satoru Takeuchi <satoru.takeuchi@gmail.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
996478ca9c
commit
6018ba0a0e
@ -570,7 +570,7 @@ again:
|
||||
cont:
|
||||
if (start == 0) {
|
||||
/* lets try to make an inline extent */
|
||||
if (ret || total_in < (actual_end - start)) {
|
||||
if (ret || total_in < actual_end) {
|
||||
/* we didn't compress the entire range, try
|
||||
* to make an uncompressed inline extent.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user