From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ablqw-0006Lb-3S for qemu-devel@nongnu.org; Fri, 04 Mar 2016 04:16:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ablqs-0005ek-VC for qemu-devel@nongnu.org; Fri, 04 Mar 2016 04:16:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47888) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ablqs-0005eU-Pk for qemu-devel@nongnu.org; Fri, 04 Mar 2016 04:16:50 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 085C17EBAF for ; Fri, 4 Mar 2016 09:16:50 +0000 (UTC) Date: Fri, 4 Mar 2016 14:46:40 +0530 From: Amit Shah Message-ID: <20160304091640.GI15443@grmbl.mre> References: <1457010971-24771-1-git-send-email-lprosek@redhat.com> <20160304062723.GH15443@grmbl.mre> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PATCH] rng: switch request queue to QSIMPLEQ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Ladi Prosek Cc: Paolo Bonzini , qemu-devel@nongnu.org, pagupta On (Fri) 04 Mar 2016 [09:04:22], Ladi Prosek wrote: > On Fri, Mar 4, 2016 at 7:27 AM, Amit Shah wrote: > > On (Thu) 03 Mar 2016 [14:16:11], Ladi Prosek wrote: > >> QSIMPLEQ supports appending to tail in O(1) and is intrusive so > >> it doesn't require extra memory allocations for the bookkeeping > >> data. > >> > >> Suggested-by: Paolo Bonzini > >> Signed-off-by: Ladi Prosek > > > >> @@ -83,24 +83,27 @@ static void rng_backend_free_request(RngRequest *req) > >> > >> static void rng_backend_free_requests(RngBackend *s) > >> { > >> - GSList *i; > >> + RngRequest *req, *next; > >> > >> - for (i = s->requests; i; i = i->next) { > >> - rng_backend_free_request(i->data); > >> + QSIMPLEQ_FOREACH_SAFE(req, &s->requests, next, next) { > >> + rng_backend_free_request(req); > >> } > >> > >> - g_slist_free(s->requests); > >> - s->requests = NULL; > >> + QSIMPLEQ_INIT(&s->requests); > >> } > > > > This init here isn't necessary, the accessors for the queue will take > > care of this. > > We are basically purging the queue here and we want to leave it in a > consistent state. Without the QSIMPLEQ_INIT the queue head would > become a pair of dangling pointers. Let me know if I misunderstood > your comment. QSIMPLEQ_REMOVE does take care to assign NULL, so future QSIMPLEQ_EMPTY, QSIMPLEQ_FIRST, etc., calls work just fine. Amit