[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] Revert "libxl: fix build on rather old systems"
commit ba219192b108c36b96e4f0f79fd10b03aff9f534 Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> AuthorDate: Mon Jan 14 14:59:36 2019 +0000 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Thu Jan 17 17:59:13 2019 +0000 Revert "libxl: fix build on rather old systems" This reverts commit 1bce5f9baf0f4a4e50722f32b44afe4fdefc6b35. This situation should be handled by disabling the dm restrict feature, not silently falling back to lower protection. Also this #ifdeffery is bad style. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> --- tools/libxl/libxl_linux.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/tools/libxl/libxl_linux.c b/tools/libxl/libxl_linux.c index a4c2f28dbf..6475cca64b 100644 --- a/tools/libxl/libxl_linux.c +++ b/tools/libxl/libxl_linux.c @@ -334,24 +334,12 @@ int libxl__local_dm_preexec_restrict(libxl__gc *gc) unsigned i; /* Unshare mount and IPC namespaces. These are unused by QEMU. */ - r = unshare(CLONE_NEWNS); + r = unshare(CLONE_NEWNS | CLONE_NEWIPC); if (r) { - LOGE(ERROR, "libxl: Mount namespace unshare failed"); + LOGE(ERROR, "libxl: Mount and IPC namespace unfailed"); return ERROR_FAIL; } -#ifndef CLONE_NEWIPC /* Available as of Linux 2.6.19 / glibc 2.8 */ -# define CLONE_NEWIPC 0x08000000 -#endif - r = unshare(CLONE_NEWIPC); - if (r) { - if (r && errno != EINVAL) { - LOGE(ERROR, "libxl: IPC namespace unshare failed"); - return ERROR_FAIL; - } - LOG(WARN, "libxl: IPC namespace unshare unavailable"); - } - /* Set various "easy" rlimits */ for (i = 0; rlimits[i].resource != RLIMIT_NLIMITS; i++) { struct rlimit rlim; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |