]> xenbits.xensource.com Git - people/dariof/xen.git/commitdiff
tools/libs: Fix stable library ABI breakage from c/s e1ed22be85
authorAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 9 Jul 2018 09:13:48 +0000 (10:13 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 9 Jul 2018 09:46:34 +0000 (10:46 +0100)
For libxengnttab.map, introducing a new VERS* section must be matched with a
equivalent SONAME bump.

For libxencall.map, the hunk as presented would have been ok, if Xen 4.11
hadn't been released between xencall_buffers_never_fault() and xencall_fd()
being introduced.  Given the timing of the release, xencall_fd() needs moving
into a new VERS_1.2 section.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
tools/libs/call/Makefile
tools/libs/call/libxencall.map
tools/libs/gnttab/Makefile

index 252d3973fc834d076cbf5d747f08094b22accceb..6291e6dfe7b03c2487d3e5ea0ecc9ffe0b5cebb8 100644 (file)
@@ -2,7 +2,7 @@ XEN_ROOT = $(CURDIR)/../../..
 include $(XEN_ROOT)/tools/Rules.mk
 
 MAJOR    = 1
-MINOR    = 1
+MINOR    = 2
 SHLIB_LDFLAGS += -Wl,--version-script=libxencall.map
 
 CFLAGS   += -Werror -Wmissing-prototypes
index feacee31461d136250ad47872681de5e7014b55d..6922b96511e06f987e68960393abf3b7379d547a 100644 (file)
@@ -21,5 +21,9 @@ VERS_1.0 {
 VERS_1.1 {
        global:
                xencall_buffers_never_fault;
-               xencall_fd;
 } VERS_1.0;
+
+VERS_1.2 {
+       global:
+               xencall_fd;
+} VERS_1.1;
index dcfe686767e29a75297c874f663346e5dae36ad5..6c2e7e36a2c3612d9d119cfc2041b0e0959aa6d4 100644 (file)
@@ -2,7 +2,7 @@ XEN_ROOT = $(CURDIR)/../../..
 include $(XEN_ROOT)/tools/Rules.mk
 
 MAJOR    = 1
-MINOR    = 1
+MINOR    = 2
 SHLIB_LDFLAGS += -Wl,--version-script=libxengnttab.map
 
 CFLAGS   += -Werror -Wmissing-prototypes