From: Christoph Hellwig Date: Wed, 26 Jun 2024 04:59:36 +0000 (+0200) Subject: block: remove allocation failure warnings in bio_integrity_prep X-Git-Tag: v6.11-rc1~80^2~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dac18fabba59149acec42621b9b603654e9459b2;p=thirdparty%2Flinux.git block: remove allocation failure warnings in bio_integrity_prep Allocation failures already leave a stack trace, so don't spew another warning. Signed-off-by: Christoph Hellwig Reviewed-by: Kanchan Joshi Reviewed-by: Martin K. Petersen Link: https://lore.kernel.org/r/20240626045950.189758-4-hch@lst.de Signed-off-by: Jens Axboe --- diff --git a/block/bio-integrity.c b/block/bio-integrity.c index 259acb60c56a3..2da7fb222a358 100644 --- a/block/bio-integrity.c +++ b/block/bio-integrity.c @@ -465,13 +465,11 @@ bool bio_integrity_prep(struct bio *bio) len = bio_integrity_bytes(bi, bio_sectors(bio)); buf = kmalloc(len, gfp); if (unlikely(buf == NULL)) { - printk(KERN_ERR "could not allocate integrity buffer\n"); goto err_end_io; } bip = bio_integrity_alloc(bio, GFP_NOIO, 1); if (IS_ERR(bip)) { - printk(KERN_ERR "could not allocate data integrity bioset\n"); kfree(buf); goto err_end_io; }