- update to 4.14.0

This commit is contained in:
Dirk Meyer 2020-07-24 15:59:03 +00:00
parent 7208e49e39
commit 631df84d7c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=543253
5 changed files with 4 additions and 46 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= xen-guest-tools
PORTVERSION= 4.13.1
PORTVERSION= 4.14.0
PORTREVISION= 0
CATEGORIES= sysutils
MASTER_SITES= https://downloads.xenproject.org/release/xen/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1593766790
SHA256 (xen-4.13.1.tar.gz) = b97ce363e55b12c992063f4466c43cba0a6386ceb7a747b4dc670311f337ef01
SIZE (xen-4.13.1.tar.gz) = 39024612
TIMESTAMP = 1595603681
SHA256 (xen-4.14.0.tar.gz) = 06839f68ea7620669dbe8b67861213223cc2a7d02ced61b56e5249c50e87f035
SIZE (xen-4.14.0.tar.gz) = 39950576

View File

@ -1,20 +0,0 @@
--- tools/libfsimage/zfs/fsys_zfs.h.orig 2020-03-26 16:41:12 UTC
+++ tools/libfsimage/zfs/fsys_zfs.h
@@ -71,7 +71,7 @@ typedef unsigned int size_t;
* Can only be used in functions returning non-0 for failure.
*/
#define VERIFY_DN_TYPE(dnp, type) \
- if (type && (dnp)->dn_type != type) { \
+ if (type != DMU_OT_NONE && (dnp)->dn_type != type) { \
return (ERR_FSYS_CORRUPT); \
}
@@ -80,7 +80,7 @@ typedef unsigned int size_t;
* Can only be used in functions returning 0 for failure.
*/
#define VERIFY_OS_TYPE(osp, type) \
- if (type && (osp)->os_type != type) { \
+ if (type != DMU_OST_NONE && (osp)->os_type != type) { \
errnum = ERR_FSYS_CORRUPT; \
return (0); \
}

View File

@ -1,11 +0,0 @@
--- tools/xenstore/utils.h.orig 2019-12-17 14:23:09 UTC
+++ tools/xenstore/utils.h
@@ -24,7 +24,7 @@ static inline bool strends(const char *a, const char *
void barf(const char *fmt, ...) __attribute__((noreturn));
void barf_perror(const char *fmt, ...) __attribute__((noreturn));
-void (*xprintf)(const char *fmt, ...);
+extern void (*xprintf)(const char *fmt, ...);
#define eprintf(_fmt, _args...) xprintf("[ERR] %s" _fmt, __FUNCTION__, ##_args)

View File

@ -1,11 +0,0 @@
--- tools/xenstore/xenstored_core.h.orig 2019-12-17 14:23:09 UTC
+++ tools/xenstore/xenstored_core.h
@@ -204,7 +204,7 @@ void finish_daemonize(void);
/* Open a pipe for signal handling */
void init_pipe(int reopen_log_pipe[2]);
-xengnttab_handle **xgt_handle;
+extern xengnttab_handle **xgt_handle;
int remember_string(struct hashtable *hash, const char *str);