Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f98c8f79 authored by Mikulas Patocka's avatar Mikulas Patocka Committed by Mike Snitzer
Browse files

dm bufio: return NULL to improve code clarity



A small code cleanup in new_read() - return NULL instead of b (although
b is NULL at this point).  This function is not returning pointer to the
buffer, it is returning a pointer to the bufffer's data, thus it makes
no sense to return the variable b.

Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 313c9b97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1068,7 +1068,7 @@ static void *new_read(struct dm_bufio_client *c, sector_t block,
	__flush_write_list(&write_list);

	if (!b)
		return b;
		return NULL;

	if (need_submit)
		submit_io(b, READ, b->block, read_endio);