All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] sunvdc: remove unnecessary oom message
@ 2021-06-09 12:23 Zhen Lei
  2021-06-09 15:42 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Zhen Lei @ 2021-06-09 12:23 UTC (permalink / raw)
  To: Jens Axboe, linux-block; +Cc: Zhen Lei

Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message

Remove it can help us save a bit of memory.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/block/sunvdc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c
index 1547d4345ad8..134cadea37d1 100644
--- a/drivers/block/sunvdc.c
+++ b/drivers/block/sunvdc.c
@@ -1001,9 +1001,8 @@ static int vdc_port_probe(struct vio_dev *vdev, const struct vio_device_id *id)
 	}
 
 	port = kzalloc(sizeof(*port), GFP_KERNEL);
-	err = -ENOMEM;
 	if (!port) {
-		printk(KERN_ERR PFX "Cannot allocate vdc_port.\n");
+		err = -ENOMEM;
 		goto err_out_release_mdesc;
 	}
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] sunvdc: remove unnecessary oom message
  2021-06-09 12:23 [PATCH 1/1] sunvdc: remove unnecessary oom message Zhen Lei
@ 2021-06-09 15:42 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2021-06-09 15:42 UTC (permalink / raw)
  To: Zhen Lei, linux-block

On 6/9/21 6:23 AM, Zhen Lei wrote:
> Fixes scripts/checkpatch.pl warning:
> WARNING: Possible unnecessary 'out of memory' message
> 
> Remove it can help us save a bit of memory.

Applied, thanks.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-06-09 15:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 12:23 [PATCH 1/1] sunvdc: remove unnecessary oom message Zhen Lei
2021-06-09 15:42 ` Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.