Re: [PATCH] xen-netfront: Improve error handling during initialization

From: David Miller
Date: Sat Feb 04 2017 - 19:47:32 EST


From: Ross Lagerwall <ross.lagerwall@xxxxxxxxxx>
Date: Wed, 1 Feb 2017 15:50:22 +0000

> * Delay timer creation so that if initializing a queue fails, the timer
> has not been setup yet.

setup_timer() doesn't do anything that must be "undone" if an error
occurs and we have to cleanup.

It just assigns some values to some timer struct fields, that's it.

Therefore this change is extraneous and unnecessary.