Re: nvmet_fc: add defer_req callback for deferment of cmd buffer return

From: Christoph Hellwig
Date: Mon Aug 14 2017 - 12:38:36 EST


On Mon, Aug 14, 2017 at 10:19:24AM -0400, Dave Jones wrote:
> > +
> > + /* Cleanup defer'ed IOs in queue */
> > + list_for_each_entry(deferfcp, &queue->avail_defer_list, req_list) {
> > + list_del(&deferfcp->req_list);
> > + kfree(deferfcp);
> > + }
>
> Shouldn't this be list_for_each_entry_safe ?

It should. James, can you send a fixup?