mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
fixes #7502 Security fixes for all applicable XSAs up to (and including) XSA-225 The kernel side of XSA-216 was fixed in 4.9.35 Included modified xattr_size_max.patch from main/qemu 2.8
14 lines
305 B
Diff
14 lines
305 B
Diff
--- xen-4.9.0/tools/qemu-xen/hw/9pfs/9p.c.orig
|
|
+++ xen-4.9.0/tools/qemu-xen/hw/9pfs/9p.c
|
|
@@ -25,6 +25,10 @@
|
|
#include "trace.h"
|
|
#include "migration/migration.h"
|
|
|
|
+#ifdef __linux__
|
|
+#include <linux/limits.h> /* for XATTR_SIZE_MAX */
|
|
+#endif
|
|
+
|
|
int open_fd_hw;
|
|
int total_open_fd;
|
|
static int open_fd_rc;
|