[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5ca7d8f1-d983-0379-b98f-2d5bb17e0a85@gmail.com>
Date: Thu, 10 May 2018 12:01:33 -0500
From: "Alex G." <mr.nuke.me@...il.com>
To: Keith Busch <keith.busch@...el.com>
Cc: linux-nvme@...ts.infradead.org, alex_gagniuc@...lteam.com,
Austin.Bolen@...l.com, Shyam.Iyer@...l.com,
Jens Axboe <axboe@...com>, Christoph Hellwig <hch@....de>,
Sagi Grimberg <sagi@...mberg.me>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] nvme-pci: Avoid use of goto in nvme_reset_work()
On 05/10/2018 12:00 PM, Keith Busch wrote:
> On Thu, May 10, 2018 at 11:46:33AM -0500, Alexandru Gagniuc wrote:
>> This patch started as a challenge from Keith relating to code
>> structuring with goto vs return. I think the final result improves
>> readability on two counts:
>> First, it clarifies the separation between work struct and nvme_dev.
>> Second, it makes it clearer what error is being passed on:
>> 'return -ENODEV' vs 'goto out', where 'result' happens to be -ENODEV
>>
>> CC: Keith Busch <keith.busch@...el.com>
>> Signed-off-by: Alexandru Gagniuc <mr.nuke.me@...il.com>
>
> Ah, that's just wrapping a function that has a single out. The challenge
> is to find a better mechanism than 'goto' to unwind a failure that has
> multiple outs, like nvme_probe().
The same principle applies there too. It might have to be wrapped in
several chunks, and it will likely be more readable. Am I supposed to
bite and refactor that too?
Alex
Powered by blists - more mailing lists