1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

iomap: Minor code simplification in iomap_dio_bio_iter()

Combine 'else' and 'if' conditional statements onto a single line and drop
unrequired braces, as is standard coding style.

The code had been like this since commit c3b0e880bb ("iomap: support
REQ_OP_ZONE_APPEND").

Signed-off-by: John Garry <john.g.garry@oracle.com>
Link: https://lore.kernel.org/r/20250224154538.548028-1-john.g.garry@oracle.com
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
John Garry 2025-02-24 15:45:38 +00:00 committed by Christian Brauner
parent 425e3e3bd6
commit b5799106b4
No known key found for this signature in database
GPG key ID: 91C61BC06578DCA2

View file

@ -427,12 +427,10 @@ static loff_t iomap_dio_bio_iter(const struct iomap_iter *iter,
bio_put(bio);
goto zero_tail;
}
if (dio->flags & IOMAP_DIO_WRITE) {
if (dio->flags & IOMAP_DIO_WRITE)
task_io_account_write(n);
} else {
if (dio->flags & IOMAP_DIO_DIRTY)
bio_set_pages_dirty(bio);
}
else if (dio->flags & IOMAP_DIO_DIRTY)
bio_set_pages_dirty(bio);
dio->size += n;
copied += n;