]> git.ipfire.org Git - thirdparty/qemu.git/commit
xen / notify: introduce a new XenWatchList abstraction
authorPaul Durrant <paul.durrant@citrix.com>
Fri, 13 Sep 2019 08:21:56 +0000 (09:21 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Tue, 24 Sep 2019 11:18:47 +0000 (12:18 +0100)
commit374752a26b0ea487dd49c638ee35b97a58ce8e3b
treefb774b006d163df618b14c0f72a10ee578210f3a
parentdf6180bb56cd03949c2c64083da58755fed81a61
xen / notify: introduce a new XenWatchList abstraction

Xenstore watch call-backs are already abstracted away from XenBus using
the XenWatch data structure but the associated NotifierList manipulation
and file handle registration is still open coded in various xen_bus_...()
functions.
This patch creates a new XenWatchList data structure to allow these
interactions to be abstracted away from XenBus as well. This is in
preparation for a subsequent patch which will introduce separate watch lists
for XenBus and XenDevice objects.

NOTE: This patch also introduces a new notifier_list_empty() helper function
      for the purposes of adding an assertion that a XenWatchList is not
      freed whilst its associated NotifierList is still occupied.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Reviewed-by: Anthony Perard <anthony.perard@citrix.com>
Message-Id: <20190913082159.31338-2-paul.durrant@citrix.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
hw/xen/trace-events
hw/xen/xen-bus.c
include/hw/xen/xen-bus.h
include/qemu/notify.h
util/notify.c