From: Michal Privoznik Date: Wed, 11 Sep 2019 08:33:19 +0000 (+0200) Subject: security_stack: Turn list of nested drivers into a doubly linked list X-Git-Tag: v5.9.0-rc1~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd355a526ff239eed24b50959ffb21e390724b74;p=thirdparty%2Flibvirt.git security_stack: Turn list of nested drivers into a doubly linked list In near future we will need to walk through the list of internal drivers in reversed order. The simplest solution is to turn singly linked list into a doubly linked list. We will not need to start from the end really, so there's no tail pointer kept. Signed-off-by: Michal Privoznik Reviewed-by: Cole Robinson --- diff --git a/src/security/security_stack.c b/src/security/security_stack.c index dd055075cb..51a8b76748 100644 --- a/src/security/security_stack.c +++ b/src/security/security_stack.c @@ -35,6 +35,7 @@ typedef virSecurityStackItem *virSecurityStackItemPtr; struct _virSecurityStackItem { virSecurityManagerPtr securityManager; virSecurityStackItemPtr next; + virSecurityStackItemPtr prev; }; struct _virSecurityStackData { @@ -56,6 +57,7 @@ virSecurityStackAddNested(virSecurityManagerPtr mgr, if (VIR_ALLOC(item) < 0) return -1; item->securityManager = nested; + item->prev = tmp; if (tmp) tmp->next = item; else