X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=block%2Fbio-integrity.c;h=fb95dbb21dd88516de76fc13138621f77bdf1457;hb=1c333550ea92a9c7a5fdf0f3474eba3387478f20;hp=4db620849515f7c42843e4825a89918687becd28;hpb=ea09b3e21f18a5e190b26388c6c5f51e174d845f;p=linux.git diff --git a/block/bio-integrity.c b/block/bio-integrity.c index 4db620849515..fb95dbb21dd8 100644 --- a/block/bio-integrity.c +++ b/block/bio-integrity.c @@ -276,8 +276,12 @@ bool bio_integrity_prep(struct bio *bio) ret = bio_integrity_add_page(bio, virt_to_page(buf), bytes, offset); - if (ret == 0) - return false; + if (ret == 0) { + printk(KERN_ERR "could not attach integrity payload\n"); + kfree(buf); + status = BLK_STS_RESOURCE; + goto err_end_io; + } if (ret < bytes) break;