
uint64_t end;
if (__builtin_add_overflow(start, len, &end) || end > bdev_nr_bytes(bdev)) {
    return -EINVAL;
}
