]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
tools/libxendevicemodel: add xendevicemodel_modified_memory_bulk to map
authorPaul Durrant <paul.durrant@citrix.com>
Fri, 15 Feb 2019 10:02:00 +0000 (10:02 +0000)
committerWei Liu <wei.liu2@citrix.com>
Fri, 15 Feb 2019 13:42:05 +0000 (13:42 +0000)
Commit e3b93b3c595 "dmop: add xendevicemodel_modified_memory_bulk()" added
the implementation to the library almost 2 years ago, but the function
was not included in the map file, essentially making it useless. This
patch rectifies the situation.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Release-acked-by: Juergen Gross <jgross@suse.com>
tools/libs/devicemodel/Makefile
tools/libs/devicemodel/libxendevicemodel.map

index 5b2df7a18e899164f5f073b4b8b66fc647b6c0d6..73cff6dbc41cb9396094b796555654806542f9c4 100644 (file)
@@ -2,7 +2,7 @@ XEN_ROOT = $(CURDIR)/../../..
 include $(XEN_ROOT)/tools/Rules.mk
 
 MAJOR    = 1
-MINOR    = 2
+MINOR    = 3
 SHLIB_LDFLAGS += -Wl,--version-script=libxendevicemodel.map
 
 CFLAGS   += -Werror -Wmissing-prototypes
index 04797b239d7c4a67a4ec8bfc9fe1c8f92922ab7c..561c62deb43c9dbd0dd4b862297489753edc146c 100644 (file)
@@ -33,3 +33,8 @@ VERS_1.2 {
                xendevicemodel_relocate_memory;
                xendevicemodel_pin_memory_cacheattr;
 } VERS_1.1;
+
+VERS_1.3 {
+       global:
+               xendevicemodel_modified_memory_bulk;
+} VERS_1.2;